44#define REGREF PhysListReg
45#include "G4RegisterPhysicsConstructors.icc"
48#include "G4RegisterPhysLists.icc"
57 if (
nullptr == theInstance) {
58 theInstance =
new G4PhysListRegistry;
61 theInstance->AddPhysicsExtension(
"EM0",
"G4EmStandardPhysics");
62 theInstance->AddPhysicsExtension(
"EMV",
"G4EmStandardPhysics_option1");
63 theInstance->AddPhysicsExtension(
"EMX",
"G4EmStandardPhysics_option2");
64 theInstance->AddPhysicsExtension(
"EMY",
"G4EmStandardPhysics_option3");
65 theInstance->AddPhysicsExtension(
"EMZ",
"G4EmStandardPhysics_option4");
66 theInstance->AddPhysicsExtension(
"LIV",
"G4EmLivermorePhysics");
67 theInstance->AddPhysicsExtension(
"PEN",
"G4EmPenelopePhysics");
71 theInstance->AddPhysicsExtension(
"GS" ,
"G4EmStandardPhysicsGS");
72 theInstance->AddPhysicsExtension(
"_GS",
"G4EmStandardPhysicsGS");
73 theInstance->AddPhysicsExtension(
"SS" ,
"G4EmStandardPhysicsSS");
74 theInstance->AddPhysicsExtension(
"_SS",
"G4EmStandardPhysicsSS");
76 theInstance->AddPhysicsExtension(
"EM0",
"G4EmStandardPhysics");
77 theInstance->AddPhysicsExtension(
"WVI",
"G4EmStandardPhysicsWVI");
78 theInstance->AddPhysicsExtension(
"LE" ,
"G4EmLowEPPhysics");
79 theInstance->AddPhysicsExtension(
"_LE",
"G4EmLowEPPhysics");
81 theInstance->AddPhysicsExtension(
"HPT",
"G4ThermalNeutrons");
87G4PhysListRegistry::G4PhysListRegistry()
90 , systemDefault(
"FTFP_BERT")
101 if ( name ==
"" ) userDefault = systemDefault;
102 else userDefault = name;
107 factories[name] = factory;
113 physicsExtensions[name] = procname;
122 std::vector<G4String> physExt;
123 std::vector<G4int> physReplace;
127 std::size_t npc = physExt.size();
129 G4cout <<
"G4PhysListRegistry::GetModularPhysicsList <"
131 <<
", as \"" << plBase <<
"\" with extensions \"";
132 for ( std::size_t ipc = 0; ipc < npc; ++ipc )
139 G4cout <<
"### G4PhysListRegistry WARNING: " << name
141 if ( ! unknownFatal )
return nullptr;
144 ED <<
"The factory for the physicslist ["<< name <<
"] does not exist!"
146 if ( plBase ==
"" ) {
147 ED <<
"Could determine no sensible base physics list" <<
G4endl;
149 ED <<
"One or more of the extensions does not exist [ ";
150 for ( std::size_t ipc = 0; ipc < physExt.size(); ++ipc ) {
151 ED << physExt[ipc] <<
" ";
155 G4Exception(
"G4PhysListRegistry::GetModularPhysicsList",
168 for ( std::size_t ipc = 0; ipc < npc; ++ipc ) {
173 ((physReplace[ipc]&
isCtorName)) ? extName : physicsExtensions[extName];
180 reporreg =
"ReplacePhysics ";
183 reporreg =
"RegisterPhysics";
185 if ( verbose > 0 )
G4cout <<
"<<< " << reporreg <<
" with " << pcname
186 <<
" \"" << extName <<
"\"" <<
G4endl;
189 G4cout <<
"<<< Reference Physics List " << name <<
" is built" <<
G4endl;
202 char* path = std::getenv(
"PHYSLIST");
207 G4cout <<
"### G4PhysListRegistry WARNING: "
208 <<
" environment variable PHYSLIST is not defined"
210 <<
" Default Physics Lists " << name
211 <<
" is instantiated"
220 std::vector<G4String> physExt;
221 std::vector<G4int> physReplace;
228 std::vector<G4String>& physExt,
229 std::vector<G4int>& replace,
253 const std::vector<G4String>& availPhysCtors =
261 G4cout <<
" " << name <<
", base known=" << ((allKnown)?
"true":
"false")
262 <<
" chosen plBase \"" << plBase <<
"\"" <<
G4endl;
270 workingName.erase(0,plBase.size());
275 while ( ! workingName.empty() ) {
276 char c = workingName.data()[0];
277 if (
'_' == c ||
'+' == c ) workingName.erase(0,1);
280 G4bool extraKnown =
false;
282 extraKnown =
FindLongestMatch(workingName,
"extNames",availExtras,extraName);
286 std::map<G4String,G4String>::const_iterator itr =
287 physicsExtensions.find(extraName);
289 if ( itr != physicsExtensions.end() ) pcname = itr->second;
291 if ( ! realknown ) allKnown =
false;
294 G4cout <<
" extraName \"" << extraName <<
"\" maps to physics ctor \""
295 << pcname <<
"\" which is itself realknown " << realknown
307 G4cout <<
" physextra " << name <<
" [" << workingName <<
"]"
308 <<
", extra known " << extraKnown
309 <<
" chosen extra \"" << extraName <<
"\""
310 <<
" replace " << replaceExtra <<
G4endl;
314 physExt.push_back(extraName);
315 replace.push_back(replaceExtra);
317 workingName.erase(0,extraName.size());
322 G4cout <<
" workingName \"" << workingName <<
"\""
323 <<
" couldn't be found in the extensions list"
338 const std::vector<G4String>& validNames,
345 std::size_t n = validNames.size();
346 for (std::size_t i=0; i<n; ++i) {
347 const G4String& testName = validNames[i];
348 std::size_t ipos = workingName.find(testName);
350 std::size_t testNameSize = testName.size();
351 std::size_t workNameSize = workingName.size();
353 if ( searchName ==
"base" ) {
357 if (workNameSize > testNameSize) {
358 char nextChar = workingName[(
G4int)testNameSize];
359 if ( nextChar !=
'_' && nextChar !=
'+' ) match =
false;
361 G4cout <<
" " << searchName <<
" longer "
362 << testName <<
" nextChar " << nextChar <<
G4endl;
367 G4cout <<
" " << searchName <<
" match " << (match?
"yes":
"no")
368 <<
" " << testName <<
G4endl;
371 if ( testName.size() > bestMatch.size() ) {
372 bestMatch = testName;
375 G4cout <<
" " << searchName <<
" current best guess: "
380 G4cout <<
" " << searchName <<
" match but shorter than previous: "
386 G4cout <<
" " << searchName <<
" ipos=0 but no match "
392 G4cout <<
" " << searchName <<
" reject: " << testName <<
G4endl;
402 availBasePhysLists.clear();
403 std::map<G4String,G4VBasePhysListStamper*>::const_iterator itr;
404 for ( itr = factories.begin(); itr != factories.end(); ++itr ) {
405 availBasePhysLists.push_back(itr->first);
408 return availBasePhysLists;
413 availExtensions.clear();
414 std::map<G4String,G4String>::const_iterator itr;
415 for ( itr = physicsExtensions.begin(); itr != physicsExtensions.end(); ++itr ) {
416 availExtensions.push_back(itr->first);
419 return availExtensions;
433 G4cout <<
"Base G4VModularPhysicsLists in G4PhysListRegistry are:"
435 if ( avail.empty() )
G4cout <<
"... no registered lists" <<
G4endl;
437 std::size_t n = avail.size();
438 for (std::size_t i=0; i<n; ++i ) {
439 G4cout <<
" [" << std::setw(3) << i <<
"] "
440 <<
" \"" << avail[i] <<
"\"" <<
G4endl;
446 std::map<G4String,G4String>::const_iterator itr;
447 G4cout <<
"Replacement mappings in G4PhysListRegistry are:"
449 for ( itr = physicsExtensions.begin(); itr != physicsExtensions.end(); ++itr ) {
452 G4cout <<
" " << std::setw(10) << itr->first <<
" => "
453 << std::setw(30) << itr->second <<
" "
454 << ( (known)?
"":
"[unregistered physics]")
457 G4cout <<
"Use these mapping to extend physics list; append with _EXT or +EXT" <<
G4endl
458 <<
" to use ReplacePhysics() (\"_\") or RegisterPhysics() (\"+\")."
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
G4GLOB_DLL std::ostream G4cout
void PrintAvailablePhysLists() const
G4VModularPhysicsList * GetModularPhysicsListFromEnv()
const std::vector< G4String > & AvailablePhysLists() const
void AddFactory(G4String name, G4VBasePhysListStamper *)
void SetUserDefaultPhysList(const G4String &name="")
const std::vector< G4String > & AvailablePhysListsEM() const
const std::vector< G4String > & AvailablePhysicsExtensions() const
static G4PhysListRegistry * Instance()
G4bool DeconstructPhysListName(const G4String &name, G4String &plBase, std::vector< G4String > &physExt, std::vector< G4int > &replace, G4int verbose=0) const
G4bool IsReferencePhysList(G4String nam) const
G4VModularPhysicsList * GetModularPhysicsList(const G4String &name)
void AddPhysicsExtension(G4String name, G4String procname)
G4bool FindLongestMatch(const G4String &workName, const G4String &searchName, const std::vector< G4String > &validNames, G4String &bestMatch, G4int verbose=0) const
G4VPhysicsConstructor * GetPhysicsConstructor(const G4String &name)
static G4PhysicsConstructorRegistry * Instance()
std::vector< G4String > AvailablePhysicsConstructors() const
G4bool IsKnownPhysicsConstructor(const G4String &name)
void SetVerboseLevel(G4int value)
G4int GetVerboseLevel() const
void RegisterPhysics(G4VPhysicsConstructor *)
void ReplacePhysics(G4VPhysicsConstructor *)