File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -392,6 +392,13 @@ AnalysisCompositeCut* o2::aod::dqcuts::GetCompositeCut(const char* cutName)
392392 return cut;
393393 }
394394
395+ if (!nameStr.compare (" emu_electronCuts" )) {
396+ cut->AddCut (GetAnalysisCut (" jpsiStandardKine" ));
397+ cut->AddCut (GetAnalysisCut (" electronStandardQualityForO2MCdebug4" ));
398+ cut->AddCut (GetAnalysisCut (" electronPIDnsigmaSkewed" ));
399+ return cut;
400+ }
401+
395402 if (!nameStr.compare (" jpsiKineAndQuality" )) {
396403 cut->AddCut (GetAnalysisCut (" jpsiStandardKine" ));
397404 cut->AddCut (GetAnalysisCut (" electronStandardQuality" ));
@@ -3763,6 +3770,13 @@ AnalysisCut* o2::aod::dqcuts::GetAnalysisCut(const char* cutName)
37633770 return cut;
37643771 }
37653772
3773+ if (!nameStr.compare (" electronStandardQualityForO2MCdebug4" )) {
3774+ cut->AddCut (VarManager::kIsITSibAny , 0.5 , 1.5 );
3775+ cut->AddCut (VarManager::kTPCchi2 , 0.0 , 4.0 );
3776+ cut->AddCut (VarManager::kTPCncls , 70 , 161 .);
3777+ return cut;
3778+ }
3779+
37663780 if (!nameStr.compare (" electronStandardQualityITSOnly" )) {
37673781 cut->AddCut (VarManager::kIsSPDany , 0.5 , 1.5 );
37683782 cut->AddCut (VarManager::kITSchi2 , 0.0 , 5.0 );
You can’t perform that action at this time.
0 commit comments