Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4AccVector.hh
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26
27// Class template for accumulable vectors handled by Geant4 analysis
28//
29// Author: Ivana Hrivnacova, IJCLab IN2P3/CNRS, 12/07/2024
30
31#ifndef G4AccVector_h
32#define G4AccVector_h 1
33
34#include "G4VAccumulable.hh"
35#include "G4MergeMode.hh"
36
37#include "globals.hh"
38
39#include <vector>
40
41// using vector_std::size_t = std::vector::std::size_t;
42
43template <class T, class Allocator = std::allocator<T>>
45{
46 public:
47 // ctors to be supported
48 // (https://en.cppreference.com/w/cpp/container/vector/vector)
49 // 1) Default constructor. Constructs an empty container with a default-constructed allocator.
50 // vector() noexcept(noexcept(Allocator()));
51 // 3) Constructs the container with count copies of elements with value value.
52 // vector( std::size_t count,
53 // const T& value,
54 // const Allocator& alloc = Allocator() );
55 // 4) Constructs the container with count default-inserted instances of T. No copies are made.
56 // vector( std::size_t count,
57 // const Allocator& alloc = Allocator() );
58 // 6) Copy constructor. Constructs the container with the copy of the contents of other.
59 // vector( const vector& other );
60 // 8) Move constructor. Constructs the container with the contents of other using move semantics.
61 // vector( vector&& other );
62 // 10) Constructs the container with the contents of the initializer list init.
63 // vector( std::initializer_list<T> init,
64 // const Allocator& alloc = Allocator() );
65
66 // Default constructor (1)
67 // Constructs an empty container with a default-constructed allocator.
68 G4AccVector(const G4String& name = "",
70
71 // Constructor (2)
72 // Constructs an empty container with the given allocator alloc.
73 G4AccVector(const Allocator& alloc,
75
76 // Constructor (2) with name
77 // Constructs an empty container with the given allocator alloc.
78 G4AccVector(const G4String& name,
79 const Allocator& alloc,
81
82 // Constructor (3)
83 // Constructs the container with count copies of elements with value value
84 // with a default-constructed allocator.
85 // G4AccVector(std::size_t count, const T& value,
86 // const Allocator& alloc = Allocator());
87 G4AccVector(std::size_t count, const T& value,
89 const Allocator& allocator = Allocator());
90
91 // Constructor (3) with name
92 // Constructs the container with count copies of elements with value value
93 // with a default-constructed allocator.
94 // G4AccVector(std::size_t count, const T& value,
95 // const Allocator& alloc = Allocator());
96 G4AccVector(const G4String& name,
97 std::size_t count, const T& value,
99 const Allocator& allocator = Allocator());
100 // Constructor (4)
101 // Constructs the container with count default-inserted instances of T.
102 // No copies are made.
103 // G4AccVector(std::size_t count,
104 // const Allocator& alloc = Allocator() );
105 G4AccVector(std::size_t count,
107 const Allocator& allocator = Allocator());
108
109 // Constructor (4) with name
110 // Constructs the container with count default-inserted instances of T.
111 // No copies are made.
112 // G4AccVector(std::size_t count,
113 // const Allocator& alloc = Allocator() );
115 std::size_t count,
117 const Allocator& allocator = Allocator());
118
119 // Constructor (10)
120 // Constructs the container with the contents of the initializer list init.
121 // G4AccVector(std::initializer_list<T> init,
122 // const Allocator& alloc = Allocator() );
123 G4AccVector(std::initializer_list<T> init,
125 const Allocator& allocator = Allocator());
126
127 // Constructor (10) with name
128 // Constructs the container with the contents of the initializer list init.
129 // G4AccVector(std::initializer_list<T> init,
130 // const Allocator& alloc = Allocator() );
132 std::initializer_list<T> init,
134 const Allocator& allocator = Allocator());
135
136 // Copy constructor
137 G4AccVector(const G4AccVector& rhs) = default;
138 G4AccVector(const G4AccVector& rhs, const Allocator& allocator);
139 // Move constructor
140 G4AccVector(G4AccVector&& rhs) = default;
141 G4AccVector(G4AccVector&& rhs, const Allocator& allocator);
142
143 // Destructor
144 ~G4AccVector() override = default;
145
146 // std::vector functions, operators
147 // operator []
148 inline T& operator[](typename std::vector<T>::size_type i) { return fVector[i]; }
149 // at
150 inline T& at(typename std::vector<T>::size_type i) { return fVector.at(i); }
151 // size
152 inline typename std::vector<T>::size_type size() const { return fVector.size(); }
153 // begin, cbegin
154 inline typename std::vector<T>::iterator begin() { return fVector.begin(); }
155 inline typename std::vector<T>::const_iterator begin() const { return fVector.begin(); }
156 inline typename std::vector<T>::const_iterator cbegin() const { return fVector.cbegin(); }
157 // end, cend
158 inline typename std::vector<T>::iterator end() { return fVector.end(); }
159 inline typename std::vector<T>::const_iterator end() const { return fVector.end(); }
160 inline typename std::vector<T>::const_iterator cend() const { return fVector.cend(); }
161 // clear
162 inline void clear() { fVector.clear(); }
163 // push_back
164 inline void push_back(const T& value) { fVector.push_back(value); }
165 inline void push_back(T&& value ) { fVector.push_back(std::move(value)); }
166 // emplace_back
167 template< class... Args >
168 inline void emplace_back(Args&&... args ) { fVector.emplace_back(args...); }
169 template< class... Args >
170 inline T& emplace_back(Args&&... args ) { return fVector.emplace_back(args...); }
171 // pop_back
172 inline void pop_back() { fVector.pop_back(); }
173
174 // Methods
175 void Merge(const G4VAccumulable& other) final;
176 void Reset() final;
177 void Print(G4PrintOptions options = G4PrintOptions()) const final;
178 void SetMergeMode(G4MergeMode value) final;
179
180 // Get methods
181 G4AccType GetType() const final { return G4AccType::kVector; }
182 std::vector<T>& GetVector();
183 const std::vector<T>& GetVector() const;
184
185 private:
186 // Data members
187 std::vector<T> fVector {};
188 T fInitValue = 0;
189 G4MergeFunction<T> fMergeFunction;
190 };
191
192// inline functions
193
194#include "G4AccVector.icc"
195
196#endif
G4AccType
Definition G4AccType.hh:38
G4MergeMode
std::function< T(const T &, const T &)> G4MergeFunction
std::vector< T > & GetVector()
G4AccVector(std::size_t count, G4MergeMode mergeMode=G4MergeMode::kAddition, const Allocator &allocator=Allocator())
G4AccVector(const G4AccVector &rhs)=default
G4AccVector(const G4String &name="", G4MergeMode mergeMode=G4MergeMode::kAddition)
std::vector< T >::const_iterator cend() const
G4AccVector(G4AccVector &&rhs)=default
G4AccVector(const G4String &name, const Allocator &alloc, G4MergeMode mergeMode=G4MergeMode::kAddition)
std::vector< T >::iterator end()
void push_back(const T &value)
std::vector< T >::iterator begin()
void Merge(const G4VAccumulable &other) final
T & at(typename std::vector< T >::size_type i)
T & emplace_back(Args &&... args)
void Print(G4PrintOptions options=G4PrintOptions()) const final
G4AccVector(std::initializer_list< T > init, G4MergeMode mergeMode=G4MergeMode::kAddition, const Allocator &allocator=Allocator())
~G4AccVector() override=default
G4AccType GetType() const final
G4AccVector(const Allocator &alloc, G4MergeMode mergeMode=G4MergeMode::kAddition)
G4AccVector(std::size_t count, const T &value, G4MergeMode mergeMode=G4MergeMode::kAddition, const Allocator &allocator=Allocator())
void emplace_back(Args &&... args)
void push_back(T &&value)
const std::vector< T > & GetVector() const
std::vector< T >::const_iterator end() const
G4AccVector(const G4String &name, std::size_t count, G4MergeMode mergeMode=G4MergeMode::kAddition, const Allocator &allocator=Allocator())
G4AccVector(const G4String &name, std::initializer_list< T > init, G4MergeMode mergeMode=G4MergeMode::kAddition, const Allocator &allocator=Allocator())
void pop_back()
G4AccVector(const G4AccVector &rhs, const Allocator &allocator)
G4AccVector(const G4String &name, std::size_t count, const T &value, G4MergeMode mergeMode=G4MergeMode::kAddition, const Allocator &allocator=Allocator())
std::vector< T >::const_iterator cbegin() const
std::vector< T >::const_iterator begin() const
G4AccVector(G4AccVector &&rhs, const Allocator &allocator)
std::vector< T >::size_type size() const
T & operator[](typename std::vector< T >::size_type i)
void Reset() final
void SetMergeMode(G4MergeMode value) final
G4VAccumulable(G4MergeMode mergeMode=G4MergeMode::kAddition)