ATLAS Offline Software
ConstAccessor.icc
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration.
3  */
4 /**
5  * @file AthContainers/ConstAccessor.icc
6  * @author scott snyder <snyder@bnl.gov>
7  * @date Oct, 2023
8  * @brief Helper class to provide constant type-safe access to aux data.
9  */
10 
11 
12 #include "AthContainers/AuxTypeRegistry.h"
13 #include "AthContainers/exceptions.h"
14 
15 
16 namespace SG {
17 
18 
19 /**
20  * @brief Constructor.
21  * @param name Name of this aux variable.
22  *
23  * The name -> auxid lookup is done here.
24  */
25 template <class T, class ALLOC>
26 inline
27 ConstAccessor<T, ALLOC>::ConstAccessor (const std::string& name)
28  : ConstAccessor (name, "", SG::AuxVarFlags::None)
29 {
30 }
31 
32 
33 /**
34  * @brief Constructor.
35  * @param name Name of this aux variable.
36  * @param clsname The name of its associated class. May be blank.
37  *
38  * The name -> auxid lookup is done here.
39  */
40 template <class T, class ALLOC>
41 inline
42 ConstAccessor<T, ALLOC>::ConstAccessor
43  (const std::string& name, const std::string& clsname)
44  : ConstAccessor (name, clsname, SG::AuxVarFlags::None)
45 {
46  // cppcheck-suppress missingReturn; false positive
47 }
48 
49 
50 /**
51  * @brief Constructor taking an auxid directly.
52  * @param auxid ID for this auxiliary variable.
53  *
54  * Will throw @c SG::ExcAuxTypeMismatch if the types don't match.
55  */
56 template <class T, class ALLOC>
57 inline
58 ConstAccessor<T, ALLOC>::ConstAccessor (const SG::auxid_t auxid)
59  : ConstAccessor (auxid, SG::AuxVarFlags::None)
60 {
61 }
62 
63 
64 /**
65  * @brief Constructor.
66  * @param name Name of this aux variable.
67  * @param clsname The name of its associated class. May be blank.
68  * @param flags Optional flags qualifying the type. See AuxTypeRegistry.
69  *
70  * The name -> auxid lookup is done here.
71  */
72 template <class T, class ALLOC>
73 inline
74 ConstAccessor<T, ALLOC>::ConstAccessor
75  (const std::string& name,
76  const std::string& clsname,
77  const SG::AuxVarFlags flags)
78  : m_auxid (SG::AuxTypeRegistry::instance().getAuxID<T, ALLOC> (name, clsname, flags))
79 {
80 }
81 
82 
83 /**
84  * @brief Constructor taking an auxid directly.
85  * @param auxid ID for this auxiliary variable.
86  *
87  * Will throw @c SG::ExcAuxTypeMismatch if the types don't match.
88  */
89 template <class T, class ALLOC>
90 inline
91 ConstAccessor<T, ALLOC>::ConstAccessor (const SG::auxid_t auxid,
92  const SG::AuxVarFlags flags)
93  : m_auxid (auxid)
94 {
95  SG::AuxTypeRegistry::instance().checkAuxID<T, ALLOC> (auxid, flags);
96 }
97 
98 
99 /**
100  * @brief Fetch the variable for one element, as a const reference.
101  * @param e The element for which to fetch the variable.
102  */
103 template <class T, class ALLOC>
104 template <class ELT>
105 ATH_REQUIRES( IsConstAuxElement<ELT> )
106 inline
107 typename ConstAccessor<T, ALLOC>::const_reference_type
108 ConstAccessor<T, ALLOC>::operator() (const ELT& e) const
109 {
110  assert (e.container() != 0);
111  return e.container()->template getData<T> (m_auxid, e.index());
112 }
113 
114 
115 /**
116  * @brief Fetch the variable for one element, as a const reference.
117  * @param container The container from which to fetch the variable.
118  * @param index The index of the desired element.
119  *
120  * This allows retrieving aux data by container / index.
121  * Looping over the index via this method will be faster then
122  * looping over the elements of the container.
123  */
124 template <class T, class ALLOC>
125 inline
126 typename ConstAccessor<T, ALLOC>::const_reference_type
127 ConstAccessor<T, ALLOC>::operator()
128  (const AuxVectorData& container,
129  size_t index) const
130 {
131  return container.template getData<T> (m_auxid, index);
132 }
133 
134 
135 /**
136  * @brief Fetch the variable for one element, as a const reference,
137  * with a default.
138  * @param e The element for which to fetch the variable.
139  * @param deflt Default value.
140  *
141  * If this variable is not available, then return @c deflt instead.
142  */
143 template <class T, class ALLOC>
144 template <class ELT>
145 ATH_REQUIRES( IsConstAuxElement<ELT> )
146 inline
147 typename ConstAccessor<T, ALLOC>::const_reference_type
148 ConstAccessor<T, ALLOC>::withDefault (const ELT& e, const T& deflt) const
149 {
150  if (!e.container() || !e.container()->isAvailable (m_auxid)) return deflt;
151  return e.container()->template getData<T> (m_auxid, e.index());
152 }
153 
154 
155 /**
156  * @brief Fetch the variable for one element, as a const reference.
157  * @param container The container from which to fetch the variable.
158  * @param index The index of the desired element.
159  * @param deflt Default value.
160  *
161  * This allows retrieving aux data by container / index.
162  * Looping over the index via this method will be faster then
163  * looping over the elements of the container.
164  * If this variable is not available, then return @c deflt instead.
165  */
166 template <class T, class ALLOC>
167 inline
168 typename ConstAccessor<T, ALLOC>::const_reference_type
169 ConstAccessor<T, ALLOC>::withDefault
170  (const AuxVectorData& container,
171  size_t index,
172  const T& deflt) const
173 {
174  if (!container.isAvailable (m_auxid)) return deflt;
175  return container.template getData<T> (m_auxid, index);
176 }
177 
178 
179 /**
180  * @brief Get a pointer to the start of the auxiliary data array.
181  * @param container The container from which to fetch the variable.
182  */
183 template <class T, class ALLOC>
184 inline
185 typename ConstAccessor<T, ALLOC>::const_container_pointer_type
186 ConstAccessor<T, ALLOC>::getDataArray (const AuxVectorData& container) const
187 {
188  return reinterpret_cast<const_container_pointer_type>
189  (container.getDataArray (m_auxid));
190 }
191 
192 
193 /**
194  * @brief Get a span over the auxilary data array.
195  * @param container The container from which to fetch the variable.
196  */
197 template <class T, class ALLOC>
198 inline
199 typename ConstAccessor<T, ALLOC>::const_span
200 ConstAccessor<T, ALLOC>::getDataSpan (const AuxVectorData& container) const
201 {
202  auto beg = reinterpret_cast<const_container_pointer_type>
203  (container.getDataArray (m_auxid));
204  return const_span (beg, container.size_v());
205 }
206 
207 
208 /**
209  * @brief Test to see if this variable exists in the store.
210  * @param e An element of the container which to test the variable.
211  */
212 template <class T, class ALLOC>
213 template <class ELT>
214 ATH_REQUIRES( IsConstAuxElement<ELT> )
215 inline
216 bool
217 ConstAccessor<T, ALLOC>::isAvailable (const ELT& e) const
218 {
219  return e.container() && e.container()->isAvailable (m_auxid);
220 }
221 
222 
223 /**
224  * @brief Return the aux id for this variable.
225  */
226 template <class T, class ALLOC>
227 inline
228 SG::auxid_t
229 ConstAccessor<T, ALLOC>::auxid() const
230 {
231  return m_auxid;
232 }
233 
234 
235 } // namespace SG