Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4AccMap.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 maps handled by Geant4 analysis
28//
29// Author: Ivana Hrivnacova, IJCLab IN2P3/CNRS, 19/07/2024
30
31#ifndef G4AccMap_h
32#define G4AccMap_h 1
33
34#include "G4VAccumulable.hh"
35#include "G4MergeMode.hh"
36
37#include "globals.hh"
38
39#include <map>
40
41template <class Key,
42 class T,
43 class Compare = std::less<Key>,
44 class Allocator = std::allocator<std::pair<const Key, T>>>
46{
47 public:
48 // ctors to be supported
49 // (https://en.cppreference.com/w/cpp/container/map/map)
50 //
51 // Default constructor (1) - Constructs an empty container.
52 // map();
53 //
54 // Constructor (2) - Constructs an empty container.
55 // explicit map(const Compare& comp,
56 // const Allocator& alloc = Allocator());
57 //
58 // Constructor (3) - Constructs an empty container.
59 // explicit map(const Allocator& alloc);
60 //
61 // 4,5) Constructs the container with the contents of the range [first, last).
62 // - skipped
63 //
64 // Constructor (6) - Copy constructor.
65 // Constructs the container with the copy of the contents of other.
66 // map( const map& other );
67 //
68 // Constructor (7) - Copy constructor with provided allocator
69 // map( const map& other, const Allocator& alloc );
70 //
71 // Constructor (8) - Move constructor.
72 // Constructs the container with the contents of other using move semantics.
73 // map(map&& other);
74 //
75 // Constructor (9) - Move constructor with provided allocator
76 // Constructs the container with the contents of other using move semantics.
77 // map(map&& other, const Allocator& alloc);
78 //
79 // Constructor (10) - Initializer-list constructor.
80 // Constructs the container with the contents of the initializer list init
81 // map(std::initializer_list<value_type> init,
82 // const Compare& comp = Compare(),
83 // const Allocator& alloc = Allocator());
84 //
85 // Constructor (11) - Initializer-list constructor.
86 // Constructs the container with the contents of the initializer list init
87 // map(std::initializer_list<value_type> init,
88 // const Allocator& alloc);
89 // - skipped
90 //
91 // (since C++20)
92 // (12,13) Constructs the container with the contents of rg.
93 // - skipped
94
95 // Default constructor (1)
96 // Constructs an empty container with all defaults.
97 G4AccMap(const G4String& name = "",
99
100 // Constructor (2)
101 // Constructs an empty container with the given compare.
102 G4AccMap(const Compare& comp,
104 const Allocator& alloc = Allocator());
105
106 // Constructor (2) with name
107 // Constructs an empty container with the given compare with name
108 G4AccMap(const G4String& name,
109 const Compare& comp,
111 const Allocator& alloc = Allocator());
112
113 // Constructor (3)
114 // Constructs an empty container with the given allocator alloc.
115 G4AccMap(const Allocator& alloc,
117
118 // Constructor (3) with name
119 // Constructs an empty container with the given allocator alloc and name
120 G4AccMap(const G4String& name,
121 const Allocator& alloc,
123
124 // Constructor (10)
125 // Constructs the container with the contents of the initializer list init.
126 G4AccMap(std::initializer_list<std::pair<const Key,T>> init,
128 const Compare& comp = Compare(),
129 const Allocator& alloc = Allocator());
130
131 // Constructor (10) with name
132 // Constructs the container with the contents of the initializer list init.
133 G4AccMap(const G4String& name,
134 std::initializer_list<std::pair<const Key,T>> init,
136 const Compare& comp = Compare(),
137 const Allocator& alloc = Allocator());
138
139 // Copy constructor
140 G4AccMap(const G4AccMap& rhs) = default;
141 G4AccMap(const G4AccMap& rhs, const Allocator& allocator);
142 // Move constructor
143 G4AccMap(G4AccMap&& rhs) = default;
144 G4AccMap(G4AccMap&& rhs, const Allocator& allocator);
145
146 // Destructor
147 ~G4AccMap() override = default;
148
149 // std::map functions, operators
150 // operator []
151 inline T& operator[](const Key& key) { return fMap[key]; }
152 inline T& operator[](Key&& key) { return fMap[std::move(key)]; }
153 // at
154 inline T& at(const Key& key) { return fMap[key]; }
155 inline const T& at(const Key& key ) const { return fMap[key]; }
156 // size
157 inline typename std::map<Key, T, Compare, Allocator>::size_type size() const { return fMap.size(); }
158 // begin, cbegin
159 inline typename std::map<Key, T, Compare, Allocator>::iterator begin() { return fMap.begin(); }
160 inline typename std::map<Key, T, Compare, Allocator>::const_iterator begin() const { return fMap.begin(); }
161 inline typename std::map<Key, T, Compare, Allocator>::const_iterator cbegin() const { return fMap.cbegin(); }
162 // end, cend
163 inline typename std::map<Key, T, Compare, Allocator>::iterator end() { return fMap.end(); }
164 inline typename std::map<Key, T, Compare, Allocator>::const_iterator end() const { return fMap.end(); }
165 inline typename std::map<Key, T, Compare, Allocator>::const_iterator cend() const { return fMap.cend(); }
166 // clear
167 inline void clear() { fMap.clear(); }
168 // insert
169 inline std::pair<typename std::map<Key, T, Compare, Allocator>::iterator, bool> insert(const T& value) { return fMap.insert(value); }
170 template< class P >
171 inline std::pair<typename std::map<Key, T, Compare, Allocator>::iterator, bool> insert( P&& value ) { return fMap.insert(std::move(value)); }
172 inline std::pair<typename std::map<Key, T, Compare, Allocator>::iterator, bool> insert( T&& value ) { return fMap.insert(std::move(value)); }
173 // find
174 inline typename std::map<Key, T, Compare, Allocator>::iterator find( const Key& key ) { return fMap.find(key); }
175 inline typename std::map<Key, T, Compare, Allocator>::const_iterator find( const Key& key ) const { return fMap.find(key); }
176
177 // Methods
178 void Merge(const G4VAccumulable& other) final;
179 void Reset() final;
180 void Print(G4PrintOptions options = G4PrintOptions()) const final;
181 void SetMergeMode(G4MergeMode value) final;
182 void SetInitValue(const T& value);
183
184 // Get methods
185 G4AccType GetType() const final { return G4AccType::kMap; }
186 std::map<Key, T, Compare, Allocator>& GetMap() { return fMap; }
187 const std::map<Key, T, Compare, Allocator>& GetMap() const { return fMap; }
188
189 private:
190 // Data members
191 std::map<Key, T, Compare, Allocator> fMap {};
192 T fInitValue = 0;
193 G4MergeFunction<T> fMergeFunction;
194 };
195
196// inline functions
197
198#include "G4AccMap.icc"
199
200#endif
G4AccType
Definition G4AccType.hh:38
G4MergeMode
std::function< T(const T &, const T &)> G4MergeFunction
G4AccMap(const G4String &name, std::initializer_list< std::pair< const Key, T > > init, G4MergeMode mergeMode=G4MergeMode::kAddition, const Compare &comp=Compare(), const Allocator &alloc=Allocator())
G4AccMap(const G4String &name, const Compare &comp, G4MergeMode mergeMode=G4MergeMode::kAddition, const Allocator &alloc=Allocator())
T & at(const Key &key)
Definition G4AccMap.hh:154
G4AccMap(G4AccMap &&rhs)=default
G4AccMap(G4AccMap &&rhs, const Allocator &allocator)
T & operator[](Key &&key)
Definition G4AccMap.hh:152
void SetMergeMode(G4MergeMode value) final
std::map< Key, T, Compare, Allocator >::iterator find(const Key &key)
Definition G4AccMap.hh:174
std::map< Key, T, Compare, Allocator >::const_iterator find(const Key &key) const
Definition G4AccMap.hh:175
void Print(G4PrintOptions options=G4PrintOptions()) const final
std::map< Key, T, Compare, Allocator >::const_iterator cbegin() const
Definition G4AccMap.hh:161
std::map< Key, T, Compare, Allocator >::const_iterator end() const
Definition G4AccMap.hh:164
G4AccMap(const Compare &comp, G4MergeMode mergeMode=G4MergeMode::kAddition, const Allocator &alloc=Allocator())
G4AccMap(const G4AccMap &rhs, const Allocator &allocator)
G4AccMap(const G4String &name="", G4MergeMode mergeMode=G4MergeMode::kAddition)
T & operator[](const Key &key)
Definition G4AccMap.hh:151
void SetInitValue(const T &value)
const std::map< Key, T, Compare, Allocator > & GetMap() const
Definition G4AccMap.hh:187
G4AccMap(const Allocator &alloc, G4MergeMode mergeMode=G4MergeMode::kAddition)
std::pair< typename std::map< Key, T, Compare, Allocator >::iterator, bool > insert(P &&value)
Definition G4AccMap.hh:171
std::map< Key, T, Compare, Allocator >::iterator begin()
Definition G4AccMap.hh:159
void clear()
Definition G4AccMap.hh:167
const T & at(const Key &key) const
Definition G4AccMap.hh:155
void Merge(const G4VAccumulable &other) final
G4AccType GetType() const final
Definition G4AccMap.hh:185
void Reset() final
~G4AccMap() override=default
std::map< Key, T, Compare, Allocator >::size_type size() const
Definition G4AccMap.hh:157
G4AccMap(std::initializer_list< std::pair< const Key, T > > init, G4MergeMode mergeMode=G4MergeMode::kAddition, const Compare &comp=Compare(), const Allocator &alloc=Allocator())
G4AccMap(const G4String &name, const Allocator &alloc, G4MergeMode mergeMode=G4MergeMode::kAddition)
std::pair< typename std::map< Key, T, Compare, Allocator >::iterator, bool > insert(const T &value)
Definition G4AccMap.hh:169
std::map< Key, T, Compare, Allocator >::iterator end()
Definition G4AccMap.hh:163
std::pair< typename std::map< Key, T, Compare, Allocator >::iterator, bool > insert(T &&value)
Definition G4AccMap.hh:172
std::map< Key, T, Compare, Allocator >::const_iterator begin() const
Definition G4AccMap.hh:160
std::map< Key, T, Compare, Allocator >::const_iterator cend() const
Definition G4AccMap.hh:165
G4AccMap(const G4AccMap &rhs)=default
std::map< Key, T, Compare, Allocator > & GetMap()
Definition G4AccMap.hh:186
G4VAccumulable(G4MergeMode mergeMode=G4MergeMode::kAddition)