Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions Framework/Core/include/Framework/ASoA.h
Original file line number Diff line number Diff line change
Expand Up @@ -1420,8 +1420,9 @@ struct PresliceBase : public Policy {
const std::string binding;

PresliceBase(expressions::BindingNode index_)
: Policy{PreslicePolicyBase{{o2::soa::getLabelFromTypeForKey<T, OPT>(index_.name)},{binding, index_.name}}, {}}
{}
: Policy{PreslicePolicyBase{{o2::soa::getLabelFromTypeForKey<T, OPT>(index_.name)}, {binding, index_.name}}, {}}
{
}

std::shared_ptr<arrow::Table> getSliceFor(int value, std::shared_ptr<arrow::Table> const& input, uint64_t& offset) const
{
Expand Down Expand Up @@ -1518,7 +1519,7 @@ auto doSliceByHelper(T const* table, gsl::span<const int64_t> const& selection)
}

template <soa::is_table T>
requires (!soa::is_filtered_table<T>)
requires(!soa::is_filtered_table<T>)
auto doSliceByHelper(T const* table, gsl::span<const int64_t> const& selection)
{
auto t = soa::Filtered<T>({table->asArrowTable()}, selection);
Expand Down Expand Up @@ -1576,7 +1577,7 @@ auto prepareFilteredSlice(T const* table, std::shared_ptr<arrow::Table> slice, u
}

template <typename T, typename C, bool OPT>
requires (o2::soa::is_binding_compatible_v<C, T>())
requires(o2::soa::is_binding_compatible_v<C, T>())
auto doFilteredSliceBy(T const* table, o2::framework::PresliceBase<C, framework::PreslicePolicySorted, OPT> const& container, int value)
{
if constexpr (OPT) {
Expand Down
Loading