Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
|
#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 |
G4VAccumulable * | GetAccumulable (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 |
G4VAccumulable * | GetAccumulable (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 G4AccumulableManager * | Instance () |
Friends | |
class | G4ThreadLocalSingleton< G4AccumulableManager > |
Definition at line 54 of file G4AccumulableManager.hh.
|
virtual |
Definition at line 66 of file G4AccumulableManager.cc.
std::vector< G4VAccumulable * >::iterator G4AccumulableManager::Begin | ( | ) |
std::vector< G4VAccumulable * >::const_iterator G4AccumulableManager::BeginConst | ( | ) | const |
G4AccValue< T > * G4AccumulableManager::CreateAccumulable | ( | const G4String & | name, |
T | value, | ||
G4MergeMode | mergeMode = G4MergeMode::kAddition ) |
G4AccValue< T > * G4AccumulableManager::CreateAccumulable | ( | T | value, |
G4MergeMode | mergeMode = G4MergeMode::kAddition ) |
G4AccValue< T > * G4AccumulableManager::CreateAccValue | ( | const G4String & | name, |
T | value, | ||
G4MergeMode | mergeMode = G4MergeMode::kAddition ) |
G4AccValue< T > * G4AccumulableManager::CreateAccValue | ( | T | value, |
G4MergeMode | mergeMode = G4MergeMode::kAddition ) |
std::vector< G4VAccumulable * >::iterator G4AccumulableManager::End | ( | ) |
std::vector< G4VAccumulable * >::const_iterator G4AccumulableManager::EndConst | ( | ) | const |
G4AccArray< T, N > * G4AccumulableManager::GetAccArray | ( | const G4String & | name, |
G4bool | warn = true ) const |
G4AccArray< T, N > * G4AccumulableManager::GetAccArray | ( | G4int | id, |
G4bool | warn = true ) const |
G4AccMap< Key, T, Compare, Allocator > * G4AccumulableManager::GetAccMap | ( | const G4String & | name, |
G4bool | warn = true ) const |
G4AccMap< Key, T, Compare, Allocator > * G4AccumulableManager::GetAccMap | ( | G4int | id, |
G4bool | warn = true ) const |
G4VAccumulable * G4AccumulableManager::GetAccumulable | ( | const G4String & | name, |
G4bool | warn = true ) const |
Definition at line 168 of file G4AccumulableManager.cc.
G4AccValue< T > * G4AccumulableManager::GetAccumulable | ( | const G4String & | name, |
G4bool | warn = true ) const |
G4VAccumulable * G4AccumulableManager::GetAccumulable | ( | G4int | id, |
G4bool | warn = true ) const |
Definition at line 187 of file G4AccumulableManager.cc.
G4AccValue< T > * G4AccumulableManager::GetAccumulable | ( | G4int | id, |
G4bool | warn = true ) const |
G4AccUnorderedMap< Key, T, Hash, KeyEqual, Allocator > * G4AccumulableManager::GetAccUnorderedMap | ( | const G4String & | name, |
G4bool | warn = true ) const |
G4AccUnorderedMap< Key, T, Hash, KeyEqual, Allocator > * G4AccumulableManager::GetAccUnorderedMap | ( | G4int | id, |
G4bool | warn = true ) const |
G4AccValue< T > * G4AccumulableManager::GetAccValue | ( | const G4String & | name, |
G4bool | warn = true ) const |
G4AccValue< T > * G4AccumulableManager::GetAccValue | ( | G4int | id, |
G4bool | warn = true ) const |
G4AccVector< T, Allocator > * G4AccumulableManager::GetAccVector | ( | const G4String & | name, |
G4bool | warn = true ) const |
G4AccVector< T, Allocator > * G4AccumulableManager::GetAccVector | ( | G4int | id, |
G4bool | warn = true ) const |
G4int G4AccumulableManager::GetNofAccumulables | ( | ) | const |
G4int G4AccumulableManager::GetVerboseLevel | ( | ) | const |
|
static |
Definition at line 51 of file G4AccumulableManager.cc.
void G4AccumulableManager::Merge | ( | ) |
Definition at line 204 of file G4AccumulableManager.cc.
void G4AccumulableManager::Print | ( | G4int | startId, |
G4int | count, | ||
G4PrintOptions | options = G4PrintOptions() ) const |
Definition at line 258 of file G4AccumulableManager.cc.
void G4AccumulableManager::Print | ( | G4PrintOptions | options = G4PrintOptions() | ) | const |
Definition at line 250 of file G4AccumulableManager.cc.
Referenced by Print().
void G4AccumulableManager::Print | ( | std::vector< G4VAccumulable * >::iterator | startIt, |
std::size_t | count, | ||
G4PrintOptions | options = G4PrintOptions() ) const |
Definition at line 292 of file G4AccumulableManager.cc.
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.
G4bool G4AccumulableManager::Register | ( | G4AccArray< T, N > & | accumulableArray | ) |
G4bool G4AccumulableManager::Register | ( | G4AccMap< Key, T, Compare, Allocator > & | accumulableMap | ) |
G4bool G4AccumulableManager::Register | ( | G4AccUnorderedMap< Key, T, Hash, KeyEqual, Allocator > & | accumulableUnorderedMap | ) |
G4bool G4AccumulableManager::Register | ( | G4AccValue< T > & | accumulable | ) |
Referenced by RegisterAccumulable().
G4bool G4AccumulableManager::Register | ( | G4AccVector< T, Allocator > & | accumulableVector | ) |
G4bool G4AccumulableManager::Register | ( | G4VAccumulable * | accumulable | ) |
Definition at line 127 of file G4AccumulableManager.cc.
G4bool G4AccumulableManager::RegisterAccumulable | ( | G4AccValue< T > & | accumulable | ) |
G4bool G4AccumulableManager::RegisterAccumulable | ( | G4VAccumulable * | accumulable | ) |
Definition at line 161 of file G4AccumulableManager.cc.
void G4AccumulableManager::Reset | ( | ) |
Definition at line 240 of file G4AccumulableManager.cc.
void G4AccumulableManager::SetVerboseLevel | ( | G4int | value | ) |
|
friend |
Definition at line 1 of file G4AccumulableManager.hh.