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("Event/hMCEventCutflow"), 4); // After Sel8
744
748
745
-
if (cEvtMCRecINELgt0 && !collision.isRecINELgt0())
749
+
if (cEvtRecINELgt0 && !collision.isRecINELgt0())
746
750
return;
747
751
histos.fill(HIST("Event/hMCEventCutflow"), 5); // After RecINELgt0
748
752
@@ -840,7 +844,7 @@ struct lambdaAnalysis_pb {
840
844
return;
841
845
histos.fill(HIST("SignalLoss/hMCEventCutflow"), 4); // After Sel8
842
846
843
-
if (cEvtMCRecINELgt0 && !collision.isRecINELgt0())
847
+
if (cEvtRecINELgt0 && !collision.isRecINELgt0())
844
848
return;
845
849
histos.fill(HIST("SignalLoss/hMCEventCutflow"), 5); // After RecINELgt0
846
850
@@ -919,6 +923,10 @@ struct lambdaAnalysis_pb {
919
923
920
924
SameKindPair<resoCols, resoTracks, BinningType2> pairs{binningPositions2, cNumMixEv, -1, collisions, tracksTuple, &cache}; // -1 is the number of the bin to skip
921
925
for (auto& [c1, t1, c2, t2] : pairs) {
926
+
927
+
if (cEvtRecINELgt0 && !c1.isRecINELgt0()) // Check reco INELgt0 (at least one PV track in |eta| < 1) about the collision
if (cEvtRecINELgt0 && !collision.isRecINELgt0()) // Check reco INELgt0 (at least one PV track in |eta| < 1) about the collision
949
+
return;
950
+
940
951
auto _occup = 100;
941
952
if (ConfEvtOccupancyInTimeRange)
942
953
_occup = collision.trackOccupancyInTimeRange();
@@ -960,6 +971,9 @@ struct lambdaAnalysis_pb {
960
971
961
972
SameKindPair<resoColDFs, resoTrackDFs, BinningTypeDF> pairs{binningPositions2, cNumMixEv, -1, collisions, tracksTuple, &cache}; // -1 is the number of the bin to skip
962
973
for (auto& [c1, t1, c2, t2] : pairs) {
974
+
if (cEvtRecINELgt0 && !c1.isRecINELgt0()) // Check reco INELgt0 (at least one PV track in |eta| < 1) about the collision
0 commit comments