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
histos.fill(HIST("hEventSelection"), 13/* No other collision within +/- 2 microseconds */);
359
-
if (eventSelections.requireNoCollInTimeRangeVzDep && !collision.selection_bit(o2::aod::evsel::kNoCollInTimeRangeVzDependent)) {
360
-
returnfalse;
361
-
}
362
-
if (fillHists)
363
-
histos.fill(HIST("hEventSelection"), 14/* No other collision with pvZ of drifting TPC tracks from past/future collisions within 2.5 cm the current pvZ */);
364
358
if (eventSelections.requireNoCollInROFStd && !collision.selection_bit(o2::aod::evsel::kNoCollInRofStandard)) {
365
359
returnfalse;
366
360
}
367
361
if (fillHists)
368
-
histos.fill(HIST("hEventSelection"), 15/* No other collision within the same ITS ROF with mult. above a certain threshold */);
362
+
histos.fill(HIST("hEventSelection"), 14/* No other collision within the same ITS ROF with mult. above a certain threshold */);
369
363
if (eventSelections.requireNoCollInROFStrict && !collision.selection_bit(o2::aod::evsel::kNoCollInRofStrict)) {
370
364
returnfalse;
371
365
}
372
366
if (fillHists)
373
-
histos.fill(HIST("hEventSelection"), 16/* No other collision within the same ITS ROF */);
367
+
histos.fill(HIST("hEventSelection"), 15/* No other collision within the same ITS ROF */);
374
368
if (doPPAnalysis) { // we are in pp
375
369
if (eventSelections.requireINEL0 && collision.multNTracksPVeta1() < 1) {
Copy file name to clipboardExpand all lines: PWGLF/Tasks/QC/strderivedGenQA.cxx
+5-12Lines changed: 5 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,6 @@ struct strderivedGenQA {
88
88
Configurable<bool> requireNoCollInTimeRangeStd{"requireNoCollInTimeRangeStd", false, "reject collisions corrupted by the cannibalism, with other collisions within +/- 2 microseconds or mult above a certain threshold in -4 - -2 microseconds"};
89
89
Configurable<bool> requireNoCollInTimeRangeStrict{"requireNoCollInTimeRangeStrict", false, "reject collisions corrupted by the cannibalism, with other collisions within +/- 10 microseconds"};
90
90
Configurable<bool> requireNoCollInTimeRangeNarrow{"requireNoCollInTimeRangeNarrow", false, "reject collisions corrupted by the cannibalism, with other collisions within +/- 2 microseconds"};
91
-
Configurable<bool> requireNoCollInTimeRangeVzDep{"requireNoCollInTimeRangeVzDep", false, "reject collisions corrupted by the cannibalism, with other collisions with pvZ of drifting TPC tracks from past/future collisions within 2.5 cm the current pvZ"};
92
91
Configurable<bool> requireNoCollInROFStd{"requireNoCollInROFStd", false, "reject collisions corrupted by the cannibalism, with other collisions within the same ITS ROF with mult. above a certain threshold"};
93
92
Configurable<bool> requireNoCollInROFStrict{"requireNoCollInROFStrict", false, "reject collisions corrupted by the cannibalism, with other collisions within the same ITS ROF"};
0 commit comments