31#ifndef G4AccumulableManager_h
32#define G4AccumulableManager_h 1
41class G4AccumulableManager;
45template <
class T, std::
size_t N>
47template <
class Key,
class T,
class Compare,
class Allocator>
49template <
class Key,
class T,
class Hash,
class KeyEqual,
class Allocator>
51template <
class T,
class Allocator>
54class G4AccumulableManager
62 static G4AccumulableManager*
Instance();
82 [[deprecated(
"Use `G4AccumulableManager::CreateAccValue<T>` instead")]]
88 [[deprecated(
"Use `G4AccumulableManager::CreateAccValue<T>` instead")]]
98 template <
class T, std::
size_t N>
101 template <
class Key,
class T,
class Compare,
class Allocator>
104 template <
class Key,
class T,
class Hash,
class KeyEqual,
class Allocator>
107 template <
class T,
class Allocator>
115 template <
typename T>
116 [[deprecated(
"Use `G4AccumulableManager::Register` instead")]]
119 [[deprecated(
"Use `G4AccumulableManager::Register` instead")]]
127 template <
typename T>
130 template <
class T, std::
size_t N>
134 template <
class Key,
class T,
class Compare = std::less<Key>,
135 class Allocator = std::allocator<std::pair<const Key, T>>>
139 template <
class Key,
class T,
class Hash = std::hash<Key>,
class KeyEqual = std::equal_to<Key>,
140 class Allocator = std::allocator<std::pair<const Key, T>>>
144 template <
class T,
class Allocator = std::allocator<T>>
152 template <
typename T>
153 [[deprecated(
"Use `G4AccumulableManager::GetAccValue<T>` instead")]]
159 template <
typename T>
162 template <
class T, std::
size_t N>
165 template <
class Key,
class T,
class Compare = std::less<Key>,
166 class Allocator = std::allocator<std::pair<const Key, T>>>
170 template <
class Key,
class T,
class Hash = std::hash<Key>,
class KeyEqual = std::equal_to<Key>,
171 class Allocator = std::allocator<std::pair<const Key, T>>>
175 template <
class T,
class Allocator = std::allocator<T>>
183 template <
typename T>
184 [[deprecated(
"Use `G4AccumulableManager::GetAccValue<T>` instead")]]
190 std::vector<G4VAccumulable*>::iterator
Begin();
191 std::vector<G4VAccumulable*>::iterator
End();
192 std::vector<G4VAccumulable*>::const_iterator
BeginConst()
const;
193 std::vector<G4VAccumulable*>::const_iterator
EndConst()
const;
203 void Print(std::vector<G4VAccumulable*>::iterator startIt, std::size_t count,
205 void Print(std::vector<G4VAccumulable*>::iterator startIt,
206 std::vector<G4VAccumulable*>::iterator endIt,
215 G4AccumulableManager();
224 template <
typename T>
227 template <
typename T, std::
size_t N>
230 template <
typename Key,
typename T,
typename Compare = std::less<Key>,
231 typename Allocator = std::allocator<std::pair<const Key, T>>>
235 template <
typename Key,
typename T,
typename Hash = std::hash<Key>,
typename KeyEqual = std::equal_to<Key>,
236 typename Allocator = std::allocator<std::pair<const Key, T>>>
240 template <
typename T,
typename Allocator = std::allocator<T>>
245 const G4String kBaseName =
"accumulable";
248 inline static G4AccumulableManager* fgMasterInstance {
nullptr };
251 std::vector<G4VAccumulable*> fVector;
252 std::map<G4String, G4VAccumulable*> fMap;
253 std::vector<G4VAccumulable*> fAccumulablesToDelete;
256#include "G4AccumulableManager.icc"
G4bool Register(G4AccValue< T > &accumulable)
G4AccArray< T, N > * GetAccArray(const G4String &name, G4bool warn=true) const
G4bool Register(G4AccMap< Key, T, Compare, Allocator > &accumulableMap)
G4bool Register(G4AccArray< T, N > &accumulableArray)
G4AccMap< Key, T, Compare, Allocator > * GetAccMap(const G4String &name, G4bool warn=true) const
G4AccValue< T > * GetAccumulable(const G4String &name, G4bool warn=true) const
G4AccValue< T > * GetAccumulable(G4int id, G4bool warn=true) const
G4AccValue< T > * CreateAccValue(T value, G4MergeMode mergeMode=G4MergeMode::kAddition)
G4AccValue< T > * CreateAccValue(const G4String &name, T value, G4MergeMode mergeMode=G4MergeMode::kAddition)
G4AccVector< T, Allocator > * GetAccVector(const G4String &name, G4bool warn=true) const
void SetVerboseLevel(G4int value)
G4bool Register(G4AccUnorderedMap< Key, T, Hash, KeyEqual, Allocator > &accumulableUnorderedMap)
G4AccArray< T, N > * GetAccArray(G4int id, G4bool warn=true) const
G4AccValue< T > * CreateAccumulable(const G4String &name, T value, G4MergeMode mergeMode=G4MergeMode::kAddition)
G4int GetVerboseLevel() const
std::vector< G4VAccumulable * >::iterator Begin()
G4int GetNofAccumulables() const
G4bool RegisterAccumulable(G4AccValue< T > &accumulable)
G4AccMap< Key, T, Compare, Allocator > * GetAccMap(G4int id, G4bool warn=true) const
virtual ~G4AccumulableManager()
static G4AccumulableManager * Instance()
G4AccUnorderedMap< Key, T, Hash, KeyEqual, Allocator > * GetAccUnorderedMap(G4int id, G4bool warn=true) const
G4AccVector< T, Allocator > * GetAccVector(G4int id, G4bool warn=true) const
std::vector< G4VAccumulable * >::const_iterator EndConst() const
G4AccValue< T > * CreateAccumulable(T value, G4MergeMode mergeMode=G4MergeMode::kAddition)
G4AccUnorderedMap< Key, T, Hash, KeyEqual, Allocator > * GetAccUnorderedMap(const G4String &name, G4bool warn=true) const
G4AccValue< T > * GetAccValue(G4int id, G4bool warn=true) const
std::vector< G4VAccumulable * >::iterator End()
G4bool Register(G4AccVector< T, Allocator > &accumulableVector)
G4VAccumulable * GetAccumulable(const G4String &name, G4bool warn=true) const
std::vector< G4VAccumulable * >::const_iterator BeginConst() const
G4AccValue< T > * GetAccValue(const G4String &name, G4bool warn=true) const
void Print(G4PrintOptions options=G4PrintOptions()) const