Skip to content

Commit e421f95

Browse files
authored
Update AnalysisHelpers.h
1 parent 91614c7 commit e421f95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Framework/Core/include/Framework/AnalysisHelpers.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -717,8 +717,8 @@ auto Attach(T const& table)
717717
{
718718
using output_t = soa::Filtered<soa::Join<typename T::table_t, o2::soa::Table<o2::aod::Hash<"ATT"_h>, o2::aod::Hash<"ATT/0"_h>, o2::aod::Hash<"ATT"_h>, Cs...>>>;
719719
SelectionVector selection;
720-
selection.reserve(table->getSelectedRows().size());
721-
std::copy(table->getSelectedRows().begin(), table->getSelectedRows().end(), std::back_inserter(selection));
720+
selection.reserve(table.getSelectedRows().size());
721+
std::copy(table.getSelectedRows().begin(), table.getSelectedRows().end(), std::back_inserter(selection));
722722
return output_t{{table.asArrowTable()}, std::move(selection), table.offset()};
723723
}
724724
} // namespace o2::soa

0 commit comments

Comments
 (0)