32#define G4AccVector_h 1
43template <
class T,
class Allocator = std::allocator<T>>
79 const Allocator& alloc,
89 const Allocator& allocator = Allocator());
97 std::size_t count,
const T& value,
99 const Allocator& allocator = Allocator());
107 const Allocator& allocator = Allocator());
117 const Allocator& allocator = Allocator());
125 const Allocator& allocator = Allocator());
132 std::initializer_list<T> init,
134 const Allocator& allocator = Allocator());
148 inline T&
operator[](
typename std::vector<T>::size_type i) {
return fVector[i]; }
150 inline T&
at(
typename std::vector<T>::size_type i) {
return fVector.at(i); }
152 inline typename std::vector<T>::size_type
size()
const {
return fVector.size(); }
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(); }
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(); }
162 inline void clear() { fVector.clear(); }
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)); }
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...); }
187 std::vector<T> fVector {};
194#include "G4AccVector.icc"
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())
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 SetMergeMode(G4MergeMode value) final
G4VAccumulable(G4MergeMode mergeMode=G4MergeMode::kAddition)