Skip to content

Commit bdcb675

Browse files
authored
[PWGUD] Fix wrong offset (#16974)
1 parent 21343b8 commit bdcb675

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PWGUD/Core/UDHelpers.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ T compatibleBCs(B const& bc, uint64_t const& meanBC, int const& deltaBC, T const
164164
}
165165

166166
// create bc slice
167-
auto bcslice = bcs.rawSlice(minBCId, maxBCId - minBCId + 1);
167+
auto bcslice = bcs.rawSlice(minBCId, maxBCId);
168168
bcs.copyIndexBindings(bcslice);
169169
LOGF(debug, " size of slice %d", bcslice.size());
170170
return bcslice;

0 commit comments

Comments
 (0)