File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3273,6 +3273,11 @@ AnalysisCompositeCut* o2::aod::dqcuts::GetCompositeCut(const char* cutName)
32733273 return cut;
32743274 }
32753275
3276+ if (nameStr == " muonStreamSelection" ) {
3277+ cut->AddCut (GetAnalysisCut (" muonStreamSelection" ));
3278+ return cut;
3279+ }
3280+
32763281 if (nameStr == " matchedFwd" ) {
32773282 cut->AddCut (GetAnalysisCut (" matchedFwd" ));
32783283 return cut;
@@ -6701,6 +6706,11 @@ AnalysisCut* o2::aod::dqcuts::GetAnalysisCut(const char* cutName)
67016706 return cut;
67026707 }
67036708
6709+ if (nameStr == " muonStreamSelection" ) {
6710+ cut->AddCut (VarManager::kMuonTrackType , 2.5 , 4.5 ); // selecting both MCH and MCH-MID tracks
6711+ return cut;
6712+ }
6713+
67046714 if (nameStr == " matchedFwd" ) {
67056715 cut->AddCut (VarManager::kMuonTrackType , 1.5 , 2.5 );
67066716 return cut;
You can’t perform that action at this time.
0 commit comments