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

#include <G4PhysListFactory.hh>

Public Member Functions

 G4PhysListFactory ()
 
 ~G4PhysListFactory ()
 
G4VModularPhysicsListGetReferencePhysList (const G4String &)
 
G4VModularPhysicsListReferencePhysList ()
 
G4bool IsReferencePhysList (const G4String &)
 
const std::vector< G4String > & AvailablePhysLists () const
 
const std::vector< G4String > & AvailablePhysListsEM () const
 
void SetVerbose (G4int val)
 

Detailed Description

Definition at line 45 of file G4PhysListFactory.hh.

Constructor & Destructor Documentation

◆ G4PhysListFactory()

G4PhysListFactory::G4PhysListFactory ( )

Definition at line 79 of file G4PhysListFactory.cc.

80 : defName("FTFP_BERT"),verbose(1),theMessenger(nullptr)
81{
82 nlists_hadr = 23;
83 G4String ss[23] = {
84 "FTFP_BERT","FTFP_BERT_TRV","FTFP_BERT_ATL","FTFP_BERT_HP","FTFQGSP_BERT",
85 "FTFP_INCLXX","FTFP_INCLXX_HP","FTF_BIC", "LBE","QBBC",
86 "QGSP_BERT","QGSP_BERT_HP","QGSP_BIC","QGSP_BIC_HP","QGSP_BIC_AllHP",
87 "QGSP_FTFP_BERT","QGSP_INCLXX","QGSP_INCLXX_HP","QGS_BIC",
88 "Shielding","ShieldingLEND","ShieldingM","NuBeam"};
89 for(size_t i=0; i<nlists_hadr; ++i) {
90 listnames_hadr.push_back(ss[i]);
91 }
92
93 nlists_em = 12;
94 G4String s1[12] = {"","_EMV","_EMX","_EMY","_EMZ","_LIV","_PEN",
95 "__GS","__SS","_EM0","_WVI","__LE"};
96 for(size_t i=0; i<nlists_em; ++i) {
97 listnames_em.push_back(s1[i]);
98 }
99}

◆ ~G4PhysListFactory()

G4PhysListFactory::~G4PhysListFactory ( )

Definition at line 101 of file G4PhysListFactory.cc.

102{
103 delete theMessenger;
104}

Member Function Documentation

◆ AvailablePhysLists()

const std::vector< G4String > & G4PhysListFactory::AvailablePhysLists ( ) const

Definition at line 246 of file G4PhysListFactory.cc.

247{
248 return listnames_hadr;
249}

◆ AvailablePhysListsEM()

const std::vector< G4String > & G4PhysListFactory::AvailablePhysListsEM ( ) const

Definition at line 252 of file G4PhysListFactory.cc.

253{
254 return listnames_em;
255}

◆ GetReferencePhysList()

G4VModularPhysicsList * G4PhysListFactory::GetReferencePhysList ( const G4String name)

Definition at line 127 of file G4PhysListFactory.cc.

128{
129 // analysis on the string
130 size_t n = name.size();
131
132 // last characters in the string
133 size_t em_opt = 0;
134 G4String em_name = "";
135
136 // check EM options
137 if(n > 4) {
138 em_name = name.substr(n - 4, 4);
139 for(size_t i=1; i<nlists_em; ++i) {
140 if(listnames_em[i] == em_name) {
141 em_opt = i;
142 n -= 4;
143 break;
144 }
145 }
146 if(0 == em_opt) { em_name = ""; }
147 }
148
149 // hadronic pHysics List
150 G4String had_name = name.substr(0, n);
151
152 if(0 < verbose) {
153 G4cout << "G4PhysListFactory::GetReferencePhysList <" << had_name
154 << em_name << "> EMoption= " << em_opt << G4endl;
155 }
156 G4VModularPhysicsList* p = nullptr;
157 if(had_name == "FTFP_BERT") {p = new FTFP_BERT(verbose);}
158 else if(had_name == "FTFP_BERT_HP") {p = new FTFP_BERT_HP(verbose);}
159 else if(had_name == "FTFP_BERT_TRV") {p = new FTFP_BERT_TRV(verbose);}
160 else if(had_name == "FTFP_BERT_ATL") {p = new FTFP_BERT_ATL(verbose);}
161 else if(had_name == "FTFQGSP_BERT") {p = new FTFQGSP_BERT(verbose);}
162 else if(had_name == "FTFP_INCLXX") {p = new FTFP_INCLXX(verbose);}
163 else if(had_name == "FTFP_INCLXX_HP") {p = new FTFP_INCLXX_HP(verbose);}
164 else if(had_name == "FTF_BIC") {p = new FTF_BIC(verbose);}
165 else if(had_name == "LBE") {p = new LBE();}
166 else if(had_name == "QBBC") {p = new QBBC(verbose);}
167 else if(had_name == "QGSP_BERT") {p = new QGSP_BERT(verbose);}
168 else if(had_name == "QGSP_BERT_HP") {p = new QGSP_BERT_HP(verbose);}
169 else if(had_name == "QGSP_BIC") {p = new QGSP_BIC(verbose);}
170 else if(had_name == "QGSP_BIC_HP") {p = new QGSP_BIC_HP(verbose);}
171 else if(had_name == "QGSP_BIC_AllHP") {p = new QGSP_BIC_AllHP(verbose);}
172 else if(had_name == "QGSP_FTFP_BERT") {p = new QGSP_FTFP_BERT(verbose);}
173 else if(had_name == "QGSP_INCLXX") {p = new QGSP_INCLXX(verbose);}
174 else if(had_name == "QGSP_INCLXX_HP") {p = new QGSP_INCLXX_HP(verbose);}
175 else if(had_name == "QGS_BIC") {p = new QGS_BIC(verbose);}
176 else if(had_name == "Shielding") {p = new Shielding(verbose);}
177 else if(had_name == "ShieldingLEND") {p = new ShieldingLEND(verbose);}
178 else if(had_name == "ShieldingM") {p = new Shielding(verbose,"HP","M");}
179 else if(had_name == "NuBeam") {p = new NuBeam(verbose);}
180 else {
181 G4cout << "### G4PhysListFactory WARNING: "
182 << "PhysicsList " << had_name << " is not known"
183 << G4endl;
184 }
185 if(p) {
186 G4cout << "<<< Reference Physics List " << had_name
187 << em_name << " is built" << G4endl;
188 G4int ver = p->GetVerboseLevel();
189 p->SetVerboseLevel(0);
190 if(0 < em_opt && had_name != "LBE") {
191 if(1 == em_opt) {
193 } else if(2 == em_opt) {
195 } else if(3 == em_opt) {
197 } else if(4 == em_opt) {
199 } else if(5 == em_opt) {
200 p->ReplacePhysics(new G4EmLivermorePhysics(verbose));
201 } else if(6 == em_opt) {
202 p->ReplacePhysics(new G4EmPenelopePhysics(verbose));
203 } else if(7 == em_opt) {
204 p->ReplacePhysics(new G4EmStandardPhysicsGS(verbose));
205 } else if(8 == em_opt) {
206 p->ReplacePhysics(new G4EmStandardPhysicsSS(verbose));
207 } else if(9 == em_opt) {
208 p->ReplacePhysics(new G4EmStandardPhysics(verbose));
209 } else if(10 == em_opt) {
210 p->ReplacePhysics(new G4EmStandardPhysicsWVI(verbose));
211 } else if(11 == em_opt) {
212 p->ReplacePhysics(new G4EmLowEPPhysics(verbose));
213 }
214 }
215 p->SetVerboseLevel(ver);
216 theMessenger = new G4PhysListFactoryMessenger(p);
217 }
218 G4cout << G4endl;
219 return p;
220}
TINCLXXPhysicsListHelper< G4VModularPhysicsList, false, true > FTFP_INCLXX
Definition: FTFP_INCLXX.hh:40
TINCLXXPhysicsListHelper< G4VModularPhysicsList, true, true > FTFP_INCLXX_HP
int G4int
Definition: G4Types.hh:85
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
TINCLXXPhysicsListHelper< G4VModularPhysicsList, true, false > QGSP_INCLXX_HP
TINCLXXPhysicsListHelper< G4VModularPhysicsList, false, false > QGSP_INCLXX
void SetVerboseLevel(G4int value)
void ReplacePhysics(G4VPhysicsConstructor *)
Definition: LBE.hh:59
Definition: NuBeam.hh:42
Definition: QBBC.hh:44
const char * name(G4int ptype)

Referenced by ReferencePhysList().

◆ IsReferencePhysList()

G4bool G4PhysListFactory::IsReferencePhysList ( const G4String name)

Definition at line 222 of file G4PhysListFactory.cc.

223{
224 G4bool res = false;
225 size_t n = name.size();
226 if(n > 4) {
227 G4String em_name = name.substr(n - 4, 4);
228 for(size_t i=1; i<nlists_em; ++i) {
229 if(listnames_em[i] == em_name) {
230 n -= 4;
231 break;
232 }
233 }
234 }
235 G4String had_name = name.substr(0, n);
236 for(size_t i=0; i<nlists_hadr; ++i) {
237 if(had_name == listnames_hadr[i]) {
238 res = true;
239 break;
240 }
241 }
242 return res;
243}
bool G4bool
Definition: G4Types.hh:86

◆ ReferencePhysList()

G4VModularPhysicsList * G4PhysListFactory::ReferencePhysList ( )

Definition at line 107 of file G4PhysListFactory.cc.

108{
109 // instantiate PhysList by environment variable "PHYSLIST"
110 G4String name = "";
111 char* path = std::getenv("PHYSLIST");
112 if (path) {
113 name = G4String(path);
114 } else {
115 name = defName;
116 G4cout << "### G4PhysListFactory WARNING: "
117 << " environment variable PHYSLIST is not defined"
118 << G4endl
119 << " Default Physics Lists " << name
120 << " is instantiated"
121 << G4endl;
122 }
123 return GetReferencePhysList(name);
124}
G4VModularPhysicsList * GetReferencePhysList(const G4String &)

◆ SetVerbose()

void G4PhysListFactory::SetVerbose ( G4int  val)
inline

Definition at line 68 of file G4PhysListFactory.hh.

68{ verbose = val; }

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