54 theDirectory->SetGuidance(
"Commands for G4VUserPhysicsList.");
58 verboseCmd->SetGuidance(
"Set the Verbose level of G4VUserPhysicsList.");
59 verboseCmd->SetGuidance(
" 0 : Silent (default)");
60 verboseCmd->SetGuidance(
" 1 : Display warning messages");
61 verboseCmd->SetGuidance(
" 2 : Display more");
62 verboseCmd->SetParameterName(
"level",
true);
63 verboseCmd->SetDefaultValue(0);
64 verboseCmd->SetRange(
"level >=0 && level <=3");
68 setCutCmd->SetGuidance(
"Set default cut value ");
69 setCutCmd->SetParameterName(
"cut",
false);
70 setCutCmd->SetDefaultValue(1.0);
71 setCutCmd->SetRange(
"cut >=0.0");
72 setCutCmd->SetDefaultUnit(
"mm");
76 setCutForAGivenParticleCmd =
new G4UIcommand(
"/run/setCutForAGivenParticle",
this);
77 setCutForAGivenParticleCmd->SetGuidance(
"Set a cut value to a specific particle ");
78 setCutForAGivenParticleCmd->SetGuidance(
"Usage: /run/setCutForAGivenParticle gamma 1. mm");
81 setCutForAGivenParticleCmd->SetParameter(param);
85 setCutForAGivenParticleCmd->SetParameter(param);
88 setCutForAGivenParticleCmd->SetParameter(param);
92 getCutForAGivenParticleCmd =
new G4UIcmdWithAString(
"/run/getCutForAGivenParticle",
this);
93 getCutForAGivenParticleCmd->SetGuidance(
"Get a cut value to a specific particle ");
94 getCutForAGivenParticleCmd->SetGuidance(
"Usage: /run/getCutForAGivenParticle gamma ");
95 getCutForAGivenParticleCmd->SetParameterName(
"particleName",
false,
false);
96 getCutForAGivenParticleCmd->SetCandidates(
"e- e+ gamma proton");
101 setCutRCmd =
new G4UIcommand(
"/run/setCutForRegion",
this);
102 setCutRCmd->SetGuidance(
"Set cut value for a region");
104 setCutRCmd->SetParameter(param);
107 setCutRCmd->SetParameter(param);
111 setCutRCmd->SetParameter(param);
116 dumpListCmd->SetGuidance(
"Dump List of particles in G4VUserPhysicsList. ");
120 addProcManCmd->SetToBeBroadcasted(
false);
121 addProcManCmd->SetGuidance(
"add process manager to specified particle type");
122 addProcManCmd->SetParameterName(
"particleType",
true);
123 addProcManCmd->SetDefaultValue(
"");
129 buildPTCmd->SetGuidance(
"build physics table of specified particle type");
130 buildPTCmd->SetParameterName(
"particleType",
true);
131 buildPTCmd->SetDefaultValue(
"");
136 storeCmd->SetGuidance(
"Store Physics Table");
137 storeCmd->SetGuidance(
" Enter directory name");
138 storeCmd->SetParameterName(
"dirName",
true);
139 storeCmd->SetDefaultValue(
"");
144 retrieveCmd->SetGuidance(
"Retrieve Physics Table");
145 retrieveCmd->SetGuidance(
" Enter directory name or OFF to switch off");
146 retrieveCmd->SetParameterName(
"dirName",
true);
147 retrieveCmd->SetDefaultValue(
"");
152 asciiCmd->SetGuidance(
"Switch on/off ascii mode in store/retrieve Physics Table");
153 asciiCmd->SetGuidance(
" Enter 0(binary) or 1(ascii)");
154 asciiCmd->SetParameterName(
"ascii",
true);
155 asciiCmd->SetDefaultValue(0);
157 asciiCmd->SetRange(
"ascii ==0 || ascii ==1");
160 applyCutsCmd =
new G4UIcommand(
"/run/particle/applyCuts",
this);
161 applyCutsCmd->SetGuidance(
"Set applyCuts flag for a particle.");
162 applyCutsCmd->SetGuidance(
" Some EM processes which do not have infrared divergence");
163 applyCutsCmd->SetGuidance(
"may generate gamma, e- and/or e+ with kinetic energies");
164 applyCutsCmd->SetGuidance(
"below the production threshold. By setting this flag,");
165 applyCutsCmd->SetGuidance(
"such secondaries below threshold are eliminated and");
166 applyCutsCmd->SetGuidance(
"kinetic energies of such secondaries are accumulated");
167 applyCutsCmd->SetGuidance(
"to the energy deposition of their mother.");
168 applyCutsCmd->SetGuidance(
" Note that 'applyCuts' makes sense only for gamma,");
169 applyCutsCmd->SetGuidance(
"e- and e+. If this command is issued for other particle,");
170 applyCutsCmd->SetGuidance(
"a warning message is displayed and the command is");
171 applyCutsCmd->SetGuidance(
"ignored.");
172 applyCutsCmd->SetGuidance(
" If particle name is 'all', this command affects on");
173 applyCutsCmd->SetGuidance(
"gamma, e- and e+.");
176 applyCutsCmd->SetParameter(param);
179 applyCutsCmd->SetParameter(param);
184 dumpCutValuesCmd->SetGuidance(
"Dump a list of production threshold values in range and energy");
185 dumpCutValuesCmd->SetGuidance(
"for all registered material-cuts-couples.");
186 dumpCutValuesCmd->SetGuidance(
"Dumping a list takes place when you issue 'beamOn' and");
187 dumpCutValuesCmd->SetGuidance(
"actual conversion tables from range to energy are available.");
188 dumpCutValuesCmd->SetGuidance(
189 "If you want a list 'immediately', use '/run/dumpRegion' for threshold");
190 dumpCutValuesCmd->SetGuidance(
"list given in range only. Also, '/run/dumpCouples' gives you the");
191 dumpCutValuesCmd->SetGuidance(
192 "current list if you have already issued 'run/beamOn' at least once.");
193 dumpCutValuesCmd->SetParameterName(
"particle",
true);
194 dumpCutValuesCmd->SetDefaultValue(
"all");
199 dumpOrdParamCmd->SetGuidance(
"Dump a list of ordering parameter ");
200 dumpOrdParamCmd->SetParameterName(
"subtype",
true);
201 dumpOrdParamCmd->SetDefaultValue(-1);
229 if (command == setCutCmd) {
230 G4double newCut = setCutCmd->GetNewDoubleValue(newValue);
234 else if (command == setCutForAGivenParticleCmd) {
237 std::istringstream str(newValue);
238 str >> particleName >> cut >> unit;
241 else if (command == getCutForAGivenParticleCmd) {
244 else if (command == setCutRCmd) {
245 std::istringstream is(newValue);
249 is >> regName >> cVal >> uniName;
251 ed <<
"illegal arguments : " << newValue;
255 thePhysicsList->SetCutsForRegion(cVal * (setCutRCmd->ValueOf(uniName)), regName);
257 else if (command == verboseCmd) {
258 thePhysicsList->SetVerboseLevel(verboseCmd->GetNewIntValue(newValue));
260 else if (command == dumpListCmd) {
263 else if (command == dumpOrdParamCmd) {
264 G4int stype = dumpOrdParamCmd->GetNewIntValue(newValue);
267 else if (command == addProcManCmd) {
269 if (particle ==
nullptr) {
270 ed <<
" Particle is not found : " << newValue;
275 ed <<
" Particle is not initialized : " << newValue;
281 else if (command == buildPTCmd) {
283 if (particle ==
nullptr) {
284 ed <<
" Particle is not found : " << newValue;
291 else if (command == storeCmd) {
294 else if (command == retrieveCmd) {
295 if ((newValue ==
"OFF") || (newValue ==
"off")) {
302 else if (command == asciiCmd) {
303 if (asciiCmd->GetNewIntValue(newValue) == 0) {
310 else if (command == applyCutsCmd) {
315 G4bool flag = (temp ==
"true" || temp ==
"TRUE");
322 else if (command == dumpCutValuesCmd) {
334 if (command == setCutCmd) {
335 cv = setCutCmd->ConvertToString(
thePhysicsList->GetDefaultCutValue(),
"mm");
337 else if (command == verboseCmd) {
338 cv = verboseCmd->ConvertToString(
thePhysicsList->GetVerboseLevel());
340 else if (command == addProcManCmd) {
347 addProcManCmd->SetCandidates(candidates);
350 else if (command == buildPTCmd) {
357 addProcManCmd->SetCandidates(candidates);
360 else if (command == storeCmd) {
363 else if (command == retrieveCmd) {
371 else if (command == asciiCmd) {
G4PTblDicIterator * GetIterator() const
static G4ParticleTable * GetParticleTable()