Skip to content

Commit 31089bc

Browse files
committed
Use provided API
1 parent b33c7ae commit 31089bc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tutorials/src/compatibleBCs.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ T getCompatibleBCs(aod::Collision const& collision, T const& bcs)
6060

6161
LOGF(info, "Will consider BC entries from %d to %d", minBCId, maxBCId);
6262

63-
T slice{{bcs.asArrowTable()->Slice(minBCId, maxBCId - minBCId + 1)}, (uint64_t)minBCId};
63+
auto slice = bcs.rawSlice(minBCId, maxBCId);
6464
bcs.copyIndexBindings(slice);
6565
return slice;
6666
}

0 commit comments

Comments
 (0)