From 31089bc23837bdd62fe41fa803c1dd6c5e30fc1f Mon Sep 17 00:00:00 2001 From: Anton Alkin Date: Thu, 9 Jul 2026 14:38:55 +0200 Subject: [PATCH] Use provided API --- Tutorials/src/compatibleBCs.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tutorials/src/compatibleBCs.cxx b/Tutorials/src/compatibleBCs.cxx index bf5acbdb147..7975eca9d32 100644 --- a/Tutorials/src/compatibleBCs.cxx +++ b/Tutorials/src/compatibleBCs.cxx @@ -60,7 +60,7 @@ T getCompatibleBCs(aod::Collision const& collision, T const& bcs) LOGF(info, "Will consider BC entries from %d to %d", minBCId, maxBCId); - T slice{{bcs.asArrowTable()->Slice(minBCId, maxBCId - minBCId + 1)}, (uint64_t)minBCId}; + auto slice = bcs.rawSlice(minBCId, maxBCId); bcs.copyIndexBindings(slice); return slice; }