Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4AccumulableManager.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// The common implementation of analysis manager classes.
28
29// Author: Ivana Hrivnacova, IJCLab IN2P3/CNRS, 07/09/2015
30
31#ifndef G4AccumulableManager_h
32#define G4AccumulableManager_h 1
33
34#include "G4AccValue.hh"
35#include "G4AccType.hh"
36#include "globals.hh"
37
38#include <map>
39#include <vector>
40
41class G4AccumulableManager;
42class G4VAccumulable;
43template <class T>
45template <class T, std::size_t N>
46class G4AccArray;
47template <class Key, class T, class Compare, class Allocator>
48class G4AccMap;
49template <class Key, class T, class Hash, class KeyEqual, class Allocator>
51template <class T, class Allocator>
52class G4AccVector;
53
54class G4AccumulableManager
55{
56 friend class G4ThreadLocalSingleton<G4AccumulableManager>;
57
58 public:
59 virtual ~G4AccumulableManager();
60
61 // Static methods
62 static G4AccumulableManager* Instance();
63
64 // Methods
65
66 // Create accumulables
67 //
68 template <typename T>
70 CreateAccValue(const G4String& name, T value,
72
73 template <typename T>
77
78 // Deprecated function using the old accumulable value name
79 //
80
81 template <typename T>
82 [[deprecated("Use `G4AccumulableManager::CreateAccValue<T>` instead")]]
84 CreateAccumulable(const G4String& name, T value,
86
87 template <typename T>
88 [[deprecated("Use `G4AccumulableManager::CreateAccValue<T>` instead")]]
92
93 // Register existing accumulables
94 //
95 template <typename T>
97
98 template <class T, std::size_t N>
99 G4bool Register(G4AccArray<T, N>& accumulableArray);
100
101 template <class Key, class T, class Compare, class Allocator>
103
104 template <class Key, class T, class Hash, class KeyEqual, class Allocator>
106
107 template <class T, class Allocator>
109
110 // user defined accumulable
111 G4bool Register(G4VAccumulable* accumulable);
112
113 // Deprecated functions with long name
114 //
115 template <typename T>
116 [[deprecated("Use `G4AccumulableManager::Register` instead")]]
118 // user defined accumulable
119 [[deprecated("Use `G4AccumulableManager::Register` instead")]]
121
122 // Access registered accumulables
123 //
124 // Via name
125 // templated accumulable
126 //
127 template <typename T>
128 G4AccValue<T>* GetAccValue(const G4String& name, G4bool warn = true) const;
129
130 template <class T, std::size_t N>
132 GetAccArray(const G4String& name, G4bool warn = true) const;
133
134 template <class Key, class T, class Compare = std::less<Key>,
135 class Allocator = std::allocator<std::pair<const Key, T>>>
137 GetAccMap(const G4String& name, G4bool warn = true) const;
138
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>>>
142 GetAccUnorderedMap(const G4String& name, G4bool warn = true) const;
143
144 template <class T, class Allocator = std::allocator<T>>
146 GetAccVector(const G4String& name, G4bool warn = true) const;
147
148 // user defined accumulable
149 G4VAccumulable* GetAccumulable(const G4String& name, G4bool warn = true) const;
150
151 // Deprecated function using the old accumulable value name
152 template <typename T>
153 [[deprecated("Use `G4AccumulableManager::GetAccValue<T>` instead")]]
154 G4AccValue<T>* GetAccumulable(const G4String& name, G4bool warn = true) const;
155
156 // Via id (in the order of registering)
157 // templated accumulable
158 //
159 template <typename T>
160 G4AccValue<T>* GetAccValue(G4int id, G4bool warn = true) const;
161
162 template <class T, std::size_t N>
163 G4AccArray<T, N>* GetAccArray(G4int id, G4bool warn = true) const;
164
165 template <class Key, class T, class Compare = std::less<Key>,
166 class Allocator = std::allocator<std::pair<const Key, T>>>
168 GetAccMap(G4int id, G4bool warn = true) const;
169
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>>>
173 GetAccUnorderedMap(G4int id, G4bool warn = true) const;
174
175 template <class T, class Allocator = std::allocator<T>>
177 GetAccVector(G4int id, G4bool warn = true) const;
178
179 // user defined accumulable
180 G4VAccumulable* GetAccumulable(G4int id, G4bool warn = true) const;
181
182 // Deprecated function using the old accumulable value name
183 template <typename T>
184 [[deprecated("Use `G4AccumulableManager::GetAccValue<T>` instead")]]
185 G4AccValue<T>* GetAccumulable(G4int id, G4bool warn = true) const;
186
188
189 // Via vector iterators
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;
194
195 // Methods applied to all accumulables
196 void Merge();
197 void Reset();
198 void Print(G4PrintOptions options = G4PrintOptions()) const;
199
200 // Print a selected range
201 void Print(G4int startId, G4int count,
202 G4PrintOptions options = G4PrintOptions()) const;
203 void Print(std::vector<G4VAccumulable*>::iterator startIt, std::size_t count,
204 G4PrintOptions options = G4PrintOptions()) const;
205 void Print(std::vector<G4VAccumulable*>::iterator startIt,
206 std::vector<G4VAccumulable*>::iterator endIt,
207 G4PrintOptions options = G4PrintOptions()) const;
208
209 // Verbose level
212
213 private:
214 // Hide singleton ctor
215 G4AccumulableManager();
216
217 // Methods
218 // Generate generic accumulable name: accumulableN, where N is the actual number of accumulables
219 G4String GenerateName() const;
220 // Check if a name is already used in a map and print a warning
221 G4bool CheckName(const G4String& name, const G4String& where) const;
222 G4bool CheckType(G4VAccumulable* accumulable, G4AccType type, G4bool warn) const;
223
224 template <typename T>
225 G4AccValue<T>* GetAccumulable(G4VAccumulable* accumulable, G4bool warn) const;
226
227 template <typename T, std::size_t N>
228 G4AccArray<T, N>* GetAccArray(G4VAccumulable* accumulable, G4bool warn) const;
229
230 template <typename Key, typename T, typename Compare = std::less<Key>,
231 typename Allocator = std::allocator<std::pair<const Key, T>>>
233 GetAccMap(G4VAccumulable* accumulable, G4bool warn = true) const;
234
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>>>
238 GetAccUnorderedMap(G4VAccumulable* accumulable, G4bool warn = true) const;
239
240 template <typename T, typename Allocator = std::allocator<T>>
242 GetAccVector(G4VAccumulable* accumulable, G4bool warn) const;
243
244 // Constants
245 const G4String kBaseName = "accumulable";
246
247 // Static data members
248 inline static G4AccumulableManager* fgMasterInstance { nullptr };
249
250 // Data members
251 std::vector<G4VAccumulable*> fVector;
252 std::map<G4String, G4VAccumulable*> fMap;
253 std::vector<G4VAccumulable*> fAccumulablesToDelete;
254 };
255
256#include "G4AccumulableManager.icc"
257
258#endif
259
G4AccType
Definition G4AccType.hh:38
G4MergeMode
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
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
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