68 if ( theInstance ==
nullptr )
69 theInstance =
new G4GeneralParticleSourceMessenger(psc);
76 if ( theInstance !=
nullptr )
79 theInstance =
nullptr;
85G4GeneralParticleSourceMessenger::
112 gpsDirectory->
SetGuidance(
"General Particle Source control commands.");
117 sourceDirectory->
SetGuidance(
"Multiple source control sub-directory");
120 addsourceCmd->
SetGuidance(
"Add a new source definition to the particle gun");
121 addsourceCmd->
SetGuidance(
" with the specified intensity");
123 addsourceCmd->
SetRange(
"addsource > 0.");
126 listsourceCmd->
SetGuidance(
"List the defined particle sources");
129 clearsourceCmd->
SetGuidance(
"Remove all the defined particle sources");
132 getsourceCmd->
SetGuidance(
"Show the current source index and intensity");
135 setsourceCmd->
SetGuidance(
"Set the indexed source as the current one");
136 setsourceCmd->
SetGuidance(
" so one can change its source definition");
138 setsourceCmd->
SetRange(
"setsource >= 0");
141 deletesourceCmd->
SetGuidance(
"Delete the indexed source from the list");
143 deletesourceCmd->
SetRange(
"deletesource > 0");
146 setintensityCmd->
SetGuidance(
"Reset the current source to the specified intensity");
148 setintensityCmd->
SetRange(
"setintensity > 0.");
150 multiplevertexCmd =
new G4UIcmdWithABool(
"/gps/source/multiplevertex",
this);
151 multiplevertexCmd->
SetGuidance(
"True for simultaneous generation multiple vertex");
152 multiplevertexCmd->
SetGuidance(
" Default is false");
157 flatsamplingCmd->
SetGuidance(
"True for applying flat (biased) sampling among the sources");
169 particleCmd->
SetGuidance(
"Set particle to be generated.");
170 particleCmd->
SetGuidance(
" (geantino is default)");
171 particleCmd->
SetGuidance(
" (ion can be specified for shooting ions)");
176 for(
G4int i=0; i<nPtcl; ++i)
179 candidateList +=
" ";
181 candidateList +=
"ion ";
182 particleCmd->SetCandidates(candidateList);
184 directionCmd =
new G4UIcmdWith3Vector(
"/gps/direction",
this);
185 directionCmd->SetGuidance(
"Set momentum direction.");
186 directionCmd->SetGuidance(
" Direction needs not to be a unit vector.");
187 directionCmd->SetGuidance(
" Angular distribution type is set to planar.");
188 directionCmd->SetParameterName(
"Px",
"Py",
"Pz",
false,
false);
189 directionCmd->SetRange(
"Px != 0 || Py != 0 || Pz != 0");
191 energyCmd =
new G4UIcmdWithADoubleAndUnit(
"/gps/energy",
this);
192 energyCmd->SetGuidance(
"Set kinetic energy.");
193 energyCmd->SetParameterName(
"Energy",
false,
false);
194 energyCmd->SetDefaultUnit(
"GeV");
198 positionCmd =
new G4UIcmdWith3VectorAndUnit(
"/gps/position",
this);
199 positionCmd->SetGuidance(
"Set starting position of the particle for a Point like source.");
200 positionCmd->SetGuidance(
" Same effect as the two /gps/pos/type Point /gps/pos/centre commands.");
201 positionCmd->SetParameterName(
"X",
"Y",
"Z",
false,
false);
202 positionCmd->SetDefaultUnit(
"cm");
206 ionCmd =
new G4UIcommand(
"/gps/ion",
this);
207 ionCmd->SetGuidance(
"Set properties of ion to be generated.");
208 ionCmd->SetGuidance(
"[usage] /gps/ion Z A Q E");
209 ionCmd->SetGuidance(
" Z:(int) AtomicNumber");
210 ionCmd->SetGuidance(
" A:(int) AtomicMass");
211 ionCmd->SetGuidance(
" Q:(int) Charge of Ion (in unit of e)");
212 ionCmd->SetGuidance(
" E:(double) Excitation energy (in keV)");
214 G4UIparameter* param;
215 param =
new G4UIparameter(
"Z",
'i',
false);
217 ionCmd->SetParameter(param);
218 param =
new G4UIparameter(
"A",
'i',
false);
220 ionCmd->SetParameter(param);
221 param =
new G4UIparameter(
"Q",
'i',
true);
223 ionCmd->SetParameter(param);
224 param =
new G4UIparameter(
"E",
'd',
true);
226 ionCmd->SetParameter(param);
228 ionLvlCmd =
new G4UIcommand(
"/gps/ionLvl",
this);
229 ionLvlCmd->SetGuidance(
"Set properties of ion to be generated.");
230 ionLvlCmd->SetGuidance(
"[usage] /gps/ion Z A Q Lvl");
231 ionLvlCmd->SetGuidance(
" Z:(int) AtomicNumber");
232 ionLvlCmd->SetGuidance(
" A:(int) AtomicMass");
233 ionLvlCmd->SetGuidance(
" Q:(int) Charge of Ion (in unit of e)");
234 ionLvlCmd->SetGuidance(
" Lvl:(int) Number of metastable state excitation level (0-9)");
236 G4UIparameter* paramL;
237 paramL =
new G4UIparameter(
"Z",
'i',
false);
239 ionLvlCmd->SetParameter(paramL);
240 paramL =
new G4UIparameter(
"A",
'i',
false);
242 ionLvlCmd->SetParameter(paramL);
243 paramL =
new G4UIparameter(
"Q",
'i',
true);
245 ionLvlCmd->SetParameter(paramL);
246 paramL =
new G4UIparameter(
"Lvl",
'i',
true);
248 ionLvlCmd->SetParameter(paramL);
250 timeCmd =
new G4UIcmdWithADoubleAndUnit(
"/gps/time",
this);
251 timeCmd->SetGuidance(
"Set initial time of the particle.");
252 timeCmd->SetParameterName(
"t0",
false,
false);
253 timeCmd->SetDefaultUnit(
"ns");
257 polCmd =
new G4UIcmdWith3Vector(
"/gps/polarization",
this);
258 polCmd->SetGuidance(
"Set polarization.");
259 polCmd->SetParameterName(
"Px",
"Py",
"Pz",
false,
false);
260 polCmd->SetRange(
"Px>=-1.&&Px<=1.&&Py>=-1.&&Py<=1.&&Pz>=-1.&&Pz<=1.");
262 numberCmd =
new G4UIcmdWithAnInteger(
"/gps/number",
this);
263 numberCmd->SetGuidance(
"Set number of particles to be generated per vertex.");
264 numberCmd->SetParameterName(
"N",
false,
false);
265 numberCmd->SetRange(
"N>0");
269 verbosityCmd =
new G4UIcmdWithAnInteger(
"/gps/verbose",
this);
270 verbosityCmd->SetGuidance(
"Set Verbose level for GPS");
271 verbosityCmd->SetGuidance(
" 0 : Silent");
272 verbosityCmd->SetGuidance(
" 1 : Limited information");
273 verbosityCmd->SetGuidance(
" 2 : Detailed information");
274 verbosityCmd->SetParameterName(
"level",
false);
275 verbosityCmd->SetRange(
"level>=0 && level <=2");
277 volChkCmd =
new G4UIcmdWithABool(
"/gps/checkVolume",
this);
278 volChkCmd->SetGuidance(
"Switch on/off the check if the vertex position is inside the world volume.");
279 volChkCmd->SetGuidance(
"By default the check is on. There is a small performance gain if this check is off,");
280 volChkCmd->SetGuidance(
"but the user has to make sure setting the vertex position inside the world.");
281 volChkCmd->SetParameterName(
"switch",
true,
true);
286 positionDirectory =
new G4UIdirectory(
"/gps/pos/");
287 positionDirectory->SetGuidance(
"Positional commands sub-directory");
289 typeCmd1 =
new G4UIcmdWithAString(
"/gps/pos/type",
this);
290 typeCmd1->SetGuidance(
"Sets source distribution type.");
291 typeCmd1->SetGuidance(
"Either Point, Beam, Plane, Surface or Volume");
292 typeCmd1->SetParameterName(
"DisType",
false,
false);
293 typeCmd1->SetDefaultValue(
"Point");
294 typeCmd1->SetCandidates(
"Point Beam Plane Surface Volume");
296 shapeCmd1 =
new G4UIcmdWithAString(
"/gps/pos/shape",
this);
297 shapeCmd1->SetGuidance(
"Sets source shape for Plan, Surface or Volume type source.");
298 shapeCmd1->SetParameterName(
"Shape",
false,
false);
299 shapeCmd1->SetDefaultValue(
"NULL");
300 shapeCmd1->SetCandidates(
"Circle Annulus Ellipse Square Rectangle Sphere Ellipsoid Cylinder EllipticCylinder Para");
302 centreCmd1 =
new G4UIcmdWith3VectorAndUnit(
"/gps/pos/centre",
this);
303 centreCmd1->SetGuidance(
"Set centre coordinates of source.");
304 centreCmd1->SetParameterName(
"X",
"Y",
"Z",
false,
false);
305 centreCmd1->SetDefaultUnit(
"cm");
308 posrot1Cmd1 =
new G4UIcmdWith3Vector(
"/gps/pos/rot1",
this);
309 posrot1Cmd1->SetGuidance(
"Set the 1st vector defining the rotation matrix'.");
310 posrot1Cmd1->SetGuidance(
"It does not need to be a unit vector.");
311 posrot1Cmd1->SetParameterName(
"R1x",
"R1y",
"R1z",
false,
false);
312 posrot1Cmd1->SetRange(
"R1x != 0 || R1y != 0 || R1z != 0");
314 posrot2Cmd1 =
new G4UIcmdWith3Vector(
"/gps/pos/rot2",
this);
315 posrot2Cmd1->SetGuidance(
"Set the 2nd vector defining the rotation matrix'.");
316 posrot2Cmd1->SetGuidance(
"It does not need to be a unit vector.");
317 posrot2Cmd1->SetParameterName(
"R2x",
"R2y",
"R2z",
false,
false);
318 posrot2Cmd1->SetRange(
"R2x != 0 || R2y != 0 || R2z != 0");
320 halfxCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/pos/halfx",
this);
321 halfxCmd1->SetGuidance(
"Set x half length of source.");
322 halfxCmd1->SetParameterName(
"Halfx",
false,
false);
323 halfxCmd1->SetDefaultUnit(
"cm");
326 halfyCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/pos/halfy",
this);
327 halfyCmd1->SetGuidance(
"Set y half length of source.");
328 halfyCmd1->SetParameterName(
"Halfy",
false,
false);
329 halfyCmd1->SetDefaultUnit(
"cm");
332 halfzCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/pos/halfz",
this);
333 halfzCmd1->SetGuidance(
"Set z half length of source.");
334 halfzCmd1->SetParameterName(
"Halfz",
false,
false);
335 halfzCmd1->SetDefaultUnit(
"cm");
338 radiusCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/pos/radius",
this);
339 radiusCmd1->SetGuidance(
"Set radius of source.");
340 radiusCmd1->SetParameterName(
"Radius",
false,
false);
341 radiusCmd1->SetDefaultUnit(
"cm");
344 radius0Cmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/pos/inner_radius",
this);
345 radius0Cmd1->SetGuidance(
"Set inner radius of source when required.");
346 radius0Cmd1->SetParameterName(
"Radius0",
false,
false);
347 radius0Cmd1->SetDefaultUnit(
"cm");
350 possigmarCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/pos/sigma_r",
this);
351 possigmarCmd1->SetGuidance(
"Set standard deviation in radial of the beam positional profile");
352 possigmarCmd1->SetGuidance(
" applicable to Beam type source only");
353 possigmarCmd1->SetParameterName(
"Sigmar",
false,
false);
354 possigmarCmd1->SetDefaultUnit(
"cm");
357 possigmaxCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/pos/sigma_x",
this);
358 possigmaxCmd1->SetGuidance(
"Set standard deviation of beam positional profile in x-dir");
359 possigmaxCmd1->SetGuidance(
" applicable to Beam type source only");
360 possigmaxCmd1->SetParameterName(
"Sigmax",
false,
false);
361 possigmaxCmd1->SetDefaultUnit(
"cm");
364 possigmayCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/pos/sigma_y",
this);
365 possigmayCmd1->SetGuidance(
"Set standard deviation of beam positional profile in y-dir");
366 possigmayCmd1->SetGuidance(
" applicable to Beam type source only");
367 possigmayCmd1->SetParameterName(
"Sigmay",
false,
false);
368 possigmayCmd1->SetDefaultUnit(
"cm");
371 paralpCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/pos/paralp",
this);
372 paralpCmd1->SetGuidance(
"Angle from y-axis of y' in Para");
373 paralpCmd1->SetParameterName(
"paralp",
false,
false);
374 paralpCmd1->SetDefaultUnit(
"rad");
377 partheCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/pos/parthe",
this);
378 partheCmd1->SetGuidance(
"Polar angle through centres of z faces");
379 partheCmd1->SetParameterName(
"parthe",
false,
false);
380 partheCmd1->SetDefaultUnit(
"rad");
383 parphiCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/pos/parphi",
this);
384 parphiCmd1->SetGuidance(
"Azimuth angle through centres of z faces");
385 parphiCmd1->SetParameterName(
"parphi",
false,
false);
386 parphiCmd1->SetDefaultUnit(
"rad");
389 confineCmd1 =
new G4UIcmdWithAString(
"/gps/pos/confine",
this);
390 confineCmd1->SetGuidance(
"Confine source to volume (NULL to unset).");
391 confineCmd1->SetGuidance(
" Usage: confine VolName");
392 confineCmd1->SetParameterName(
"VolName",
false,
false);
393 confineCmd1->SetDefaultValue(
"NULL");
397 angularDirectory =
new G4UIdirectory(
"/gps/ang/");
398 angularDirectory->SetGuidance(
"Angular commands sub-directory");
400 angtypeCmd1 =
new G4UIcmdWithAString(
"/gps/ang/type",
this);
401 angtypeCmd1->SetGuidance(
"Sets angular source distribution type");
402 angtypeCmd1->SetGuidance(
" Possible variables are: iso, cos, planar, beam1d, beam2d, focused or user");
403 angtypeCmd1->SetParameterName(
"AngDis",
false,
false);
404 angtypeCmd1->SetDefaultValue(
"iso");
405 angtypeCmd1->SetCandidates(
"iso cos planar beam1d beam2d focused user");
407 angrot1Cmd1 =
new G4UIcmdWith3Vector(
"/gps/ang/rot1",
this);
408 angrot1Cmd1->SetGuidance(
"Sets the 1st vector for angular distribution rotation matrix");
409 angrot1Cmd1->SetGuidance(
" Need not be a unit vector");
410 angrot1Cmd1->SetParameterName(
"AR1x",
"AR1y",
"AR1z",
false,
false);
411 angrot1Cmd1->SetRange(
"AR1x != 0 || AR1y != 0 || AR1z != 0");
413 angrot2Cmd1 =
new G4UIcmdWith3Vector(
"/gps/ang/rot2",
this);
414 angrot2Cmd1->SetGuidance(
"Sets the 2nd vector for angular distribution rotation matrix");
415 angrot2Cmd1->SetGuidance(
" Need not be a unit vector");
416 angrot2Cmd1->SetParameterName(
"AR2x",
"AR2y",
"AR2z",
false,
false);
417 angrot2Cmd1->SetRange(
"AR2x != 0 || AR2y != 0 || AR2z != 0");
419 minthetaCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/ang/mintheta",
this);
420 minthetaCmd1->SetGuidance(
"Set minimum theta");
421 minthetaCmd1->SetParameterName(
"MinTheta",
true,
false);
422 minthetaCmd1->SetDefaultValue(0.);
423 minthetaCmd1->SetDefaultUnit(
"rad");
426 maxthetaCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/ang/maxtheta",
this);
427 maxthetaCmd1->SetGuidance(
"Set maximum theta");
428 maxthetaCmd1->SetParameterName(
"MaxTheta",
true,
false);
429 maxthetaCmd1->SetDefaultValue(pi);
430 maxthetaCmd1->SetDefaultUnit(
"rad");
433 minphiCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/ang/minphi",
this);
434 minphiCmd1->SetGuidance(
"Set minimum phi");
435 minphiCmd1->SetParameterName(
"MinPhi",
true,
false);
436 minphiCmd1->SetDefaultValue(0.);
437 minphiCmd1->SetDefaultUnit(
"rad");
440 maxphiCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/ang/maxphi",
this);
441 maxphiCmd1->SetGuidance(
"Set maximum phi");
442 maxphiCmd1->SetParameterName(
"MaxPhi",
true,
false);
443 maxphiCmd1->SetDefaultValue(2.*pi);
444 maxphiCmd1->SetDefaultUnit(
"rad");
447 angsigmarCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/ang/sigma_r",
this);
448 angsigmarCmd1->SetGuidance(
"Set standard deviation in direction for 1D beam.");
449 angsigmarCmd1->SetParameterName(
"Sigmara",
false,
false);
450 angsigmarCmd1->SetDefaultUnit(
"rad");
453 angsigmaxCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/ang/sigma_x",
this);
454 angsigmaxCmd1->SetGuidance(
"Set standard deviation in direction in x-direc. for 2D beam");
455 angsigmaxCmd1->SetParameterName(
"Sigmaxa",
false,
false);
456 angsigmaxCmd1->SetDefaultUnit(
"rad");
459 angsigmayCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/ang/sigma_y",
this);
460 angsigmayCmd1->SetGuidance(
"Set standard deviation in direction in y-direc. for 2D beam");
461 angsigmayCmd1->SetParameterName(
"Sigmaya",
false,
false);
462 angsigmayCmd1->SetDefaultUnit(
"rad");
465 angfocusCmd =
new G4UIcmdWith3VectorAndUnit(
"/gps/ang/focuspoint",
this);
466 angfocusCmd->SetGuidance(
"Set the focusing point for the beam");
467 angfocusCmd->SetParameterName(
"x",
"y",
"z",
false,
false);
468 angfocusCmd->SetDefaultUnit(
"cm");
471 useuserangaxisCmd1 =
new G4UIcmdWithABool(
"/gps/ang/user_coor",
this);
472 useuserangaxisCmd1->SetGuidance(
"True for using user defined angular co-ordinates");
473 useuserangaxisCmd1->SetGuidance(
" Default is false");
474 useuserangaxisCmd1->SetParameterName(
"useuserangaxis",
true);
475 useuserangaxisCmd1->SetDefaultValue(
false);
477 surfnormCmd1 =
new G4UIcmdWithABool(
"/gps/ang/surfnorm",
this);
478 surfnormCmd1->SetGuidance(
"Makes a user-defined distribution with respect to surface normals rather than x,y,z axes.");
479 surfnormCmd1->SetGuidance(
" Default is false");
480 surfnormCmd1->SetParameterName(
"surfnorm",
true);
481 surfnormCmd1->SetDefaultValue(
false);
485 energyDirectory =
new G4UIdirectory(
"/gps/ene/");
486 energyDirectory->SetGuidance(
"Spectral commands sub-directory");
488 energytypeCmd1 =
new G4UIcmdWithAString(
"/gps/ene/type",
this);
489 energytypeCmd1->SetGuidance(
"Sets energy distribution type");
490 energytypeCmd1->SetParameterName(
"EnergyDis",
false,
false);
491 energytypeCmd1->SetDefaultValue(
"Mono");
492 energytypeCmd1->SetCandidates(
"Mono Lin Pow Exp CPow Gauss Brem Bbody Cdg User Arb Epn LW");
494 eminCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/ene/min",
this);
495 eminCmd1->SetGuidance(
"Sets minimum energy");
496 eminCmd1->SetParameterName(
"emin",
false,
false);
497 eminCmd1->SetDefaultUnit(
"keV");
500 emaxCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/ene/max",
this);
501 emaxCmd1->SetGuidance(
"Sets maximum energy");
502 emaxCmd1->SetParameterName(
"emax",
false,
false);
503 emaxCmd1->SetDefaultUnit(
"keV");
506 monoenergyCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/ene/mono",
this);
507 monoenergyCmd1->SetGuidance(
"Sets a monocromatic energy (same as gps/energy)");
508 monoenergyCmd1->SetParameterName(
"monoenergy",
false,
false);
509 monoenergyCmd1->SetDefaultUnit(
"keV");
512 engsigmaCmd1 =
new G4UIcmdWithADoubleAndUnit(
"/gps/ene/sigma",
this);
513 engsigmaCmd1->SetGuidance(
"Sets the standard deviation for Gaussian energy dist.");
514 engsigmaCmd1->SetParameterName(
"Sigmae",
false,
false);
515 engsigmaCmd1->SetDefaultUnit(
"keV");
518 alphaCmd1 =
new G4UIcmdWithADouble(
"/gps/ene/alpha",
this);
519 alphaCmd1->SetGuidance(
"Sets Alpha (index) for power-law energy dist.");
520 alphaCmd1->SetParameterName(
"alpha",
false,
false);
522 tempCmd1 =
new G4UIcmdWithADouble(
"/gps/ene/temp",
this);
523 tempCmd1->SetGuidance(
"Sets the temperature for Brem and BBody distributions (in Kelvin)");
524 tempCmd1->SetParameterName(
"temp",
false,
false);
526 ezeroCmd1 =
new G4UIcmdWithADouble(
"/gps/ene/ezero",
this);
527 ezeroCmd1->SetGuidance(
"Sets E_0 for exponential distribution (in MeV)");
528 ezeroCmd1->SetParameterName(
"ezero",
false,
false);
530 gradientCmd1 =
new G4UIcmdWithADouble(
"/gps/ene/gradient",
this);
531 gradientCmd1->SetGuidance(
"Sets the gradient for Lin distribution (in 1/MeV)");
532 gradientCmd1->SetParameterName(
"gradient",
false,
false);
534 interceptCmd1 =
new G4UIcmdWithADouble(
"/gps/ene/intercept",
this);
535 interceptCmd1->SetGuidance(
"Sets the intercept for Lin distributions (in MeV)");
536 interceptCmd1->SetParameterName(
"intercept",
false,
false);
538 arbeintCmd1 =
new G4UIcmdWithADouble(
"/gps/ene/biasAlpha",
this);
539 arbeintCmd1->SetGuidance(
"Sets the power-law index for the energy sampling distri. )");
540 arbeintCmd1->SetParameterName(
"arbeint",
false,
false);
542 calculateCmd1 =
new G4UIcmdWithoutParameter(
"/gps/ene/calculate",
this);
543 calculateCmd1->SetGuidance(
"Calculates the distributions for Cdg and BBody");
545 energyspecCmd1 =
new G4UIcmdWithABool(
"/gps/ene/emspec",
this);
546 energyspecCmd1->SetGuidance(
"True for energy and false for momentum spectra");
547 energyspecCmd1->SetParameterName(
"energyspec",
true);
548 energyspecCmd1->SetDefaultValue(
true);
550 diffspecCmd1 =
new G4UIcmdWithABool(
"/gps/ene/diffspec",
this);
551 diffspecCmd1->SetGuidance(
"True for differential and flase for integral spectra");
552 diffspecCmd1->SetParameterName(
"diffspec",
true);
553 diffspecCmd1->SetDefaultValue(
true);
555 applyEnergyWeightCmd1 =
new G4UIcmdWithABool(
"/gps/ene/applyEneWeight",
this);
556 applyEnergyWeightCmd1->SetGuidance(
"Apply energy weight.");
557 applyEnergyWeightCmd1->SetGuidance(
"- Instead of using the Arb type histogram for sampling the energy spectrum,");
558 applyEnergyWeightCmd1->SetGuidance(
" energy is sampled by Linear distribution, and the Arb type histogram is");
559 applyEnergyWeightCmd1->SetGuidance(
" used for the weight of the generated particle.");
560 applyEnergyWeightCmd1->SetGuidance(
"- \"/gps/ene/type LW\" automatically applies this command.");
561 applyEnergyWeightCmd1->SetGuidance(
"- If this command has to be explicitly used, \"/gps/ene/type\" distribution mush be Lin.");
562 applyEnergyWeightCmd1->SetParameterName(
"flag",
true);
563 applyEnergyWeightCmd1->SetDefaultValue(
true);
567 histDirectory =
new G4UIdirectory(
"/gps/hist/");
568 histDirectory->SetGuidance(
"Histogram, biasing commands sub-directory");
570 histnameCmd1 =
new G4UIcmdWithAString(
"/gps/hist/type",
this);
571 histnameCmd1->SetGuidance(
"Sets histogram type");
572 histnameCmd1->SetParameterName(
"HistType",
false,
false);
573 histnameCmd1->SetDefaultValue(
"biasx");
574 histnameCmd1->SetCandidates(
"biasx biasy biasz biast biasp biase biaspt biaspp theta phi energy arb epn");
576 resethistCmd1 =
new G4UIcmdWithAString(
"/gps/hist/reset",
this);
577 resethistCmd1->SetGuidance(
"Reset (clean) the histogram ");
578 resethistCmd1->SetParameterName(
"HistType",
false,
false);
579 resethistCmd1->SetDefaultValue(
"energy");
580 resethistCmd1->SetCandidates(
"biasx biasy biasz biast biasp biase biaspt biaspp theta phi energy arb epn");
582 histpointCmd1 =
new G4UIcmdWith3Vector(
"/gps/hist/point",
this);
583 histpointCmd1->SetGuidance(
"Allows user to define a histogram");
584 histpointCmd1->SetGuidance(
" Enter: Ehi Weight");
585 histpointCmd1->SetParameterName(
"Ehi",
"Weight",
"Junk",
true,
true);
586 histpointCmd1->SetRange(
"Ehi >= 0. && Weight >= 0.");
588 histfileCmd1 =
new G4UIcmdWithAString(
"/gps/hist/file",
this);
589 histfileCmd1->SetGuidance(
"Imports the arb energy hist in an ASCII file");
590 histfileCmd1->SetParameterName(
"HistFile",
false,
false);
592 arbintCmd1 =
new G4UIcmdWithAString(
"/gps/hist/inter",
this);
593 arbintCmd1->SetGuidance(
"Sets the interpolation method for arbitrary distribution.");
594 arbintCmd1->SetGuidance(
"Spline interpolation may not be applicable for some distributions.");
595 arbintCmd1->SetParameterName(
"int",
false,
false);
596 arbintCmd1->SetDefaultValue(
"Lin");
597 arbintCmd1->SetCandidates(
"Lin Log Exp Spline");
600G4GeneralParticleSourceMessenger::~G4GeneralParticleSourceMessenger()
602 delete positionDirectory;
613 delete possigmarCmd1;
614 delete possigmaxCmd1;
615 delete possigmayCmd1;
621 delete angularDirectory;
629 delete angsigmarCmd1;
630 delete angsigmaxCmd1;
631 delete angsigmayCmd1;
633 delete useuserangaxisCmd1;
636 delete energyDirectory;
637 delete energytypeCmd1;
640 delete monoenergyCmd1;
646 delete interceptCmd1;
648 delete calculateCmd1;
649 delete energyspecCmd1;
651 delete applyEnergyWeightCmd1;
653 delete histDirectory;
655 delete resethistCmd1;
656 delete histpointCmd1;
674 delete sourceDirectory;
676 delete listsourceCmd;
677 delete clearsourceCmd;
680 delete setintensityCmd;
681 delete deletesourceCmd;
682 delete multiplevertexCmd;
683 delete flatsamplingCmd;
686 theInstance =
nullptr;
689#define CHECKPG() { if (fParticleGun==nullptr) { \
690 G4ExceptionDescription msg; \
691 msg << "Command "<< command->GetCommandPath()<<"/";\
692 msg << command->GetCommandName(); \
693 msg << " used but no particle sources are set.";\
694 msg <<" Add at least a source with: /gps/source/add.";\
695 G4Exception("G4GeneralParticleSourceMessenger::SetNewValue","G4GPS003",\
696 FatalException,msg); return;\
1057 if( command==directionCmd )
1060 fParticleGun->GetAngDist()->SetAngDistType(
"planar");
1061 fParticleGun->GetAngDist()->SetParticleMomentumDirection(directionCmd->GetNew3VectorValue(newValues));
1063 else if( command==energyCmd )
1066 fParticleGun->GetEneDist()->SetEnergyDisType(
"Mono");
1067 fParticleGun->GetEneDist()->SetMonoEnergy(energyCmd->GetNewDoubleValue(newValues));
1069 else if( command==positionCmd )
1072 fParticleGun->GetPosDist()->SetPosDisType(
"Point");
1073 fParticleGun->GetPosDist()->SetCentreCoords(positionCmd->GetNew3VectorValue(newValues));
1075 else if(command == verbosityCmd)
1077 fGPS->SetVerbosity(verbosityCmd->GetNewIntValue(newValues));
1081 else if( command==volChkCmd )
1083 fGPS->CheckInside(volChkCmd->GetNewBoolValue(newValues));
1085 else if( command==particleCmd )
1087 if (newValues ==
"ion")
1098 fParticleGun->SetParticleDefinition( pd );
1102 else if( command==timeCmd )
1105 fParticleGun->SetParticleTime(timeCmd->GetNewDoubleValue(newValues));
1107 else if( command==polCmd )
1110 fParticleGun->SetParticlePolarization(polCmd->GetNew3VectorValue(newValues));
1112 else if( command==numberCmd )
1115 fParticleGun->SetNumberOfParticles(numberCmd->GetNewIntValue(newValues));
1117 else if( command==ionCmd )
1119 IonCommand(newValues);
1121 else if( command==ionLvlCmd )
1123 IonLvlCommand(newValues);
1125 else if( command==listCmd )
1127 particleTable->DumpTable();
1129 else if( command==addsourceCmd )
1131 fGPS->AddaSource(addsourceCmd->GetNewDoubleValue(newValues));
1133 else if( command==listsourceCmd )
1137 else if( command==clearsourceCmd )
1140 fParticleGun =
nullptr;
1142 else if( command==getsourceCmd )
1144 G4cout <<
" Current source index:" << fGPS->GetCurrentSourceIndex()
1145 <<
" ; Intensity:" << fGPS->GetCurrentSourceIntensity() <<
G4endl;
1147 else if( command==setsourceCmd )
1154 const G4int sn = setsourceCmd->GetNewIntValue(newValues);
1155 if ( sn >= fGPS->GetNumberofSource() )
1158 msg <<
"Using command " << setsourceCmd->GetCommandPath() <<
"/"
1159 << setsourceCmd->GetCommandName() <<
" " << sn;
1160 msg <<
" is invalid " << fGPS->GetNumberofSource()
1161 <<
" source(s) are defined.";
1162 G4Exception(
"G4GeneralParticleSourceMessenger::SetNewValue",
1165 fGPS->SetCurrentSourceto(setsourceCmd->GetNewIntValue(newValues));
1167 else if( command==setintensityCmd )
1169 fGPS->SetCurrentSourceIntensity(setintensityCmd->GetNewDoubleValue(newValues));
1171 else if( command==deletesourceCmd )
1173 fGPS->DeleteaSource(deletesourceCmd->GetNewIntValue(newValues));
1175 else if(command == multiplevertexCmd)
1177 fGPS->SetMultipleVertex(multiplevertexCmd->GetNewBoolValue(newValues));
1179 else if(command == flatsamplingCmd)
1181 fGPS->SetFlatSampling(flatsamplingCmd->GetNewBoolValue(newValues));
1186 else if(command == typeCmd1)
1189 fParticleGun->GetPosDist()->SetPosDisType(newValues);
1191 else if(command == shapeCmd1)
1194 fParticleGun->GetPosDist()->SetPosDisShape(newValues);
1196 else if(command == centreCmd1)
1199 fParticleGun->GetPosDist()->SetCentreCoords(centreCmd1->GetNew3VectorValue(newValues));
1201 else if(command == posrot1Cmd1)
1204 fParticleGun->GetPosDist()->SetPosRot1(posrot1Cmd1->GetNew3VectorValue(newValues));
1206 else if(command == posrot2Cmd1)
1209 fParticleGun->GetPosDist()->SetPosRot2(posrot2Cmd1->GetNew3VectorValue(newValues));
1211 else if(command == halfxCmd1)
1214 fParticleGun->GetPosDist()->SetHalfX(halfxCmd1->GetNewDoubleValue(newValues));
1216 else if(command == halfyCmd1)
1219 fParticleGun->GetPosDist()->SetHalfY(halfyCmd1->GetNewDoubleValue(newValues));
1221 else if(command == halfzCmd1)
1224 fParticleGun->GetPosDist()->SetHalfZ(halfzCmd1->GetNewDoubleValue(newValues));
1226 else if(command == radiusCmd1)
1229 fParticleGun->GetPosDist()->SetRadius(radiusCmd1->GetNewDoubleValue(newValues));
1231 else if(command == radius0Cmd1)
1234 fParticleGun->GetPosDist()->SetRadius0(radius0Cmd1->GetNewDoubleValue(newValues));
1236 else if(command == possigmarCmd1)
1239 fParticleGun->GetPosDist()->SetBeamSigmaInR(possigmarCmd1->GetNewDoubleValue(newValues));
1241 else if(command == possigmaxCmd1)
1244 fParticleGun->GetPosDist()->SetBeamSigmaInX(possigmaxCmd1->GetNewDoubleValue(newValues));
1246 else if(command == possigmayCmd1)
1249 fParticleGun->GetPosDist()->SetBeamSigmaInY(possigmayCmd1->GetNewDoubleValue(newValues));
1251 else if(command == paralpCmd1)
1254 fParticleGun->GetPosDist()->SetParAlpha(paralpCmd1->GetNewDoubleValue(newValues));
1256 else if(command == partheCmd1)
1259 fParticleGun->GetPosDist()->SetParTheta(partheCmd1->GetNewDoubleValue(newValues));
1261 else if(command == parphiCmd1)
1264 fParticleGun->GetPosDist()->SetParPhi(parphiCmd1->GetNewDoubleValue(newValues));
1266 else if(command == confineCmd1)
1269 fParticleGun->GetPosDist()->ConfineSourceToVolume(newValues);
1271 else if(command == angtypeCmd1)
1274 fParticleGun->GetAngDist()->SetAngDistType(newValues);
1276 else if(command == angrot1Cmd1)
1280 fParticleGun->GetAngDist()->DefineAngRefAxes(a,angrot1Cmd1->GetNew3VectorValue(newValues));
1282 else if(command == angrot2Cmd1)
1286 fParticleGun->GetAngDist()->DefineAngRefAxes(a,angrot2Cmd1->GetNew3VectorValue(newValues));
1288 else if(command == minthetaCmd1)
1291 fParticleGun->GetAngDist()->SetMinTheta(minthetaCmd1->GetNewDoubleValue(newValues));
1293 else if(command == minphiCmd1)
1296 fParticleGun->GetAngDist()->SetMinPhi(minphiCmd1->GetNewDoubleValue(newValues));
1298 else if(command == maxthetaCmd1)
1301 fParticleGun->GetAngDist()->SetMaxTheta(maxthetaCmd1->GetNewDoubleValue(newValues));
1303 else if(command == maxphiCmd1)
1306 fParticleGun->GetAngDist()->SetMaxPhi(maxphiCmd1->GetNewDoubleValue(newValues));
1308 else if(command == angsigmarCmd1)
1311 fParticleGun->GetAngDist()->SetBeamSigmaInAngR(angsigmarCmd1->GetNewDoubleValue(newValues));
1313 else if(command == angsigmaxCmd1)
1316 fParticleGun->GetAngDist()->SetBeamSigmaInAngX(angsigmaxCmd1->GetNewDoubleValue(newValues));
1318 else if(command == angsigmayCmd1)
1321 fParticleGun->GetAngDist()->SetBeamSigmaInAngY(angsigmayCmd1->GetNewDoubleValue(newValues));
1323 else if(command == angfocusCmd)
1326 fParticleGun->GetAngDist()->SetFocusPoint(angfocusCmd->GetNew3VectorValue(newValues));
1328 else if(command == useuserangaxisCmd1)
1331 fParticleGun->GetAngDist()->SetUseUserAngAxis(useuserangaxisCmd1->GetNewBoolValue(newValues));
1333 else if(command == surfnormCmd1)
1336 fParticleGun->GetAngDist()->SetUserWRTSurface(surfnormCmd1->GetNewBoolValue(newValues));
1338 else if(command == energytypeCmd1)
1343 fParticleGun->GetEneDist()->SetEnergyDisType(
"Lin");
1344 fParticleGun->GetEneDist()->SetGradient(0.);
1345 fParticleGun->GetEneDist()->SetInterCept(1.);
1346 fParticleGun->GetEneDist()->ApplyEnergyWeight(
true);
1350 fParticleGun->GetEneDist()->SetEnergyDisType(newValues);
1351 fParticleGun->GetEneDist()->ApplyEnergyWeight(
false);
1354 else if(command == eminCmd1)
1357 fParticleGun->GetEneDist()->SetEmin(eminCmd1->GetNewDoubleValue(newValues));
1359 else if(command == emaxCmd1)
1362 fParticleGun->GetEneDist()->SetEmax(emaxCmd1->GetNewDoubleValue(newValues));
1364 else if(command == monoenergyCmd1)
1367 fParticleGun->GetEneDist()->SetMonoEnergy(monoenergyCmd1->GetNewDoubleValue(newValues));
1369 else if(command == engsigmaCmd1)
1372 fParticleGun->GetEneDist()->SetBeamSigmaInE(engsigmaCmd1->GetNewDoubleValue(newValues));
1374 else if(command == alphaCmd1)
1377 fParticleGun->GetEneDist()->SetAlpha(alphaCmd1->GetNewDoubleValue(newValues));
1379 else if(command == tempCmd1)
1382 fParticleGun->GetEneDist()->SetTemp(tempCmd1->GetNewDoubleValue(newValues));
1384 else if(command == ezeroCmd1)
1387 fParticleGun->GetEneDist()->SetEzero(ezeroCmd1->GetNewDoubleValue(newValues));
1389 else if(command == gradientCmd1)
1392 fParticleGun->GetEneDist()->SetGradient(gradientCmd1->GetNewDoubleValue(newValues));
1394 else if(command == interceptCmd1)
1397 fParticleGun->GetEneDist()->SetInterCept(interceptCmd1->GetNewDoubleValue(newValues));
1399 else if(command == arbeintCmd1)
1402 fParticleGun->GetEneDist()->SetBiasAlpha(arbeintCmd1->GetNewDoubleValue(newValues));
1404 else if(command == calculateCmd1)
1407 fParticleGun->GetEneDist()->Calculate();
1409 else if(command == energyspecCmd1)
1412 fParticleGun->GetEneDist()->InputEnergySpectra(energyspecCmd1->GetNewBoolValue(newValues));
1414 else if(command == diffspecCmd1)
1417 fParticleGun->GetEneDist()->InputDifferentialSpectra(diffspecCmd1->GetNewBoolValue(newValues));
1419 else if(command == applyEnergyWeightCmd1)
1422 const auto& eDisType = fParticleGun->GetEneDist()->GetEnergyDisType();
1423 if(eDisType !=
"Lin")
1426 ed <<
"Energy distribution is defined as " << eDisType <<
". /gps/ene/applyEneWeight is available only for Linear distribution.";
1430 fParticleGun->GetEneDist()->ApplyEnergyWeight(applyEnergyWeightCmd1->GetNewBoolValue(newValues));
1432 else if(command == histnameCmd1)
1434 histtype = newValues;
1436 else if(command == histfileCmd1)
1440 fParticleGun->GetEneDist()->ArbEnergyHistoFile(newValues);
1442 else if(command == histpointCmd1)
1445 if(histtype ==
"biasx")
1446 fParticleGun->GetBiasRndm()->SetXBias(histpointCmd1->GetNew3VectorValue(newValues));
1447 if(histtype ==
"biasy")
1448 fParticleGun->GetBiasRndm()->SetYBias(histpointCmd1->GetNew3VectorValue(newValues));
1449 if(histtype ==
"biasz")
1450 fParticleGun->GetBiasRndm()->SetZBias(histpointCmd1->GetNew3VectorValue(newValues));
1451 if(histtype ==
"biast")
1452 fParticleGun->GetBiasRndm()->SetThetaBias(histpointCmd1->GetNew3VectorValue(newValues));
1453 if(histtype ==
"biasp")
1454 fParticleGun->GetBiasRndm()->SetPhiBias(histpointCmd1->GetNew3VectorValue(newValues));
1455 if(histtype ==
"biaspt")
1456 fParticleGun->GetBiasRndm()->SetPosThetaBias(histpointCmd1->GetNew3VectorValue(newValues));
1457 if(histtype ==
"biaspp")
1458 fParticleGun->GetBiasRndm()->SetPosPhiBias(histpointCmd1->GetNew3VectorValue(newValues));
1459 if(histtype ==
"biase")
1460 fParticleGun->GetBiasRndm()->SetEnergyBias(histpointCmd1->GetNew3VectorValue(newValues));
1461 if(histtype ==
"theta")
1462 fParticleGun->GetAngDist()->UserDefAngTheta(histpointCmd1->GetNew3VectorValue(newValues));
1463 if(histtype ==
"phi")
1464 fParticleGun->GetAngDist()->UserDefAngPhi(histpointCmd1->GetNew3VectorValue(newValues));
1465 if(histtype ==
"energy")
1466 fParticleGun->GetEneDist()->UserEnergyHisto(histpointCmd1->GetNew3VectorValue(newValues));
1467 if(histtype ==
"arb")
1468 fParticleGun->GetEneDist()->ArbEnergyHisto(histpointCmd1->GetNew3VectorValue(newValues));
1469 if(histtype ==
"epn")
1470 fParticleGun->GetEneDist()->EpnEnergyHisto(histpointCmd1->GetNew3VectorValue(newValues));
1472 else if(command == resethistCmd1)
1475 if(newValues ==
"theta" || newValues ==
"phi")
1477 fParticleGun->GetAngDist()->ReSetHist(newValues);
1479 else if (newValues ==
"energy" || newValues ==
"arb" || newValues ==
"epn")
1481 fParticleGun->GetEneDist()->ReSetHist(newValues);
1485 fParticleGun->GetBiasRndm()->ReSetHist(newValues);
1488 else if(command == arbintCmd1)
1490 CHECKPG(); fParticleGun->GetEneDist()->ArbInterpolate(newValues);
1502 if( command==volChkCmd )
1503 { cv = volChkCmd->ConvertToString(fParticleGun->IfCheckInside()); }
1519 cv =
"Not implemented yet";
1525void G4GeneralParticleSourceMessenger::IonCommand(
const G4String& newValues)
1531 fAtomicNumber =
StoI(next());
1532 fAtomicMass =
StoI(next());
1536 fIonCharge = fAtomicNumber;
1540 fIonCharge =
StoI(sQ);
1544 fIonExciteEnergy = 0.0;
1548 fIonExciteEnergy =
StoD(sQ) * keV;
1552 ->
GetIon(fAtomicNumber, fAtomicMass, fIonExciteEnergy);
1556 ed <<
"Ion with Z=" << fAtomicNumber;
1557 ed <<
" A=" << fAtomicMass <<
" is not defined";
1558 ionCmd->CommandFailed(ed);
1562 fParticleGun->SetParticleDefinition(ion);
1563 fParticleGun->SetParticleCharge(fIonCharge*eplus);
1569 ed <<
"Set /gps/particle to ion before using /gps/ion command";
1570 ionCmd->CommandFailed(ed);
1574void G4GeneralParticleSourceMessenger::IonLvlCommand(
const G4String& newValues)
1578 G4Tokenizer next(newValues);
1580 fAtomicNumberL =
StoI(next());
1581 fAtomicMassL =
StoI(next());
1582 G4String sQ = next();
1585 fIonChargeL = fAtomicNumberL;
1589 fIonChargeL =
StoI(sQ);
1593 fIonEnergyLevel = 0;
1597 fIonEnergyLevel =
StoI(sQ);
1602 ->
GetIon(fAtomicNumberL, fAtomicMassL, fIonEnergyLevel);
1606 ed <<
"Ion with Z=" << fAtomicNumberL;
1607 ed <<
" A=" << fAtomicMassL <<
" is not defined";
1608 ionLvlCmd->CommandFailed(ed);
1612 fParticleGun->SetParticleDefinition(ion);
1613 fParticleGun->SetParticleCharge(fIonChargeL*eplus);
1620 ed <<
"Set /gps/particle to ion before using /gps/ionLvl command";
1621 ionLvlCmd->CommandFailed(ed);
G4TemplateAutoLock< G4Mutex > G4AutoLock
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
#define G4MUTEX_INITIALIZER
G4GLOB_DLL std::ostream G4cout
static G4GeneralParticleSourceMessenger * GetInstance(G4GeneralParticleSource *)
void SetNewValue(G4UIcommand *command, G4String newValues) override
G4String GetCurrentValue(G4UIcommand *command) override
G4ParticleDefinition * GetIon(G4int Z, G4int A, G4int lvl=0)
static G4IonTable * GetIonTable()
static G4ParticleTable * GetParticleTable()
const G4String & GetParticleName(G4int index) const
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
void SetDefaultValue(G4bool defVal)
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
void SetDefaultValue(const char *defVal)
void SetParameterName(const char *theName, G4bool omittable, G4bool currentAsDefault=false)
void SetGuidance(const char *aGuidance)
void CommandFailed(G4int errCode, G4ExceptionDescription &ed)
void SetRange(const char *rs)
G4bool commandsShouldBeInMaster
G4double StoD(const G4String &s)
G4int StoI(const G4String &s)
void SetDefaultValue(const char *theDefaultValue)