We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ee3a63 commit 08b9257Copy full SHA for 08b9257
Common/TableProducer/trackselection.cxx
@@ -76,9 +76,13 @@ struct TrackSelectionTask {
76
globalTracks.SetPtRange(ptMin, ptMax);
77
globalTracks.SetEtaRange(etaMin, etaMax);
78
79
+ // Extra requirement on the ITS -> Run 2: asking for 1 hit SDD and no hit in SPD
80
globalTracksSDD = getGlobalTrackSelectionSDD();
81
globalTracksSDD.SetPtRange(ptMin, ptMax);
82
globalTracksSDD.SetEtaRange(etaMin, etaMax);
83
+ if (itsMatching > 0) {
84
+ globalTracksSDD.SetTrackType(o2::aod::track::TrackTypeEnum::Track); // Requiring that this is a Run 3 track
85
+ }
86
}
87
88
void process(soa::Join<aod::FullTracks, aod::TracksDCA> const& tracks)
0 commit comments