@@ -1091,8 +1091,8 @@ struct DefaultIndexPolicy : IndexPolicyBase {
10911091 int64_t mMaxRow = 0 ;
10921092};
10931093
1094- template <OriginEnc ORIGIN, typename ... C>
1095- class Table ;
1094+ // template <OriginEnc ORIGIN, typename... C>
1095+ // class Table;
10961096
10971097template <aod::aod_hash L, aod::aod_hash D, aod::origin_hash O, typename ... T>
10981098class TableNG ;
@@ -1545,8 +1545,8 @@ constexpr bool are_bindings_compatible_v(framework::pack<Os...>&&)
15451545 }
15461546}
15471547
1548- template <typename T>
1549- concept soa_table = soa::is_base_of_template_origin_v<soa::Table, T>;
1548+ // template <typename T>
1549+ // concept soa_table = soa::is_base_of_template_origin_v<soa::Table, T>;
15501550
15511551template <typename T>
15521552concept ng_table = framework::is_base_of_template_v<soa::TableNG, T>;
@@ -1691,11 +1691,11 @@ static constexpr auto hasColumnForKey(framework::pack<C...>, std::string const&
16911691 return ((C::inherited_t ::mLabel == key) || ...);
16921692}
16931693
1694- template <soa::soa_table T>
1695- static constexpr std::pair<bool , std::string> hasKey (std::string const & key)
1696- {
1697- return {hasColumnForKey (typename T::persistent_columns_t {}, key), getLabelFromType<T>()};
1698- }
1694+ // template <soa::soa_table T>
1695+ // static constexpr std::pair<bool, std::string> hasKey(std::string const& key)
1696+ // {
1697+ // return {hasColumnForKey(typename T::persistent_columns_t{}, key), getLabelFromType<T>()};
1698+ // }
16991699
17001700template <TableRef ref>
17011701static constexpr std::pair<bool , std::string> hasKey (std::string const & key)
@@ -2054,11 +2054,11 @@ auto doSliceByCachedUnsorted(T const* table, framework::expressions::BindingNode
20542054 }
20552055}
20562056
2057- template <soa::soa_table T>
2058- auto select (T const & t, framework::expressions::Filter const & f)
2059- {
2060- return Filtered<T>({t.asArrowTable ()}, selectionToVector (framework::expressions::createSelection (t.asArrowTable (), f)));
2061- }
2057+ // template <soa::soa_table T>
2058+ // auto select(T const& t, framework::expressions::Filter const& f)
2059+ // {
2060+ // return Filtered<T>({t.asArrowTable()}, selectionToVector(framework::expressions::createSelection(t.asArrowTable(), f)));
2061+ // }
20622062
20632063template <with_originals T>
20642064auto select (T const & t, framework::expressions::Filter const & f)
@@ -2948,27 +2948,27 @@ using InPlaceTable = TableNG<o2::aod::Hash<"TEST"_h>, o2::aod::Hash<D>, o2::aod:
29482948// RowViewSentinel mEnd;
29492949// };
29502950
2951- template <OriginEnc, typename T>
2952- struct PackToTable {
2953- static_assert (framework::always_static_assert_v<T>, " Not a pack" );
2954- };
2951+ // template <OriginEnc, typename T>
2952+ // struct PackToTable {
2953+ // static_assert(framework::always_static_assert_v<T>, "Not a pack");
2954+ // };
29552955
2956- template <OriginEnc ORIGIN, typename ... C>
2957- struct PackToTable <ORIGIN, framework::pack<C...>> {
2958- using table = o2::soa::Table<ORIGIN, C...>;
2959- };
2956+ // template <OriginEnc ORIGIN, typename... C>
2957+ // struct PackToTable<ORIGIN, framework::pack<C...>> {
2958+ // using table = o2::soa::Table<ORIGIN, C...>;
2959+ // };
29602960
2961- template <OriginEnc ORIGIN, typename ... T>
2962- struct TableWrap {
2963- using all_columns = framework::concatenated_pack_unique_t <typename T::columns...>;
2964- using table_t = typename PackToTable<ORIGIN, all_columns>::table;
2965- };
2961+ // template <OriginEnc ORIGIN, typename... T>
2962+ // struct TableWrap {
2963+ // using all_columns = framework::concatenated_pack_unique_t<typename T::columns...>;
2964+ // using table_t = typename PackToTable<ORIGIN, all_columns>::table;
2965+ // };
29662966
2967- template <OriginEnc ORIGIN, typename ... T>
2968- struct TableIntersect {
2969- using all_columns = framework::full_intersected_pack_t <typename T::columns...>;
2970- using table_t = typename PackToTable<ORIGIN, all_columns>::table;
2971- };
2967+ // template <OriginEnc ORIGIN, typename... T>
2968+ // struct TableIntersect {
2969+ // using all_columns = framework::full_intersected_pack_t<typename T::columns...>;
2970+ // using table_t = typename PackToTable<ORIGIN, all_columns>::table;
2971+ // };
29722972
29732973// / Template trait which allows to map a given
29742974// / Table type to its O2 DataModel origin and description
@@ -3242,11 +3242,11 @@ consteval auto getIndexTargets()
32423242 return T::originals;
32433243}
32443244
3245- template <o2::soa::soa_table T>
3246- consteval auto getIndexTargets ()
3247- {
3248- return std::array<o2::soa::TableRef, 0 >{};
3249- }
3245+ // template <o2::soa::soa_table T>
3246+ // consteval auto getIndexTargets()
3247+ // {
3248+ // return std::array<o2::soa::TableRef, 0>{};
3249+ // }
32503250
32513251#define DECLARE_SOA_SLICE_INDEX_COLUMN_FULL_CUSTOM (_Name_, _Getter_, _Type_, _Table_, _Label_, _Suffix_ ) \
32523252 struct _Name_ ##IdSlice : o2::soa::Column<_Type_[2 ], _Name_##IdSlice> { \
0 commit comments