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

Functions

G4MergeMode GetMergeMode (const G4String &mergeModeName)
 
template<typename T>
G4MergeFunction< T > GetMergeFunction (G4MergeMode mergeMode)
 
template<G4bool>
G4MergeFunction< G4boolGetMergeFunction (G4MergeMode mergeMode)
 

Variables

constexpr G4int kInvalidId { -1 }
 

Function Documentation

◆ GetMergeFunction() [1/2]

template<typename T>
G4MergeFunction< T > G4Accumulables::GetMergeFunction ( G4MergeMode mergeMode)

Definition at line 57 of file G4MergeMode.hh.

58{
59 switch ( mergeMode ) {
61 return std::plus<T>();
62
64 return std::multiplies<T>();
65
67 return [](const T& x, const T& y) { return std::max(x,y); };
68
70 return [](const T& x, const T& y) { return std::min(x,y); };
71 }
72
73 // Must never get here, but we need a return to satisfy MSVC
74 G4Exception("G4Accumulables::GetMergeFunction<T>",
75 "Analysis_F001", FatalException,
76 "Undefined merge mode");
77 return [](const T&, const T&) { return T(); };
78}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)

◆ GetMergeFunction() [2/2]

template<G4bool>
G4MergeFunction< G4bool > G4Accumulables::GetMergeFunction ( G4MergeMode mergeMode)

Definition at line 81 of file G4MergeMode.hh.

82{
83 switch ( mergeMode ) {
86 // return std::bind([](const T& x, const T& y) { return x + y; });
87 return [](const G4bool& x, const G4bool& y) { return x || y; };
88
91 return [](const G4bool& x, const G4bool& y) { return x && y; };
92 }
93}
bool G4bool
Definition G4Types.hh:86

◆ GetMergeMode()

G4MergeMode G4Accumulables::GetMergeMode ( const G4String & mergeModeName)

Definition at line 35 of file G4MergeMode.cc.

36{
37 if (mergeModeName == "+") {
39 }
40 if (mergeModeName == "*") {
42 }
43
44 G4ExceptionDescription description;
45 description << "\"" << mergeModeName << "\" merge mode is not supported." << G4endl
46 << "Addition will be applied.";
47 G4Exception("G4Analysis::GetMergeMode", "Analysis_W001", JustWarning, description);
49}
@ JustWarning
std::ostringstream G4ExceptionDescription
#define G4endl
Definition G4ios.hh:67

Variable Documentation

◆ kInvalidId

G4int G4Accumulables::kInvalidId { -1 }
constexpr

Definition at line 90 of file G4AccType.hh.

90{ -1 };