Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4AccumulableManager Class Reference

#include <G4AccumulableManager.hh>

Public Member Functions

virtual ~G4AccumulableManager ()
 
template<typename T>
G4AccValue< T > * CreateAccValue (const G4String &name, T value, G4MergeMode mergeMode=G4MergeMode::kAddition)
 
template<typename T>
G4AccValue< T > * CreateAccValue (T value, G4MergeMode mergeMode=G4MergeMode::kAddition)
 
template<typename T>
G4AccValue< T > * CreateAccumulable (const G4String &name, T value, G4MergeMode mergeMode=G4MergeMode::kAddition)
 
template<typename T>
G4AccValue< T > * CreateAccumulable (T value, G4MergeMode mergeMode=G4MergeMode::kAddition)
 
template<typename T>
G4bool Register (G4AccValue< T > &accumulable)
 
template<class T, std::size_t N>
G4bool Register (G4AccArray< T, N > &accumulableArray)
 
template<class Key, class T, class Compare, class Allocator>
G4bool Register (G4AccMap< Key, T, Compare, Allocator > &accumulableMap)
 
template<class Key, class T, class Hash, class KeyEqual, class Allocator>
G4bool Register (G4AccUnorderedMap< Key, T, Hash, KeyEqual, Allocator > &accumulableUnorderedMap)
 
template<class T, class Allocator>
G4bool Register (G4AccVector< T, Allocator > &accumulableVector)
 
G4bool Register (G4VAccumulable *accumulable)
 
template<typename T>
G4bool RegisterAccumulable (G4AccValue< T > &accumulable)
 
G4bool RegisterAccumulable (G4VAccumulable *accumulable)
 
template<typename T>
G4AccValue< T > * GetAccValue (const G4String &name, G4bool warn=true) const
 
template<class T, std::size_t N>
G4AccArray< T, N > * GetAccArray (const G4String &name, G4bool warn=true) const
 
template<class Key, class T, class Compare = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
G4AccMap< Key, T, Compare, Allocator > * GetAccMap (const G4String &name, G4bool warn=true) const
 
template<class Key, class T, class Hash = std::hash<Key>, class KeyEqual = std::equal_to<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
G4AccUnorderedMap< Key, T, Hash, KeyEqual, Allocator > * GetAccUnorderedMap (const G4String &name, G4bool warn=true) const
 
template<class T, class Allocator = std::allocator<T>>
G4AccVector< T, Allocator > * GetAccVector (const G4String &name, G4bool warn=true) const
 
G4VAccumulableGetAccumulable (const G4String &name, G4bool warn=true) const
 
template<typename T>
G4AccValue< T > * GetAccumulable (const G4String &name, G4bool warn=true) const
 
template<typename T>
G4AccValue< T > * GetAccValue (G4int id, G4bool warn=true) const
 
template<class T, std::size_t N>
G4AccArray< T, N > * GetAccArray (G4int id, G4bool warn=true) const
 
template<class Key, class T, class Compare = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
G4AccMap< Key, T, Compare, Allocator > * GetAccMap (G4int id, G4bool warn=true) const
 
template<class Key, class T, class Hash = std::hash<Key>, class KeyEqual = std::equal_to<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
G4AccUnorderedMap< Key, T, Hash, KeyEqual, Allocator > * GetAccUnorderedMap (G4int id, G4bool warn=true) const
 
template<class T, class Allocator = std::allocator<T>>
G4AccVector< T, Allocator > * GetAccVector (G4int id, G4bool warn=true) const
 
G4VAccumulableGetAccumulable (G4int id, G4bool warn=true) const
 
template<typename T>
G4AccValue< T > * GetAccumulable (G4int id, G4bool warn=true) const
 
G4int GetNofAccumulables () const
 
std::vector< G4VAccumulable * >::iterator Begin ()
 
std::vector< G4VAccumulable * >::iterator End ()
 
std::vector< G4VAccumulable * >::const_iterator BeginConst () const
 
std::vector< G4VAccumulable * >::const_iterator EndConst () const
 
void Merge ()
 
void Reset ()
 
void Print (G4PrintOptions options=G4PrintOptions()) const
 
void Print (G4int startId, G4int count, G4PrintOptions options=G4PrintOptions()) const
 
void Print (std::vector< G4VAccumulable * >::iterator startIt, std::size_t count, G4PrintOptions options=G4PrintOptions()) const
 
void Print (std::vector< G4VAccumulable * >::iterator startIt, std::vector< G4VAccumulable * >::iterator endIt, G4PrintOptions options=G4PrintOptions()) const
 
void SetVerboseLevel (G4int value)
 
G4int GetVerboseLevel () const
 

Static Public Member Functions

static G4AccumulableManagerInstance ()
 

Friends

class G4ThreadLocalSingleton< G4AccumulableManager >
 

Detailed Description

Definition at line 54 of file G4AccumulableManager.hh.

Constructor & Destructor Documentation

◆ ~G4AccumulableManager()

G4AccumulableManager::~G4AccumulableManager ( )
virtual

Definition at line 66 of file G4AccumulableManager.cc.

67{
68 // delete only accumulables create by the mager itself
69 for ( auto it : fAccumulablesToDelete ) {
70 delete it;
71 }
72}

Member Function Documentation

◆ Begin()

std::vector< G4VAccumulable * >::iterator G4AccumulableManager::Begin ( )

◆ BeginConst()

std::vector< G4VAccumulable * >::const_iterator G4AccumulableManager::BeginConst ( ) const

◆ CreateAccumulable() [1/2]

template<typename T>
G4AccValue< T > * G4AccumulableManager::CreateAccumulable ( const G4String & name,
T value,
G4MergeMode mergeMode = G4MergeMode::kAddition )

◆ CreateAccumulable() [2/2]

template<typename T>
G4AccValue< T > * G4AccumulableManager::CreateAccumulable ( T value,
G4MergeMode mergeMode = G4MergeMode::kAddition )

◆ CreateAccValue() [1/2]

template<typename T>
G4AccValue< T > * G4AccumulableManager::CreateAccValue ( const G4String & name,
T value,
G4MergeMode mergeMode = G4MergeMode::kAddition )

◆ CreateAccValue() [2/2]

template<typename T>
G4AccValue< T > * G4AccumulableManager::CreateAccValue ( T value,
G4MergeMode mergeMode = G4MergeMode::kAddition )

◆ End()

std::vector< G4VAccumulable * >::iterator G4AccumulableManager::End ( )

◆ EndConst()

std::vector< G4VAccumulable * >::const_iterator G4AccumulableManager::EndConst ( ) const

◆ GetAccArray() [1/2]

template<class T, std::size_t N>
G4AccArray< T, N > * G4AccumulableManager::GetAccArray ( const G4String & name,
G4bool warn = true ) const

◆ GetAccArray() [2/2]

template<class T, std::size_t N>
G4AccArray< T, N > * G4AccumulableManager::GetAccArray ( G4int id,
G4bool warn = true ) const

◆ GetAccMap() [1/2]

template<class Key, class T, class Compare = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
G4AccMap< Key, T, Compare, Allocator > * G4AccumulableManager::GetAccMap ( const G4String & name,
G4bool warn = true ) const

◆ GetAccMap() [2/2]

template<class Key, class T, class Compare = std::less<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
G4AccMap< Key, T, Compare, Allocator > * G4AccumulableManager::GetAccMap ( G4int id,
G4bool warn = true ) const

◆ GetAccumulable() [1/4]

G4VAccumulable * G4AccumulableManager::GetAccumulable ( const G4String & name,
G4bool warn = true ) const

Definition at line 168 of file G4AccumulableManager.cc.

169{
170 // get G4VParammeter from the map
171 auto it = fMap.find(name);
172 if ( it == fMap.end() ) {
173 if ( warn) {
174 G4ExceptionDescription description;
175 description << "Accumulable " << name << " does not exist.";
176 G4Exception("G4AccumulableManager::GetAccumulable",
177 "Analysis_W001", JustWarning, description);
178 }
179 return nullptr;
180 }
181
182 return it->second;
183}
@ JustWarning
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
const char * name(G4int ptype)

◆ GetAccumulable() [2/4]

template<typename T>
G4AccValue< T > * G4AccumulableManager::GetAccumulable ( const G4String & name,
G4bool warn = true ) const

◆ GetAccumulable() [3/4]

G4VAccumulable * G4AccumulableManager::GetAccumulable ( G4int id,
G4bool warn = true ) const

Definition at line 187 of file G4AccumulableManager.cc.

188{
189 // get G4VParammeter from the vector
190 if ( id < 0 || id >= G4int(fVector.size()) ) {
191 if ( warn) {
192 G4ExceptionDescription description;
193 description << "Accumulable " << id << " does not exist.";
194 G4Exception("G4AccumulableManager::GetAccumulable",
195 "Analysis_W001", JustWarning, description);
196 }
197 return nullptr;
198 }
199
200 return fVector[id];
201}
int G4int
Definition G4Types.hh:85

◆ GetAccumulable() [4/4]

template<typename T>
G4AccValue< T > * G4AccumulableManager::GetAccumulable ( G4int id,
G4bool warn = true ) const

◆ GetAccUnorderedMap() [1/2]

template<class Key, class T, class Hash = std::hash<Key>, class KeyEqual = std::equal_to<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
G4AccUnorderedMap< Key, T, Hash, KeyEqual, Allocator > * G4AccumulableManager::GetAccUnorderedMap ( const G4String & name,
G4bool warn = true ) const

◆ GetAccUnorderedMap() [2/2]

template<class Key, class T, class Hash = std::hash<Key>, class KeyEqual = std::equal_to<Key>, class Allocator = std::allocator<std::pair<const Key, T>>>
G4AccUnorderedMap< Key, T, Hash, KeyEqual, Allocator > * G4AccumulableManager::GetAccUnorderedMap ( G4int id,
G4bool warn = true ) const

◆ GetAccValue() [1/2]

template<typename T>
G4AccValue< T > * G4AccumulableManager::GetAccValue ( const G4String & name,
G4bool warn = true ) const

◆ GetAccValue() [2/2]

template<typename T>
G4AccValue< T > * G4AccumulableManager::GetAccValue ( G4int id,
G4bool warn = true ) const

◆ GetAccVector() [1/2]

template<class T, class Allocator = std::allocator<T>>
G4AccVector< T, Allocator > * G4AccumulableManager::GetAccVector ( const G4String & name,
G4bool warn = true ) const

◆ GetAccVector() [2/2]

template<class T, class Allocator = std::allocator<T>>
G4AccVector< T, Allocator > * G4AccumulableManager::GetAccVector ( G4int id,
G4bool warn = true ) const

◆ GetNofAccumulables()

G4int G4AccumulableManager::GetNofAccumulables ( ) const

◆ GetVerboseLevel()

G4int G4AccumulableManager::GetVerboseLevel ( ) const

◆ Instance()

G4AccumulableManager * G4AccumulableManager::Instance ( )
static

Definition at line 51 of file G4AccumulableManager.cc.

52{
54 return instance.Instance();
55}
G4TemplateRNGHelper< G4long > * G4TemplateRNGHelper< G4long >::instance
friend class G4ThreadLocalSingleton< G4AccumulableManager >

◆ Merge()

void G4AccumulableManager::Merge ( )

Definition at line 204 of file G4AccumulableManager.cc.

205{
206 // Do nothing if there are no accumulables registered
207 // or if master thread
208 if ((fVector.size() == 0u) || (!G4Threading::IsWorkerThread())) {
209 return;
210 }
211
212 // The manager on mastter must exist
213 if (fgMasterInstance == nullptr) {
214 G4ExceptionDescription description;
215 description
216 << "No master G4AccumulableManager instance exists." << G4endl
217 << "Accumulables will not be merged.";
218 G4Exception("G4AccumulableManager::Merge()",
219 "Analysis_W001", JustWarning, description);
220 return;
221 }
222
223 // The worker manager just merges its accumulables to the master
224 // This operation needs a lock
225 // G4cout << "Go to merge accumulables" << G4endl;
226 G4AutoLock lock(&mergeMutex);
227
228 // the other manager has the vector with the "same" accumulables
229 auto it = fVector.begin();
230 for ( auto itMaster : fgMasterInstance->fVector ) {
231 // G4VAccumulable* masterAccumulable = itMaster;
232 // G4VAccumulable* accumulable = *(it++);
233 // masterAccumulable->Merge(*(accumulable));
234 itMaster->Merge(*(*(it++)));
235 }
236 lock.unlock();
237}
G4TemplateAutoLock< G4Mutex > G4AutoLock
#define G4endl
Definition G4ios.hh:67
G4bool IsWorkerThread()

◆ Print() [1/4]

void G4AccumulableManager::Print ( G4int startId,
G4int count,
G4PrintOptions options = G4PrintOptions() ) const

Definition at line 258 of file G4AccumulableManager.cc.

260{
261 // check if range is within limits
262 if ( startId < 0 || startId >= G4int(fVector.size()) ||
263 count <= 0 || startId + count > G4int(fVector.size()) ) {
264 RangeException("Print",
265 std::to_string(startId) + ", " + std::to_string(count));
266 return;
267 }
268
269 for ( auto id = startId; id < startId + count; ++id ) {
270 fVector[id]->Print(options);
271 }
272}

◆ Print() [2/4]

void G4AccumulableManager::Print ( G4PrintOptions options = G4PrintOptions()) const

Definition at line 250 of file G4AccumulableManager.cc.

251{
252 for ( auto it : fVector ) {
253 it->Print(options);
254 }
255}

Referenced by Print().

◆ Print() [3/4]

void G4AccumulableManager::Print ( std::vector< G4VAccumulable * >::iterator startIt,
std::size_t count,
G4PrintOptions options = G4PrintOptions() ) const

Definition at line 292 of file G4AccumulableManager.cc.

295{
296 Print(startIt, startIt+count, options);
297}
void Print(G4PrintOptions options=G4PrintOptions()) const

◆ Print() [4/4]

void G4AccumulableManager::Print ( std::vector< G4VAccumulable * >::iterator startIt,
std::vector< G4VAccumulable * >::iterator endIt,
G4PrintOptions options = G4PrintOptions() ) const

Definition at line 275 of file G4AccumulableManager.cc.

279{
280 // check if range is within limits
281 if ( startIt == fVector.end() || endIt == fVector.end() ) {
282 RangeException("Print", "[startIt, endIt]");
283 return;
284 }
285
286 for ( auto it = startIt; it != endIt; ++it ) {
287 (*it)->Print(options);
288 }
289}

◆ Register() [1/6]

template<class T, std::size_t N>
G4bool G4AccumulableManager::Register ( G4AccArray< T, N > & accumulableArray)

◆ Register() [2/6]

template<class Key, class T, class Compare, class Allocator>
G4bool G4AccumulableManager::Register ( G4AccMap< Key, T, Compare, Allocator > & accumulableMap)

◆ Register() [3/6]

template<class Key, class T, class Hash, class KeyEqual, class Allocator>
G4bool G4AccumulableManager::Register ( G4AccUnorderedMap< Key, T, Hash, KeyEqual, Allocator > & accumulableUnorderedMap)

◆ Register() [4/6]

template<typename T>
G4bool G4AccumulableManager::Register ( G4AccValue< T > & accumulable)

Referenced by RegisterAccumulable().

◆ Register() [5/6]

template<class T, class Allocator>
G4bool G4AccumulableManager::Register ( G4AccVector< T, Allocator > & accumulableVector)

◆ Register() [6/6]

G4bool G4AccumulableManager::Register ( G4VAccumulable * accumulable)

Definition at line 127 of file G4AccumulableManager.cc.

128{
129 auto name = accumulable->GetName();
130
131 if (G4Accumulables::VerboseLevel > 1 ) {
132 G4cout << "Going to register accumulable \"" << name << "\"" << G4endl;
133 }
134
135 // do not accept name if it is already used
136 if (!CheckName(name, "RegisterAccumulable")) {
137 return false;
138 }
139
140 // generate name if empty
141 if (name.length() == 0u) {
142 name = GenerateName();
143 accumulable->SetName(name);
144 }
145
146 // set Id
147 accumulable->SetId((G4int)fVector.size());
148
149 fMap[name] = accumulable;
150 fVector.push_back(accumulable);
151
152 if (G4Accumulables::VerboseLevel > 0 ) {
153 G4cout << "Accumulable registered as \"" << accumulable->GetName() << "\"" << G4endl;
154 }
155
156 return true;
157}
G4GLOB_DLL std::ostream G4cout
void SetName(const G4String &name)
G4String GetName() const
void SetId(G4int id)

◆ RegisterAccumulable() [1/2]

template<typename T>
G4bool G4AccumulableManager::RegisterAccumulable ( G4AccValue< T > & accumulable)

◆ RegisterAccumulable() [2/2]

G4bool G4AccumulableManager::RegisterAccumulable ( G4VAccumulable * accumulable)

Definition at line 161 of file G4AccumulableManager.cc.

162{
163 return Register(accumulable);
164}
G4bool Register(G4AccValue< T > &accumulable)

◆ Reset()

void G4AccumulableManager::Reset ( )

Definition at line 240 of file G4AccumulableManager.cc.

241{
242// Reset all accummulables
243
244 for ( auto it : fVector ) {
245 it->Reset();
246 }
247}

◆ SetVerboseLevel()

void G4AccumulableManager::SetVerboseLevel ( G4int value)

Friends And Related Symbol Documentation

◆ G4ThreadLocalSingleton< G4AccumulableManager >

Definition at line 1 of file G4AccumulableManager.hh.


The documentation for this class was generated from the following files: