We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b33c7ae commit 31089bcCopy full SHA for 31089bc
1 file changed
Tutorials/src/compatibleBCs.cxx
@@ -60,7 +60,7 @@ T getCompatibleBCs(aod::Collision const& collision, T const& bcs)
60
61
LOGF(info, "Will consider BC entries from %d to %d", minBCId, maxBCId);
62
63
- T slice{{bcs.asArrowTable()->Slice(minBCId, maxBCId - minBCId + 1)}, (uint64_t)minBCId};
+ auto slice = bcs.rawSlice(minBCId, maxBCId);
64
bcs.copyIndexBindings(slice);
65
return slice;
66
}
0 commit comments