Skip to content
Open
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
69 changes: 46 additions & 23 deletions Framework/Core/include/Framework/ASoA.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,29 +16,53 @@
#error "Please do not include this file in ROOT dictionary generation"
#endif

#include "Framework/ConcreteDataMatcher.h"
#include "Framework/Pack.h" // IWYU pragma: export
#include "Framework/FunctionalHelpers.h" // IWYU pragma: export
#include "Headers/DataHeader.h" // IWYU pragma: export
#include "Headers/DataHeaderHelpers.h" // IWYU pragma: export
#include "Framework/CompilerBuiltins.h" // IWYU pragma: export
#include "Framework/Traits.h" // IWYU pragma: export
#include "Framework/Expressions.h" // IWYU pragma: export
#include "Framework/ArrowTypes.h" // IWYU pragma: export
#include "Framework/ArrowTableSlicingCache.h" // IWYU pragma: export
#include "Framework/SliceCache.h" // IWYU pragma: export
#include "Framework/VariantHelpers.h" // IWYU pragma: export
#include "Framework/ArrowTypes.h" // IWYU pragma: export
#include "Framework/CompilerBuiltins.h" // IWYU pragma: export
#include "Framework/ConcreteDataMatcher.h"
#include "Framework/Expressions.h" // IWYU pragma: export
#include "Framework/FunctionalHelpers.h" // IWYU pragma: export
#include "Framework/Pack.h" // IWYU pragma: export
#include "Framework/SliceCache.h" // IWYU pragma: export
#include "Framework/StringHelpers.h"
#include "Framework/Traits.h" // IWYU pragma: export
#include "Framework/TypeIdHelpers.h"
#include "Framework/VariantHelpers.h" // IWYU pragma: export
#include "Headers/DataHeader.h" // IWYU pragma: export
#include "Headers/DataHeaderHelpers.h" // IWYU pragma: export

#include <TBufferFile.h> // IWYU pragma: keep (needed by DECLARE_SOA_CCDB_COLUMN_FULL)

#include <algorithm>
#include <array> // IWYU pragma: export
#include <arrow/array.h> // IWYU pragma: export
#include <arrow/array/array_binary.h>
#include <arrow/table.h> // IWYU pragma: export
#include <arrow/array.h> // IWYU pragma: export
#include <arrow/util/config.h> // IWYU pragma: export
#include <gandiva/selection_vector.h> // IWYU pragma: export
#include <array> // IWYU pragma: export
#include <arrow/array/array_nested.h>
#include <arrow/table.h> // IWYU pragma: export
#include <arrow/type_fwd.h>
#include <arrow/type.h>
#include <arrow/util/config.h> // IWYU pragma: export
#include <cassert>
#include <fmt/format.h>
#include <cctype>
#include <concepts>
#include <cstdint>
#include <cstring>
#include <gsl/span> // IWYU pragma: export
#include <fmt/format.h>
#include <functional>
#include <gandiva/selection_vector.h> // IWYU pragma: export
#include <gsl/span> // IWYU pragma: export
#include <iterator>
#include <memory>
#include <numeric>
#include <ranges>
#include <set>
#include <span>
#include <string_view>
#include <string>
#include <tuple>
#include <type_traits>
#include <utility>
#include <vector>

namespace o2::framework
{
Expand Down Expand Up @@ -1581,11 +1605,10 @@ template <soa::is_table T>
using PresliceOptional = PresliceBase<T, PreslicePolicySorted, true>;

template <typename T>
concept is_preslice = std::derived_from<T, PreslicePolicyBase>&&
requires(T)
{
T::optional;
};
concept is_preslice = std::derived_from<T, PreslicePolicyBase> &&
requires(T) {
T::optional;
};

/// Can be user to group together a number of Preslice declaration
/// to avoid the limit of 100 data members per task
Expand Down