You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!col.selection_bit(o2::aod::evsel::kIsVertexITSTPC) && mApplyITSTPCmatching) {
121
+
LOGF(debug, "ITS-TPC matching cut failed");
122
+
returnfalse;
123
+
}
124
+
if (!col.selection_bit(o2::aod::evsel::kIsGoodZvtxFT0vsPV) && mApplyZvertexTimedifference) {
125
+
LOGF(debug, "Z-vertex time difference cut failed");
126
+
returnfalse;
127
+
}
128
+
if (!col.selection_bit(o2::aod::evsel::kNoSameBunchPileup) && mApplyPileupRejection) {
129
+
LOGF(debug, "Pileup rejection failed");
130
+
returnfalse;
131
+
}
108
132
if (!col.selection_bit(aod::evsel::kNoITSROFrameBorder) && mApplyNoITSROBorderCut) {
109
133
LOGF(debug, "NoITSRO frame border cut failed");
110
134
returnfalse;
@@ -166,6 +190,9 @@ class CollisonCuts
166
190
boolmCheckIsRun3 = false; ///< Check if running on Pilot Beam
167
191
boolmInitialTriggerScan = false; ///< Check trigger when the event is first selected
168
192
boolmApplyTFBorderCut = false; ///< Apply time frame border cut
193
+
boolmApplyITSTPCmatching = false; ///< selects collisions with at least one ITS-TPC track
194
+
boolmApplyZvertexTimedifference = false; ///< removes collisions with large differences between z of PV by tracks and z of PV from FT0 A-C time difference.
0 commit comments