File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -3782,6 +3782,19 @@ AnalysisCut* o2::aod::dqcuts::GetAnalysisCut(const char* cutName)
37823782 return cut;
37833783 }
37843784
3785+ if (!nameStr.compare (" eventSel8NoSameBunch" )) {
3786+ cut->AddCut (VarManager::kIsSel8 , 0.5 , 1.5 );
3787+ cut->AddCut (VarManager::kIsNoSameBunch , 0.5 , 1.5 );
3788+ return cut;
3789+ }
3790+
3791+ if (!nameStr.compare (" eventSel8NoSameBunchGoodZvtx" )) {
3792+ cut->AddCut (VarManager::kIsSel8 , 0.5 , 1.5 );
3793+ cut->AddCut (VarManager::kIsNoSameBunch , 0.5 , 1.5 );
3794+ cut->AddCut (VarManager::kIsGoodZvtxFT0vsPV , 0.5 , 1.5 );
3795+ return cut;
3796+ }
3797+
37853798 if (!nameStr.compare (" eventStandardSel8PbPbQuality" )) {
37863799 cut->AddCut (VarManager::kVtxZ , -10.0 , 10.0 );
37873800 cut->AddCut (VarManager::kIsSel8 , 0.5 , 1.5 );
You can’t perform that action at this time.
0 commit comments