Skip to content

Commit 77ea198

Browse files
Adding cut for muon streaming
1 parent b459571 commit 77ea198

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

PWGDQ/Core/CutsLibrary.cxx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)