vecmem 1.14.0
Loading...
Searching...
No Matches
schema_traits.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2023 CERN for the benefit of the ACTS project
4 *
5 * Mozilla Public License Version 2.0
6 */
7#pragma once
8
9// Local include(s).
10#include "vecmem/edm/schema.hpp"
11#include "vecmem/utils/type_traits.hpp"
12
13// System include(s).
14#include <type_traits>
15
16namespace vecmem {
17namespace edm {
18namespace type {
19namespace details {
20
23
24template <typename T>
25struct add_const;
26
27template <typename TYPE>
28struct add_const<type::scalar<TYPE>> {
30}; // struct add_const
31
32template <typename TYPE>
33struct add_const<type::vector<TYPE>> {
35}; // struct add_const
36
37template <typename TYPE>
40}; // struct add_const
41
42template <typename T>
43using add_const_t = typename add_const<T>::type;
44
46
49
50template <typename T>
51struct is_scalar {
52 static constexpr bool value = false;
53}; // struct is_scalar
54
55template <typename TYPE>
56struct is_scalar<type::scalar<TYPE>> {
57 static constexpr bool value = true;
58}; // struct is_scalar
59
60template <typename T>
61constexpr bool is_scalar_v = is_scalar<T>::value;
62
63template <typename T>
64struct is_vector {
65 static constexpr bool value = false;
66}; // struct is_vector
67
68template <typename TYPE>
69struct is_vector<type::vector<TYPE>> {
70 static constexpr bool value = true;
71}; // struct is_vector
72
73template <typename TYPE>
74struct is_vector<type::jagged_vector<TYPE>> {
75 static constexpr bool value = true;
76}; // struct is_vector
77
78template <typename T>
79constexpr bool is_vector_v = is_vector<T>::value;
80
81template <typename T>
83 static constexpr bool value = false;
84}; // struct is_jagged_vector
85
86template <typename TYPE>
87struct is_jagged_vector<type::jagged_vector<TYPE>> {
88 static constexpr bool value = true;
89}; // struct is_jagged_vector
90
91template <typename T>
92constexpr bool is_jagged_vector_v = is_jagged_vector<T>::value;
93
95
98
99template <typename TYPE1, typename TYPE2>
101 static constexpr bool value = false;
102}; // struct is_same_nc
103
104template <typename TYPE1, typename TYPE2>
105struct is_same_nc<type::scalar<TYPE1>, type::scalar<TYPE2>> {
106 static constexpr bool value =
108}; // struct is_same_nc
109
110template <typename TYPE1, typename TYPE2>
111struct is_same_nc<type::vector<TYPE1>, type::vector<TYPE2>> {
112 static constexpr bool value =
114}; // struct is_same_nc
115
116template <typename TYPE1, typename TYPE2>
117struct is_same_nc<type::jagged_vector<TYPE1>, type::jagged_vector<TYPE2>> {
118 static constexpr bool value =
120}; // struct is_same_nc
121
122template <typename TYPE1, typename TYPE2>
123constexpr bool is_same_nc_v = is_same_nc<TYPE1, TYPE2>::value;
124
126
127} // namespace details
128} // namespace type
129
130namespace details {
131
134
136template <typename T>
138
143template <typename... VARTYPES>
147
149template <typename... VARTYPES>
150using add_const_t = typename add_const<VARTYPES...>::type;
151
153
156
158template <typename T>
160
165template <typename... VARTYPES>
167 static constexpr bool value =
168 vecmem::details::disjunction_v<type::details::is_scalar<VARTYPES>...>;
169}; // struct has_scalar
170
172template <typename... VARTYPES>
173constexpr bool has_scalar_v = has_scalar<schema<VARTYPES...>>::value;
174
176template <typename T>
178
183template <typename... VARTYPES>
185 static constexpr bool value =
186 vecmem::details::disjunction_v<type::details::is_vector<VARTYPES>...>;
187}; // struct has_vector
188
190template <typename... VARTYPES>
191constexpr bool has_vector_v = has_vector<schema<VARTYPES...>>::value;
192
194template <typename T>
196
201template <typename... VARTYPES>
203 static constexpr bool value = vecmem::details::disjunction_v<
205}; // struct has_jagged_vector
206
208template <typename... VARTYPES>
209constexpr bool has_jagged_vector_v =
211
213
214} // namespace details
215} // namespace edm
216} // namespace vecmem
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35
Helper trait for detecting when a type is a non-const version of another.
Definition type_traits.hpp:37
Technical base type for add_const<schema<VARTYPES...>>
Definition schema_traits.hpp:137
Technical base type for has_jagged_vector<schema<VARTYPES...>>
Definition schema_traits.hpp:195
Technical base type for has_scalar<schema<VARTYPES...>>
Definition schema_traits.hpp:159
Technical base type for has_vector<schema<VARTYPES...>>
Definition schema_traits.hpp:177
Meta type describing the "schema" of an SoA container.
Definition schema.hpp:46
Definition schema_traits.hpp:25
Definition schema_traits.hpp:82
Definition schema_traits.hpp:100
Definition schema_traits.hpp:51
Definition schema_traits.hpp:64
2D jagged vector variable
Definition schema.hpp:33
Scalar variable, one for a whole container.
Definition schema.hpp:19
1D vector variable
Definition schema.hpp:26