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

#include <G4PhysicsConstructorRegistry.hh>

Public Member Functions

 ~G4PhysicsConstructorRegistry ()
 
void Register (G4VPhysicsConstructor *)
 
void DeRegister (G4VPhysicsConstructor *)
 
void Clean ()
 
void AddFactory (G4String, G4VBasePhysConstrFactory *)
 
G4VPhysicsConstructorGetPhysicsConstructor (const G4String &name)
 
G4bool IsKnownPhysicsConstructor (const G4String &name)
 
std::vector< G4StringAvailablePhysicsConstructors () const
 
void PrintAvailablePhysicsConstructors () const
 

Static Public Member Functions

static G4PhysicsConstructorRegistryInstance ()
 

Friends

class G4ThreadLocalSingleton< G4PhysicsConstructorRegistry >
 

Detailed Description

Definition at line 56 of file G4PhysicsConstructorRegistry.hh.

Constructor & Destructor Documentation

◆ ~G4PhysicsConstructorRegistry()

G4PhysicsConstructorRegistry::~G4PhysicsConstructorRegistry ( )

Member Function Documentation

◆ AddFactory()

void G4PhysicsConstructorRegistry::AddFactory ( G4String name,
G4VBasePhysConstrFactory * factory )

Definition at line 90 of file G4PhysicsConstructorRegistry.cc.

91{
92 factories[name] = factory;
93}
const char * name(G4int ptype)

Referenced by G4PhysicsConstructorFactory< T >::G4PhysicsConstructorFactory().

◆ AvailablePhysicsConstructors()

std::vector< G4String > G4PhysicsConstructorRegistry::AvailablePhysicsConstructors ( ) const

Definition at line 122 of file G4PhysicsConstructorRegistry.cc.

123{
124 std::vector<G4String> avail;
125 std::map<G4String,G4VBasePhysConstrFactory*>::const_iterator itr;
126 for ( itr = factories.begin(); itr != factories.end(); ++itr ) {
127 avail.push_back(itr->first);
128 }
129
130 return avail;
131}

Referenced by G4PhysListRegistry::DeconstructPhysListName(), and PrintAvailablePhysicsConstructors().

◆ Clean()

void G4PhysicsConstructorRegistry::Clean ( )

Definition at line 65 of file G4PhysicsConstructorRegistry.cc.

66{
67 for (auto const & ptr : physConstr) { delete ptr; }
68 physConstr.clear();
69}

Referenced by ~G4PhysicsConstructorRegistry().

◆ DeRegister()

void G4PhysicsConstructorRegistry::DeRegister ( G4VPhysicsConstructor * p)

Definition at line 78 of file G4PhysicsConstructorRegistry.cc.

79{
80 if (nullptr == p || physConstr.empty()) { return; }
81 std::size_t n = physConstr.size();
82 for (std::size_t i=0; i<n; ++i) {
83 if ( physConstr[i] == p ) {
84 physConstr[i] = nullptr;
85 return;
86 }
87 }
88}

◆ GetPhysicsConstructor()

G4VPhysicsConstructor * G4PhysicsConstructorRegistry::GetPhysicsConstructor ( const G4String & name)

Definition at line 95 of file G4PhysicsConstructorRegistry.cc.

96{
97 // check if factory exists...
98 //
99 if (factories.find(name)!=factories.end())
100 {
101 // we could store the list of called factories in some vector and
102 // before returning we can could first check if this physics constructor was already instantiated
103 // if yes, we can throw an exception saying that this physics can been already registered
104
105 return factories[name]->Instantiate();
106 }
107 else
108 {
110 ED << "The factory for the physics constructor ["<< name << "] does not exist!" << G4endl;
111 G4Exception("G4PhysicsConstructorRegistry::GetPhysicsConstructor", "PhysicsList001", FatalException, ED);
112 return nullptr;
113 }
114}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
#define G4endl
Definition G4ios.hh:67

Referenced by G4PhysListRegistry::GetModularPhysicsList().

◆ Instance()

G4PhysicsConstructorRegistry * G4PhysicsConstructorRegistry::Instance ( )
static

◆ IsKnownPhysicsConstructor()

G4bool G4PhysicsConstructorRegistry::IsKnownPhysicsConstructor ( const G4String & name)

Definition at line 116 of file G4PhysicsConstructorRegistry.cc.

117{
118 return ( factories.find(name) != factories.end() );
119}

Referenced by G4PhysListRegistry::DeconstructPhysListName(), and G4PhysListRegistry::PrintAvailablePhysLists().

◆ PrintAvailablePhysicsConstructors()

void G4PhysicsConstructorRegistry::PrintAvailablePhysicsConstructors ( ) const

Definition at line 133 of file G4PhysicsConstructorRegistry.cc.

134{
135 std::vector<G4String> avail = AvailablePhysicsConstructors();
136 G4cout << "G4VPhysicsConstructors in G4PhysicsConstructorRegistry are:"
137 << G4endl;
138 if ( avail.empty() ) G4cout << "... no registered processes" << G4endl;
139 else {
140 std::size_t n = avail.size();
141 for (std::size_t i=0; i<n; ++i ) {
142 G4cout << " [" << std::setw(3) << i << "] "
143 << " \"" << avail[i] << "\"" << G4endl;
144 }
145 }
146}
G4GLOB_DLL std::ostream G4cout
std::vector< G4String > AvailablePhysicsConstructors() const

◆ Register()

void G4PhysicsConstructorRegistry::Register ( G4VPhysicsConstructor * p)

Definition at line 71 of file G4PhysicsConstructorRegistry.cc.

72{
73 if (nullptr == p) { return; }
74 for (auto const & ptr : physConstr) { if (p == ptr) { return; } }
75 physConstr.push_back(p);
76}

Friends And Related Symbol Documentation

◆ G4ThreadLocalSingleton< G4PhysicsConstructorRegistry >

Definition at line 1 of file G4PhysicsConstructorRegistry.hh.


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