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
// true is for 'ignore overflows' (true by default)
472
+
SameKindPair<aod::Collisions, aod::Tracks, BinningType> pair{binningOnPositions, 5, -1, &cache}; // indicates that 5 events should be mixed and under / overflow(-1) to be ignored
LOGF(info, "Input data Collisions %d, Tracks %d ", collisions.size(), tracks.size());
477
+
478
+
for (auto it = pair.begin(); it != pair.end(); it++) {
479
+
auto& [c1, tracks1, c2, tracks2] = *it;
480
+
LOGF(info, "Mixed event collisions: (%d, %d), is it first pair with %d: %d, number of collisions mixed with the first: %d", c1.globalIndex(), c2.globalIndex(), c1.globalIndex(), it.isNewWindow(), it.currentWindowNeighbours());
// true is for 'ignore overflows' (true by default)
138
-
SameKindPair<aod::Collisions, aod::Tracks, BinningType> pair{binningOnPositions, 5, -1, &cache}; // indicates that 5 events should be mixed and under / overflow(-1) to be ignored
LOGF(info, "Input data Collisions %d, Tracks %d ", collisions.size(), tracks.size());
143
-
144
-
for (auto it = pair.begin(); it != pair.end(); it++) {
145
-
auto& [c1, tracks1, c2, tracks2] = *it;
146
-
LOGF(info, "Mixed event collisions: (%d, %d), is it first pair with %d: %d, number of collisions mixed with the first: %d", c1.globalIndex(), c2.globalIndex(), c1.globalIndex(), it.isNewWindow(), it.currentWindowNeighbours());
0 commit comments