Skip to content

Commit ac4d8fa

Browse files
committed
binding is not needed
1 parent d95ef79 commit ac4d8fa

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

Framework/Core/include/Framework/GroupSlicer.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,11 @@ struct GroupSlicer {
5555
auto splittingFunction(T&& table)
5656
{
5757
constexpr auto index = framework::has_type_at_v<std::decay_t<T>>(associated_pack_t{});
58-
auto binding = o2::soa::getLabelFromTypeForKey<std::decay_t<T>>(mIndexColumnName);
5958
auto matcher = o2::soa::getMatcherFromTypeForKey<std::decay_t<T>>(mIndexColumnName);
6059
if ((matcher.origin == header::DataOrigin{"AOD"}) && (replacementOrigin != header::DataOrigin{"AOD"})) {
6160
matcher = framework::replaceOrigin(matcher, replacementOrigin);
6261
}
63-
auto bk = Entry(binding, matcher, mIndexColumnName);
62+
auto bk = Entry("", matcher, mIndexColumnName);
6463
if constexpr (!o2::soa::is_smallgroups<std::decay_t<T>>) {
6564
if (table.size() == 0) {
6665
return;

0 commit comments

Comments
 (0)