Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
JaggedVecConversions.h
Go to the documentation of this file.
1 // This file's extension implies that it's C, but it's really -*- C++ -*-.
2 /*
3  * Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration.
4  */
13 #ifndef ATHCONTAINERS_JAGGEDVECCONVERSIONS_H
14 #define ATHCONTAINERS_JAGGEDVECCONVERSIONS_H
15 
16 
24 #include "CxxUtils/ranges.h"
25 #include <variant>
26 #include <cassert>
27 #include <stdexcept>
28 
29 
30 // For unit testing.
33 
34 
35 namespace SG { namespace detail {
36 
37 
46 template <class PAYLOAD_T>
48 {
49 public:
51  using Payload_t = PAYLOAD_T;
52 
55 
58 
59 
67 
68 
73  const element_type operator() (const JaggedVecEltBase& elt) const;
74 
75 
76 private:
79 
82 };
83 
84 
85 //****************************************************************************
86 
87 
95 {
96 public:
99 
101  using Elt_span = std::span<Elt_t>;
102 
104  using index_type = typename Elt_t::index_type;
105 
106 
114  AuxVectorData& container,
115  SG::auxid_t auxid);
116 
117 
122  Elt_t& elt (size_t elt_index) noexcept;
123 
124 
129  const Elt_t& elt (size_t elt_index) const noexcept;
130 
131 
139  void resize1 (size_t elt_index, index_type n_new);
140 
141 
151  void adjust1 (size_t elt_index, index_type index, int n_add);
152 
153 
154 private:
157 
160 
161  // Holds either a pointer to the @c IAuxTypeVector the variable ID.
162  std::variant<IAuxTypeVector*, SG::auxid_t> m_linkedVec;
163 };
164 
165 
166 //****************************************************************************
167 
168 
175  : public std::ranges::view_base
176 {
177 public:
185  AuxVectorData& container,
186  SG::auxid_t auxid);
187 
188 
189 protected:
190  friend void ::test_JaggedVecProxyValBase(); // For unit testing.
191 
194 };
195 
196 
203  : public std::ranges::view_base
204 {
205 public:
211 
212 
213 protected:
214  friend void ::test_JaggedVecProxyRefBase(); // For unit testing.
215 
218 };
219 
220 
221 //****************************************************************************
222 
223 
247 template <class PAYLOAD_T, class BASE>
249  : public BASE
250 {
251 public:
253  using Payload_t = PAYLOAD_T;
255 
258  using index_type = typename Elt_t::index_type;
260  static_assert (sizeof (Elt_t) == sizeof (SG::JaggedVecElt<Payload_t>));
261 
264  using value_type = std::remove_cv_t<element_type>;
265  using size_type = std::size_t;
266  using difference_type = std::ptrdiff_t;
268  using const_pointer = const element_type*;
271 
273  using iterator = pointer;
275  using reverse_iterator = std::reverse_iterator<iterator>;
276  using const_reverse_iterator = std::reverse_iterator<const_iterator>;
277 
278 
291  {
293  nonnull_iterator (std::nullptr_t) = delete;
294  nonnull_iterator (int) = delete;
295  operator iterator() { return m_it; }
297  };
298 
299 
308  JaggedVecProxyT (size_t elt_index,
310  const AuxDataSpanBase& elts,
311  AuxVectorData& container,
312  SG::auxid_t auxid);
313 
314 
321  JaggedVecProxyT (size_t elt_index,
324 
328  size_t size() const noexcept;
329 
330 
334  bool empty() const noexcept;
335 
336 
341  reference operator[] (size_t i) noexcept;
342 
343 
348  const_reference operator[] (size_t i) const noexcept;
349 
350 
355  reference at (size_t i);
356 
357 
363 
364 
368  reference front() noexcept;
369 
370 
375 
376 
380  reference back() noexcept;
381 
382 
387 
388 
392  iterator begin() noexcept;
393 
394 
398  iterator end() noexcept;
399 
400 
405 
406 
411 
412 
417 
418 
423 
424 
429 
430 
434  reverse_iterator rend() noexcept;
435 
436 
441 
442 
447 
448 
453 
454 
459 
460 
465  template <CxxUtils::InputRangeOverT<PAYLOAD_T> RANGE>
466  JaggedVecProxyT& operator= (const RANGE& range);
467 
468 
473 
474 
478  template <class VALLOC>
479  operator std::vector<Payload_t, VALLOC>() const;
480 
481 
487 
488 
492  void clear();
493 
494 
501  void resize (size_t n, const Payload_t& x = Payload_t());
502 
503 
509 
510 
516 
517 
524 
525 
532 
533 
540 
541 
548 
549 
557 
558 
565  void insert (index_type pos, size_t n, const Payload_t& x);
566 
567 
574  template <CxxUtils::detail::InputValIterator<PAYLOAD_T> ITERATOR>
575  void insert (nonnull_iterator pos, ITERATOR first, ITERATOR last);
576 
577 
584  template <CxxUtils::detail::InputValIterator<PAYLOAD_T> ITERATOR>
585  void insert (index_type pos, ITERATOR first, ITERATOR last);
586 
587 
593  template <CxxUtils::InputRangeOverT<PAYLOAD_T> RANGE>
595 
596 
602  template <CxxUtils::InputRangeOverT<PAYLOAD_T> RANGE>
604 
605 
610  template <CxxUtils::InputRangeOverT<PAYLOAD_T> RANGE>
611  void append_range (const RANGE& range);
612 
613 
617  void pop_back();
618 
619 
625  void assign (size_t n, const Payload_t& x);
626 
627 
633  template <CxxUtils::detail::InputValIterator<PAYLOAD_T> ITERATOR>
634  void assign (ITERATOR first, ITERATOR last);
635 
636 
641  template <CxxUtils::InputRangeOverT<PAYLOAD_T> RANGE>
642  void assign_range (const RANGE& range);
643 
644 
645 private:
649  Elt_t& elt() noexcept;
650 
651 
655  const Elt_t& elt() const noexcept;
656 
657 
661  size_t elt_begin() const noexcept;
662 
663 
667  size_t elt_end() const noexcept;
668 
669 
671  size_t m_index;
672 
675 };
676 
677 
678 //****************************************************************************
679 
680 
690 template <class PAYLOAD_T>
692 {
693 public:
695  using Payload_t = PAYLOAD_T;
696 
699 
702 
703 
707 
708 
716  auxid_t auxid,
717  auxid_t linked_auxid);
718 
719 
725 
726 
732 
733 
734 private:
737 
740 };
741 
742 
743 } } // namespace SG::detail
744 
745 
747 
748 
749 #endif // not ATHCONTAINERS_JAGGEDVECCONVERSIONS_H
SG::detail::JaggedVecProxyT::elt
Elt_t & elt() noexcept
Return a reference to this proxy's element.
base
std::string base
Definition: hcg.cxx:78
SG::detail::JaggedVecProxyT::insert_range
void insert_range(nonnull_iterator pos, const RANGE &range)
Insert a range of items into this jagged vector element.
SG::detail::JaggedVecProxyT::erase
void erase(nonnull_iterator pos)
Erase one item from this jagged vector element.
SG::detail::JaggedVecProxyT::cbegin
const_iterator cbegin() const noexcept
Return a (const) begin iterator.
SG::detail::JaggedVecProxyT
Proxy for jagged vectors.
Definition: JaggedVecConversions.h:250
SG::detail::JaggedVecProxyBase::adjust1
void adjust1(size_t elt_index, index_type index, int n_add)
Add or remove payload items from one jagged vector element.
Definition: JaggedVecConversions.cxx:41
SG::detail::JaggedVecProxyT::end
iterator end() noexcept
Return a (non-const) end iterator.
SG::detail::JaggedVecProxyBase::JaggedVecProxyBase
JaggedVecProxyBase(const AuxDataSpanBase &elts, AuxVectorData &container, SG::auxid_t auxid)
Constructor.
SG
Forward declaration.
Definition: CaloCellPacker_400_500.h:32
SG::detail::JaggedVecConstConverter
Helper: Make a span from a jagged vector element.
Definition: JaggedVecConversions.h:48
SG::detail::JaggedVecProxyT::elt_begin
size_t elt_begin() const noexcept
Return the begin payload index of this proxy's element.
SG::detail::JaggedVecProxyT::push_back
void push_back(const Payload_t &x)
Add an item to the end of this jagged vector element.
SG::detail::JaggedVecProxyT::element_type
Payload_t element_type
Standard type aliases.
Definition: JaggedVecConversions.h:263
SG::detail::JaggedVecProxyBase
Base class for jagged vector proxies.
Definition: JaggedVecConversions.h:95
SG::detail::JaggedVecProxyT::resize
void resize(size_t n, const Payload_t &x=Payload_t())
Resize this jagged vector element.
index
Definition: index.py:1
SG::detail::JaggedVecProxyT::JaggedVecProxyT
JaggedVecProxyT(size_t elt_index, Payload_span payload, const AuxDataSpanBase &elts, AuxVectorData &container, SG::auxid_t auxid)
Constructor.
SG::detail::JaggedVecProxyT::Elt_span
JaggedVecProxyBase::Elt_span Elt_span
Definition: JaggedVecConversions.h:259
SG::detail::JaggedVecProxyT::m_index
size_t m_index
Index of the element we're proxying.
Definition: JaggedVecConversions.h:671
SG::detail::JaggedVecConverter::m_payload
Payload_span m_payload
The span over the payload vector.
Definition: JaggedVecConversions.h:739
SG::detail::JaggedVecProxyT::size
size_t size() const noexcept
Return the size of this jagged vector element.
SG::detail::JaggedVecProxyT::asVector
std::vector< Payload_t > asVector() const
Convert this jagged vector element to a vector.
skel.it
it
Definition: skel.GENtoEVGEN.py:407
taskman.template
dictionary template
Definition: taskman.py:317
AuxDataSpan.h
Describe a range over an auxiliary variable, for low-overhead access.
SG::detail::JaggedVecProxyT::insert
void insert(nonnull_iterator pos, const Payload_t &x)
Insert an item into this jagged vector element.
SG::detail::JaggedVecProxyT::append_range
void append_range(const RANGE &range)
Append a range of items to the end of this jagged vector element.
SG::detail::JaggedVecConverter::m_base
JaggedVecProxyBase m_base
The proxy base information.
Definition: JaggedVecConversions.h:736
detail
Definition: extract_histogram_tag.cxx:14
reference
Definition: hcg.cxx:437
SG::detail::AuxDataSpan< Payload_t >
const
bool const RAWDATA *ch2 const
Definition: LArRodBlockPhysicsV0.cxx:560
SG::detail::JaggedVecProxyT::rend
reverse_iterator rend() noexcept
Return a (non-const) end reverse iterator.
x
#define x
range_with_conv.h
Add to a range class conversions to containers.
SG::detail::JaggedVecProxyT::nonnull_iterator::nonnull_iterator
nonnull_iterator(std::nullptr_t)=delete
SG::detail::JaggedVecProxyBase::Elt_span
std::span< Elt_t > Elt_span
A span of elements.
Definition: JaggedVecConversions.h:101
IAuxTypeVector.h
Abstract interface for manipulating vectors of arbitrary types.
SG::detail::JaggedVecProxyT::const_iterator
const_pointer const_iterator
Definition: JaggedVecConversions.h:274
SG::JaggedVecEltBase
Describe one element of a jagged vector (base class).
Definition: JaggedVecImpl.h:52
CxxUtils::InputRangeOverT
concept InputRangeOverT
Concept for an input range over a given type.
Definition: ranges.h:27
SG::detail::JaggedVecProxyBase::m_elts
Elt_span m_elts
The elements of the jagged vector.
Definition: JaggedVecConversions.h:156
SG::detail::JaggedVecConverter
Helper: Make a span — either read-only or writable — from a jagged vector element.
Definition: JaggedVecConversions.h:692
SG::detail::JaggedVecProxyValBase
Adapter for holding the proxy base information by value.
Definition: JaggedVecConversions.h:176
SG::JaggedVecEltBase::index_type
uint32_t index_type
Type for the indices.
Definition: JaggedVecImpl.h:56
SG::detail::JaggedVecConstConverter::m_payload
const_Payload_span m_payload
The span over the payload vector.
Definition: JaggedVecConversions.h:81
SG::detail::JaggedVecProxyT::rbegin
reverse_iterator rbegin() noexcept
Return a (non-const) begin reverse iterator.
CxxUtils::detail::InputValIterator
concept InputValIterator
Definition: concepts.h:55
SG::auxid_t
size_t auxid_t
Identifier for a particular aux data item.
Definition: AuxTypes.h:27
SG::detail::JaggedVecProxyBase::m_container
AuxVectorData & m_container
The container holding the variable.
Definition: JaggedVecConversions.h:159
SG::detail::JaggedVecProxyBase::m_linkedVec
std::variant< IAuxTypeVector *, SG::auxid_t > m_linkedVec
Definition: JaggedVecConversions.h:162
SG::detail::JaggedVecConstConverter::Payload_t
PAYLOAD_T Payload_t
The type of the jagged vector payload.
Definition: JaggedVecConversions.h:51
SG::detail::JaggedVecProxyRefBase::m_base
JaggedVecProxyBase & m_base
The proxy base information.
Definition: JaggedVecConversions.h:217
SG::detail::JaggedVecProxyT::begin
iterator begin() noexcept
Return a (non-const) begin iterator.
SG::detail::JaggedVecProxyT::elt_end
size_t elt_end() const noexcept
Return the end payload index of this proxy's element.
SG::detail::AuxDataConstSpan< Payload_t >
lumiFormat.i
int i
Definition: lumiFormat.py:85
JaggedVecConversions.icc
beamspotman.n
n
Definition: beamspotman.py:731
SG::detail::JaggedVecProxyT::index_type
typename Elt_t::index_type index_type
Definition: JaggedVecConversions.h:258
vector
Definition: MultiHisto.h:13
SG::detail::JaggedVecProxyRefBase::JaggedVecProxyRefBase
JaggedVecProxyRefBase(JaggedVecProxyBase &base)
Constructor.
SG::detail::JaggedVecProxyT::const_pointer
const element_type * const_pointer
Definition: JaggedVecConversions.h:268
SG::detail::JaggedVecProxyT::front
reference front() noexcept
Return a reference to the first item in this element's payload.
CxxUtils
Definition: aligned_vector.h:29
SG::detail::JaggedVecProxyBase::elt
Elt_t & elt(size_t elt_index) noexcept
Return one jagged vector element (non-const).
plotBeamSpotVxVal.range
range
Definition: plotBeamSpotVxVal.py:195
AuxDataTraits.h
Allow customizing how aux data types are treated.
SG::detail::JaggedVecProxyT::assign_range
void assign_range(const RANGE &range)
Assign this jagged vector element from a range.
SG::detail::JaggedVecProxyBase::elt
const Elt_t & elt(size_t elt_index) const noexcept
Return one jagged vector element (const).
SG::detail::JaggedVecProxyT::Payload_t
PAYLOAD_T Payload_t
The payload type.
Definition: JaggedVecConversions.h:253
SG::detail::JaggedVecConstConverter::operator()
const element_type operator()(const JaggedVecEltBase &elt) const
Convert to a span.
SG::detail::JaggedVecProxyT::const_reference
const element_type & const_reference
Definition: JaggedVecConversions.h:270
AuxVectorData.h
Manage lookup of vectors of auxiliary data.
SG::detail::JaggedVecConstConverter::m_elts
const JaggedVecEltBase * m_elts
The vector of elements.
Definition: JaggedVecConversions.h:78
SG::detail::JaggedVecProxyBase::resize1
void resize1(size_t elt_index, index_type n_new)
Resize one jagged vector element.
Definition: JaggedVecConversions.cxx:25
SG::AuxDataSpanBase
Minimal span-like object describing the range of an auxiliary variable.
Definition: AuxDataSpan.h:39
SG::detail::JaggedVecProxyT::pop_back
void pop_back()
Remove the last item from this jagged vector element.
private
#define private
Definition: DetDescrConditionsDict_dict_fixes.cxx:13
SG::detail::JaggedVecProxyT::at
reference at(size_t i)
Element access (non-const, bounds-checked).
SG::detail::JaggedVecConverter::Payload_t
PAYLOAD_T Payload_t
The type of the jagged vector payload.
Definition: JaggedVecConversions.h:695
SG::detail::JaggedVecProxyBase::index_type
typename Elt_t::index_type index_type
Type used for indexing into a jagged vector.
Definition: JaggedVecConversions.h:104
columnar::operator()
decltype(auto) operator()(ObjectId< OT, CM > id) const noexcept
Definition: ColumnAccessor.h:175
test_JaggedVecProxyRefBase
void test_JaggedVecProxyRefBase()
SG::detail::JaggedVecProxyT::nonnull_iterator::nonnull_iterator
nonnull_iterator(iterator it)
Definition: JaggedVecConversions.h:292
PixelModuleFeMask_create_db.payload
string payload
Definition: PixelModuleFeMask_create_db.py:69
python.LumiBlobConversion.pos
pos
Definition: LumiBlobConversion.py:18
SG::detail::JaggedVecProxyT::assign
void assign(size_t n, const Payload_t &x)
Set this jagged vector element to a number of items.
SG::detail::JaggedVecProxyT::nonnull_iterator::m_it
iterator m_it
Definition: JaggedVecConversions.h:296
AuxTypes.h
Basic definitions for auxiliary types.
SG::detail::JaggedVecProxyT::size_type
std::size_t size_type
Definition: JaggedVecConversions.h:265
SG::detail::JaggedVecProxyT::empty
bool empty() const noexcept
Test if this jagged vector element is empty.
JaggedVecImpl.h
Definition of JaggedVecElt.
test_JaggedVecProxyValBase
void test_JaggedVecProxyValBase()
SG::detail::JaggedVecProxyValBase::m_base
JaggedVecProxyBase m_base
The proxy base information.
Definition: JaggedVecConversions.h:193
SG::detail::JaggedVecProxyT::iterator
pointer iterator
Use pointers as iterators.
Definition: JaggedVecConversions.h:273
DeMoScan.first
bool first
Definition: DeMoScan.py:536
SG::detail::JaggedVecProxyT::nonnull_iterator::nonnull_iterator
nonnull_iterator(int)=delete
SG::JaggedVecElt
Describe one element of a jagged vector.
Definition: JaggedVecImpl.h:132
SG::detail::JaggedVecProxyT::clear
void clear()
Clear this jagged vector element.
SG::detail::JaggedVecProxyValBase::JaggedVecProxyValBase
JaggedVecProxyValBase(const AuxDataSpanBase &elts, AuxVectorData &container, SG::auxid_t auxid)
Constructor.
SG::detail::JaggedVecProxyT::crend
const_reverse_iterator crend() const noexcept
Return a (const) end reverse iterator.
CxxUtils::range_with_conv
Add to a range class conversions to containers.
Definition: range_with_conv.h:30
SG::detail::JaggedVecProxyT::const_reverse_iterator
std::reverse_iterator< const_iterator > const_reverse_iterator
Definition: JaggedVecConversions.h:276
SG::detail::JaggedVecProxyT::difference_type
std::ptrdiff_t difference_type
Definition: JaggedVecConversions.h:266
SG::AuxVectorData
Manage lookup of vectors of auxiliary data.
Definition: AuxVectorData.h:168
SG::detail::JaggedVecProxyT::cend
const_iterator cend() const noexcept
Return a (const) end iterator.
ranges.h
C++20 range helpers.
SG::detail::JaggedVecProxyT::nonnull_iterator
Helper for passing iterators.
Definition: JaggedVecConversions.h:291
SG::detail::JaggedVecProxyT::pointer
element_type * pointer
Definition: JaggedVecConversions.h:267
value_type
Definition: EDM_MasterSearch.h:11
SG::detail::JaggedVecProxyT::back
reference back() noexcept
Return a reference to the last item in this element's payload.
SG::detail::JaggedVecProxyRefBase
Adapter for holding the proxy base information by reference.
Definition: JaggedVecConversions.h:204
SG::detail::JaggedVecProxyT::m_payload
Payload_span m_payload
Reference to a span over the payload vector.
Definition: JaggedVecConversions.h:674
SG::detail::JaggedVecProxyT::reverse_iterator
std::reverse_iterator< iterator > reverse_iterator
Definition: JaggedVecConversions.h:275
SG::detail::JaggedVecConverter::JaggedVecConverter
JaggedVecConverter(AuxVectorData &container, auxid_t auxid, auxid_t linked_auxid)
Constructor.
SG::detail::JaggedVecProxyT::crbegin
const_reverse_iterator crbegin() const noexcept
Return a (const) begin reverse iterator.
SG::detail::JaggedVecProxyBase::Elt_t
SG::JaggedVecEltBase Elt_t
Type of a jagged vector element.
Definition: JaggedVecConversions.h:98
SG::detail::JaggedVecProxyT::JaggedVecProxyT
JaggedVecProxyT(size_t elt_index, Payload_span payload, JaggedVecProxyBase &base)
Constructor.
SG::detail::JaggedVecConstConverter::JaggedVecConstConverter
JaggedVecConstConverter(const JaggedVecEltBase *elts, const_Payload_span payload)
Constructor.