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
Configurable<float> maxZVtxPosition{"maxZVtxPosition", 10., "max Z vtx position"};
104
104
105
+
Configurable<bool> useEvtSelInDenomEff{"useEvtSelInDenomEff", false, "Consider event selections in the recoed <-> gen collision association for the denominator (or numerator) of the acc. x eff. (or signal loss)?"};
106
+
Configurable<bool> applyZVtxSelOnMCPV{"applyZVtxSelOnMCPV", false, "Apply Z-vtx cut on the PV of the generated collision?"};
105
107
Configurable<bool> useFT0CbasedOccupancy{"useFT0CbasedOccupancy", false, "Use sum of FT0-C amplitudes for estimating occupancy? (if not, use track-based definition)"};
106
108
// fast check on occupancy
107
109
Configurable<float> minOccupancy{"minOccupancy", -1, "minimum occupancy from neighbouring collisions"};
histos.fill(HIST("hEventSelection"), 13/* No other collision within +/- 2 microseconds */);
1536
1537
1537
-
if (eventSelections.requireNoCollInTimeRangeVzDep && !collision.selection_bit(o2::aod::evsel::kNoCollInTimeRangeVzDependent)) {
1538
-
returnfalse;
1539
-
}
1540
-
if (fillHists)
1541
-
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 */);
1542
-
1543
1538
if (eventSelections.requireNoCollInROFStd && !collision.selection_bit(o2::aod::evsel::kNoCollInRofStandard)) {
1544
1539
returnfalse;
1545
1540
}
1546
1541
if (fillHists)
1547
-
histos.fill(HIST("hEventSelection"), 15/* No other collision within the same ITS ROF with mult. above a certain threshold */);
1542
+
histos.fill(HIST("hEventSelection"), 14/* No other collision within the same ITS ROF with mult. above a certain threshold */);
1548
1543
1549
1544
if (eventSelections.requireNoCollInROFStrict && !collision.selection_bit(o2::aod::evsel::kNoCollInRofStrict)) {
1550
1545
returnfalse;
1551
1546
}
1552
1547
if (fillHists)
1553
-
histos.fill(HIST("hEventSelection"), 16/* No other collision within the same ITS ROF */);
1548
+
histos.fill(HIST("hEventSelection"), 15/* No other collision within the same ITS ROF */);
1554
1549
1555
1550
if (doPPAnalysis) { // we are in pp
1556
1551
if (eventSelections.requireINEL0 && collision.multNTracksPVeta1() < 1) {
0 commit comments