39#define G4PhysicsConstructorRegistry_cc 1
50 if (
nullptr == theInstance) {
57G4PhysicsConstructorRegistry::G4PhysicsConstructorRegistry()
67 for (
auto const & ptr : physConstr) {
delete ptr; }
73 if (
nullptr == p) {
return; }
74 for (
auto const & ptr : physConstr) {
if (p == ptr) {
return; } }
75 physConstr.push_back(p);
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;
92 factories[name] = factory;
99 if (factories.find(name)!=factories.end())
105 return factories[name]->Instantiate();
110 ED <<
"The factory for the physics constructor ["<< name <<
"] does not exist!" <<
G4endl;
118 return ( factories.find(name) != factories.end() );
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);
136 G4cout <<
"G4VPhysicsConstructors in G4PhysicsConstructorRegistry are:"
138 if ( avail.empty() )
G4cout <<
"... no registered processes" <<
G4endl;
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;
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
G4GLOB_DLL std::ostream G4cout
~G4PhysicsConstructorRegistry()
void DeRegister(G4VPhysicsConstructor *)
void AddFactory(G4String, G4VBasePhysConstrFactory *)
G4VPhysicsConstructor * GetPhysicsConstructor(const G4String &name)
void PrintAvailablePhysicsConstructors() const
void Register(G4VPhysicsConstructor *)
static G4PhysicsConstructorRegistry * Instance()
std::vector< G4String > AvailablePhysicsConstructors() const
G4bool IsKnownPhysicsConstructor(const G4String &name)