Geant4  10.01
G4GeneralParticleSourceMessenger.cc
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
27 //
28 // MODULE: G4GeneralParticleSourceMessenger.cc
29 //
30 // Version: 2.0
31 // Date: 5/02/04
32 // Author: Fan Lei
33 // Organisation: QinetiQ ltd.
34 // Customer: ESA/ESTEC
35 //
37 //
38 // CHANGE HISTORY
39 // --------------
40 //
41 // Version 2.0, 05/02/2004, Fan Lei, Created.
42 // After changes to version 1.1 as in Geant4 v6.0
43 // - Mutilple particle source definition
44 // - Re-structured commands
45 // - old commands have been retained for backward compatibility, will be
46 // removed in the future.
47 //
48 //
49 // 20/03/2014, Andrew Green - Modifications for MT
50 // - Added a check to force only one thread to parse the macro file
51 // This information is fed into the GPS which now has a split mechanism for the large data (hence need to only read in 1 thread)
52 // - Thread ID used is 0, so *should* work under interactive mode as well - may need checking, or the may be another way...
54 //
55 
57 
58 #include "G4PhysicalConstants.hh"
59 #include "G4SystemOfUnits.hh"
60 #include "G4Geantino.hh"
61 #include "G4ThreeVector.hh"
62 #include "G4ParticleTable.hh"
63 #include "G4IonTable.hh"
64 #include "G4UIdirectory.hh"
66 #include "G4UIcmdWithAString.hh"
68 #include "G4UIcmdWith3Vector.hh"
70 #include "G4UIcmdWithAnInteger.hh"
71 #include "G4UIcmdWithADouble.hh"
72 #include "G4UIcmdWithABool.hh"
73 #include "G4ios.hh"
74 
75 #include "G4Tokenizer.hh"
78 
79 #include "G4AutoLock.hh"
80 
81 namespace {
82  G4Mutex creationM = G4MUTEX_INITIALIZER;
83  G4GeneralParticleSourceMessenger* theInstance = 0;
84 }
85 
87 {
88  G4AutoLock l(&creationM);
89  if ( theInstance == 0 ) theInstance = new G4GeneralParticleSourceMessenger(ps);
90  return theInstance;
91 }
92 
94  G4AutoLock l(&creationM);
95  if ( theInstance != 0 ) {
96  delete theInstance;
97  theInstance = 0;
98  }
99 }
101 //
104  : fGPS(fPtclGun),fParticleGun(0),fShootIon(false),
105  fAtomicNumber(0),fAtomicMass(0),fIonCharge(0),fIonExciteEnergy(0.),
106  fShootIonL(0),fAtomicNumberL(0),fAtomicMassL(0),fIonChargeL(0),fIonEnergyLevel(0)
107 
108 {
109  //A.Dotti - 10th October 2014
110  //This messenger is special: it is instantiated in a user action but
111  //the UI commands it defines should be executed by the master thread.
112  //To achieve this behavior we set to true a base calss protected
113  //data member. Since it makes no sense to have more than one instance
114  //of the messenger we check that we actually have only one.
115  //Note that the logic of implementing, in a given worker thread only one
116  //messenger is deletefated to the creator
117  commandsShouldBeInMaster = true;
118 
119 
120 
121  particleTable = G4ParticleTable::GetParticleTable();
122  histtype = "biasx";
123 
124  //UI Commands only for master
125  G4bool broadcast = false;
126  gpsDirectory = new G4UIdirectory("/gps/",broadcast);
127 
128  gpsDirectory->SetGuidance("General Paricle Source control commands.");
129  // gpsDirectory->SetGuidance(" The first 9 commands are the same as in G4ParticleGun ");
130 
131  // now the commands for mutiple sources
132  sourceDirectory = new G4UIdirectory("/gps/source/");
133  sourceDirectory->SetGuidance("Multiple source control sub-directory");
134 
135  addsourceCmd = new G4UIcmdWithADouble("/gps/source/add",this);
136  addsourceCmd->SetGuidance("add a new source defintion to the particle gun with the specified intensity");
137  addsourceCmd->SetParameterName("addsource",false,false);
138  addsourceCmd->SetRange("addsource > 0.");
139 
140  listsourceCmd = new G4UIcmdWithoutParameter("/gps/source/list",this);
141  listsourceCmd->SetGuidance("List the defined particle sources");
142 
143  clearsourceCmd = new G4UIcmdWithoutParameter("/gps/source/clear",this);
144  clearsourceCmd->SetGuidance("Remove all the defined particle sources");
145 
146  getsourceCmd = new G4UIcmdWithoutParameter("/gps/source/show",this);
147  getsourceCmd->SetGuidance("Show the current source index and intensity");
148 
149  setsourceCmd = new G4UIcmdWithAnInteger("/gps/source/set",this);
150  setsourceCmd->SetGuidance("set the indexed source as the current one");
151  setsourceCmd->SetGuidance(" so one can change its source definition");
152  setsourceCmd->SetParameterName("setsource",false,false);
153  setsourceCmd->SetRange("setsource >= 0");
154 
155  deletesourceCmd = new G4UIcmdWithAnInteger("/gps/source/delete",this);
156  deletesourceCmd->SetGuidance("delete the indexed source from the list");
157  deletesourceCmd->SetParameterName("deletesource",false,false);
158  deletesourceCmd->SetRange("deletesource > 0");
159 
160  setintensityCmd = new G4UIcmdWithADouble("/gps/source/intensity",this);
161  setintensityCmd->SetGuidance("reset the current source to the specified intensity");
162  setintensityCmd->SetParameterName("setintensity",false,false);
163  setintensityCmd->SetRange("setintensity > 0.");
164 
165  multiplevertexCmd = new G4UIcmdWithABool("/gps/source/multiplevertex",this);
166  multiplevertexCmd->SetGuidance("true for simulaneous generation mutiple vertex");
167  multiplevertexCmd->SetGuidance("Default is false");
168  multiplevertexCmd->SetParameterName("multiplevertex",true);
169  multiplevertexCmd->SetDefaultValue(false);
170 
171  flatsamplingCmd = new G4UIcmdWithABool("/gps/source/flatsampling",this);
172  flatsamplingCmd->SetGuidance("true for appling flat (biased) sampling among the sources");
173  flatsamplingCmd->SetGuidance("Default is false");
174  flatsamplingCmd->SetParameterName("flatsampling",true);
175  flatsamplingCmd->SetDefaultValue(false);
176 
177  // below we reproduce commands awailable in G4Particle Gun
178 
179  listCmd = new G4UIcmdWithoutParameter("/gps/List",this);
180  listCmd->SetGuidance("List available particles.");
181  listCmd->SetGuidance(" Invoke G4ParticleTable.");
182 
183  particleCmd = new G4UIcmdWithAString("/gps/particle",this);
184  particleCmd->SetGuidance("Set particle to be generated.");
185  particleCmd->SetGuidance(" (geantino is default)");
186  particleCmd->SetGuidance(" (ion can be specified for shooting ions)");
187  particleCmd->SetParameterName("particleName",true);
188  particleCmd->SetDefaultValue("geantino");
189  G4String candidateList;
190  G4int nPtcl = particleTable->entries();
191  for(G4int i=0;i<nPtcl;i++)
192  {
193  candidateList += particleTable->GetParticleName(i);
194  candidateList += " ";
195  }
196  candidateList += "ion ";
197  particleCmd->SetCandidates(candidateList);
198 
199  directionCmd = new G4UIcmdWith3Vector("/gps/direction",this);
200  directionCmd->SetGuidance("Set momentum direction.");
201  directionCmd->SetGuidance("Direction needs not to be a unit vector.");
202  directionCmd->SetParameterName("Px","Py","Pz",false,false);
203  directionCmd->SetRange("Px != 0 || Py != 0 || Pz != 0");
204 
205  energyCmd = new G4UIcmdWithADoubleAndUnit("/gps/energy",this);
206  energyCmd->SetGuidance("Set kinetic energy.");
207  energyCmd->SetParameterName("Energy",false,false);
208  energyCmd->SetDefaultUnit("GeV");
209  //energyCmd->SetUnitCategory("Energy");
210  //energyCmd->SetUnitCandidates("eV keV MeV GeV TeV");
211 
212  positionCmd = new G4UIcmdWith3VectorAndUnit("/gps/position",this);
213  positionCmd->SetGuidance("Set starting position of the particle.");
214  positionCmd->SetParameterName("X","Y","Z",false,false);
215  positionCmd->SetDefaultUnit("cm");
216  //positionCmd->SetUnitCategory("Length");
217  //positionCmd->SetUnitCandidates("microm mm cm m km");
218 
219  ionCmd = new G4UIcommand("/gps/ion",this);
220  ionCmd->SetGuidance("Set properties of ion to be generated.");
221  ionCmd->SetGuidance("[usage] /gps/ion Z A Q E");
222  ionCmd->SetGuidance(" Z:(int) AtomicNumber");
223  ionCmd->SetGuidance(" A:(int) AtomicMass");
224  ionCmd->SetGuidance(" Q:(int) Charge of Ion (in unit of e)");
225  ionCmd->SetGuidance(" E:(double) Excitation energy (in keV)");
226 
227  G4UIparameter* param;
228  param = new G4UIparameter("Z",'i',false);
229  param->SetDefaultValue("1");
230  ionCmd->SetParameter(param);
231  param = new G4UIparameter("A",'i',false);
232  param->SetDefaultValue("1");
233  ionCmd->SetParameter(param);
234  param = new G4UIparameter("Q",'i',true);
235  param->SetDefaultValue("0");
236  ionCmd->SetParameter(param);
237  param = new G4UIparameter("E",'d',true);
238  param->SetDefaultValue("0.0");
239  ionCmd->SetParameter(param);
240 
241  ionLvlCmd = new G4UIcommand("/gps/ionLvl",this);
242  ionLvlCmd->SetGuidance("Set properties of ion to be generated.");
243  ionLvlCmd->SetGuidance("[usage] /gps/ion Z A Q Lvl");
244  ionLvlCmd->SetGuidance(" Z:(int) AtomicNumber");
245  ionLvlCmd->SetGuidance(" A:(int) AtomicMass");
246  ionLvlCmd->SetGuidance(" Q:(int) Charge of Ion (in unit of e)");
247  ionLvlCmd->SetGuidance(" Lvl:(int) Number of metastable state excitation level (0-9)");
248 
249  G4UIparameter* paramL;
250  paramL = new G4UIparameter("Z",'i',false);
251  paramL->SetDefaultValue("1");
252  ionLvlCmd->SetParameter(paramL);
253  paramL = new G4UIparameter("A",'i',false);
254  paramL->SetDefaultValue("1");
255  ionLvlCmd->SetParameter(paramL);
256  paramL = new G4UIparameter("Q",'i',true);
257  paramL->SetDefaultValue("0");
258  ionLvlCmd->SetParameter(paramL);
259  paramL = new G4UIparameter("Lvl",'i',true);
260  paramL->SetDefaultValue("0.0");
261  ionLvlCmd->SetParameter(paramL);
262 
263  timeCmd = new G4UIcmdWithADoubleAndUnit("/gps/time",this);
264  timeCmd->SetGuidance("Set initial time of the particle.");
265  timeCmd->SetParameterName("t0",false,false);
266  timeCmd->SetDefaultUnit("ns");
267  //timeCmd->SetUnitCategory("Time");
268  //timeCmd->SetUnitCandidates("ns ms s");
269 
270  polCmd = new G4UIcmdWith3Vector("/gps/polarization",this);
271  polCmd->SetGuidance("Set polarization.");
272  polCmd->SetParameterName("Px","Py","Pz",false,false);
273  polCmd->SetRange("Px>=-1.&&Px<=1.&&Py>=-1.&&Py<=1.&&Pz>=-1.&&Pz<=1.");
274 
275  numberCmd = new G4UIcmdWithAnInteger("/gps/number",this);
276  numberCmd->SetGuidance("Set number of particles to be generated per vertex.");
277  numberCmd->SetParameterName("N",false,false);
278  numberCmd->SetRange("N>0");
279 
280  // verbosity
281  verbosityCmd = new G4UIcmdWithAnInteger("/gps/verbose",this);
282  verbosityCmd->SetGuidance("Set Verbose level for GPS");
283  verbosityCmd->SetGuidance(" 0 : Silent");
284  verbosityCmd->SetGuidance(" 1 : Limited information");
285  verbosityCmd->SetGuidance(" 2 : Detailed information");
286  verbosityCmd->SetParameterName("level",false);
287  verbosityCmd->SetRange("level>=0 && level <=2");
288 
289  // now extended commands
290  // Positional ones:
291  positionDirectory = new G4UIdirectory("/gps/pos/");
292  positionDirectory->SetGuidance("Positional commands sub-directory");
293 
294  typeCmd1 = new G4UIcmdWithAString("/gps/pos/type",this);
295  typeCmd1->SetGuidance("Sets source distribution type.");
296  typeCmd1->SetGuidance("Either Point, Beam, Plane, Surface or Volume");
297  typeCmd1->SetParameterName("DisType",false,false);
298  typeCmd1->SetDefaultValue("Point");
299  typeCmd1->SetCandidates("Point Beam Plane Surface Volume");
300 
301  shapeCmd1 = new G4UIcmdWithAString("/gps/pos/shape",this);
302  shapeCmd1->SetGuidance("Sets source shape for Plan, Surface or Volume type source.");
303  shapeCmd1->SetParameterName("Shape",false,false);
304  shapeCmd1->SetDefaultValue("NULL");
305  shapeCmd1->SetCandidates("Circle Annulus Ellipse Square Rectangle Sphere Ellipsoid Cylinder Para");
306 
307  centreCmd1 = new G4UIcmdWith3VectorAndUnit("/gps/pos/centre",this);
308  centreCmd1->SetGuidance("Set centre coordinates of source.");
309  centreCmd1->SetGuidance(" same effect as the /gps/position command");
310  centreCmd1->SetParameterName("X","Y","Z",false,false);
311  centreCmd1->SetDefaultUnit("cm");
312  // centreCmd1->SetUnitCandidates("micron mm cm m km");
313 
314  posrot1Cmd1 = new G4UIcmdWith3Vector("/gps/pos/rot1",this);
315  posrot1Cmd1->SetGuidance("Set the 1st vector defining the rotation matrix'.");
316  posrot1Cmd1->SetGuidance("It does not need to be a unit vector.");
317  posrot1Cmd1->SetParameterName("R1x","R1y","R1z",false,false);
318  posrot1Cmd1->SetRange("R1x != 0 || R1y != 0 || R1z != 0");
319 
320  posrot2Cmd1 = new G4UIcmdWith3Vector("/gps/pos/rot2",this);
321  posrot2Cmd1->SetGuidance("Set the 2nd vector defining the rotation matrix'.");
322  posrot2Cmd1->SetGuidance("It does not need to be a unit vector.");
323  posrot2Cmd1->SetParameterName("R2x","R2y","R2z",false,false);
324  posrot2Cmd1->SetRange("R2x != 0 || R2y != 0 || R2z != 0");
325 
326  halfxCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/pos/halfx",this);
327  halfxCmd1->SetGuidance("Set x half length of source.");
328  halfxCmd1->SetParameterName("Halfx",false,false);
329  halfxCmd1->SetDefaultUnit("cm");
330  // halfxCmd1->SetUnitCandidates("micron mm cm m km");
331 
332  halfyCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/pos/halfy",this);
333  halfyCmd1->SetGuidance("Set y half length of source.");
334  halfyCmd1->SetParameterName("Halfy",false,false);
335  halfyCmd1->SetDefaultUnit("cm");
336  // halfyCmd1->SetUnitCandidates("micron mm cm m km");
337 
338  halfzCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/pos/halfz",this);
339  halfzCmd1->SetGuidance("Set z half length of source.");
340  halfzCmd1->SetParameterName("Halfz",false,false);
341  halfzCmd1->SetDefaultUnit("cm");
342  // halfzCmd1->SetUnitCandidates("micron mm cm m km");
343 
344  radiusCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/pos/radius",this);
345  radiusCmd1->SetGuidance("Set radius of source.");
346  radiusCmd1->SetParameterName("Radius",false,false);
347  radiusCmd1->SetDefaultUnit("cm");
348  // radiusCmd1->SetUnitCandidates("micron mm cm m km");
349 
350  radius0Cmd1 = new G4UIcmdWithADoubleAndUnit("/gps/pos/inner_radius",this);
351  radius0Cmd1->SetGuidance("Set inner radius of source when required.");
352  radius0Cmd1->SetParameterName("Radius0",false,false);
353  radius0Cmd1->SetDefaultUnit("cm");
354  // radius0Cmd1->SetUnitCandidates("micron mm cm m km");
355 
356  possigmarCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/pos/sigma_r",this);
357  possigmarCmd1->SetGuidance("Set standard deviation in radial of the beam positional profile");
358  possigmarCmd1->SetGuidance(" applicable to Beam type source only");
359  possigmarCmd1->SetParameterName("Sigmar",false,false);
360  possigmarCmd1->SetDefaultUnit("cm");
361  // possigmarCmd1->SetUnitCandidates("micron mm cm m km");
362 
363  possigmaxCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/pos/sigma_x",this);
364  possigmaxCmd1->SetGuidance("Set standard deviation of beam positional profile in x-dir");
365  possigmaxCmd1->SetGuidance(" applicable to Beam type source only");
366  possigmaxCmd1->SetParameterName("Sigmax",false,false);
367  possigmaxCmd1->SetDefaultUnit("cm");
368  // possigmaxCmd1->SetUnitCandidates("micron mm cm m km");
369 
370  possigmayCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/pos/sigma_y",this);
371  possigmayCmd1->SetGuidance("Set standard deviation of beam positional profile in y-dir");
372  possigmayCmd1->SetGuidance(" applicable to Beam type source only");
373  possigmayCmd1->SetParameterName("Sigmay",false,false);
374  possigmayCmd1->SetDefaultUnit("cm");
375  // possigmayCmd1->SetUnitCandidates("micron mm cm m km");
376 
377  paralpCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/pos/paralp",this);
378  paralpCmd1->SetGuidance("Angle from y-axis of y' in Para");
379  paralpCmd1->SetParameterName("paralp",false,false);
380  paralpCmd1->SetDefaultUnit("rad");
381  // paralpCmd1->SetUnitCandidates("rad deg");
382 
383  partheCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/pos/parthe",this);
384  partheCmd1->SetGuidance("Polar angle through centres of z faces");
385  partheCmd1->SetParameterName("parthe",false,false);
386  partheCmd1->SetDefaultUnit("rad");
387  // partheCmd1->SetUnitCandidates("rad deg");
388 
389  parphiCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/pos/parphi",this);
390  parphiCmd1->SetGuidance("Azimuth angle through centres of z faces");
391  parphiCmd1->SetParameterName("parphi",false,false);
392  parphiCmd1->SetDefaultUnit("rad");
393  // parphiCmd1->SetUnitCandidates("rad deg");
394 
395  confineCmd1 = new G4UIcmdWithAString("/gps/pos/confine",this);
396  confineCmd1->SetGuidance("Confine source to volume (NULL to unset).");
397  confineCmd1->SetGuidance("usage: confine VolName");
398  confineCmd1->SetParameterName("VolName",false,false);
399  confineCmd1->SetDefaultValue("NULL");
400 
401  // old implementations
402  typeCmd = new G4UIcmdWithAString("/gps/type",this);
403  typeCmd->SetGuidance("Sets source distribution type. (obsolete!)");
404  typeCmd->SetGuidance("Either Point, Beam, Plane, Surface or Volume");
405  typeCmd->SetParameterName("DisType",false,false);
406  typeCmd->SetDefaultValue("Point");
407  typeCmd->SetCandidates("Point Beam Plane Surface Volume");
408 
409  shapeCmd = new G4UIcmdWithAString("/gps/shape",this);
410  shapeCmd->SetGuidance("Sets source shape type.(obsolete!)");
411  shapeCmd->SetParameterName("Shape",false,false);
412  shapeCmd->SetDefaultValue("NULL");
413  shapeCmd->SetCandidates("Circle Annulus Ellipse Square Rectangle Sphere Ellipsoid Cylinder Para");
414 
415  centreCmd = new G4UIcmdWith3VectorAndUnit("/gps/centre",this);
416  centreCmd->SetGuidance("Set centre coordinates of source.(obsolete!)");
417  centreCmd->SetParameterName("X","Y","Z",false,false);
418  centreCmd->SetDefaultUnit("cm");
419  // centreCmd->SetUnitCandidates("micron mm cm m km");
420 
421  posrot1Cmd = new G4UIcmdWith3Vector("/gps/posrot1",this);
422  posrot1Cmd->SetGuidance("Set rotation matrix of x'.(obsolete!)");
423  posrot1Cmd->SetGuidance("Posrot1 does not need to be a unit vector.");
424  posrot1Cmd->SetParameterName("R1x","R1y","R1z",false,false);
425  posrot1Cmd->SetRange("R1x != 0 || R1y != 0 || R1z != 0");
426 
427  posrot2Cmd = new G4UIcmdWith3Vector("/gps/posrot2",this);
428  posrot2Cmd->SetGuidance("Set rotation matrix of y'.(obsolete!)");
429  posrot2Cmd->SetGuidance("Posrot2 does not need to be a unit vector.");
430  posrot2Cmd->SetParameterName("R2x","R2y","R2z",false,false);
431  posrot2Cmd->SetRange("R2x != 0 || R2y != 0 || R2z != 0");
432 
433  halfxCmd = new G4UIcmdWithADoubleAndUnit("/gps/halfx",this);
434  halfxCmd->SetGuidance("Set x half length of source.(obsolete!)");
435  halfxCmd->SetParameterName("Halfx",false,false);
436  halfxCmd->SetDefaultUnit("cm");
437  // halfxCmd->SetUnitCandidates("micron mm cm m km");
438 
439  halfyCmd = new G4UIcmdWithADoubleAndUnit("/gps/halfy",this);
440  halfyCmd->SetGuidance("Set y half length of source.(obsolete!)");
441  halfyCmd->SetParameterName("Halfy",false,false);
442  halfyCmd->SetDefaultUnit("cm");
443  // halfyCmd->SetUnitCandidates("micron mm cm m km");
444 
445  halfzCmd = new G4UIcmdWithADoubleAndUnit("/gps/halfz",this);
446  halfzCmd->SetGuidance("Set z half length of source.(obsolete!)");
447  halfzCmd->SetParameterName("Halfz",false,false);
448  halfzCmd->SetDefaultUnit("cm");
449  // halfzCmd->SetUnitCandidates("micron mm cm m km");
450 
451  radiusCmd = new G4UIcmdWithADoubleAndUnit("/gps/radius",this);
452  radiusCmd->SetGuidance("Set radius of source.(obsolete!)");
453  radiusCmd->SetParameterName("Radius",false,false);
454  radiusCmd->SetDefaultUnit("cm");
455  // radiusCmd->SetUnitCandidates("micron mm cm m km");
456 
457  radius0Cmd = new G4UIcmdWithADoubleAndUnit("/gps/radius0",this);
458  radius0Cmd->SetGuidance("Set inner radius of source.(obsolete!)");
459  radius0Cmd->SetParameterName("Radius0",false,false);
460  radius0Cmd->SetDefaultUnit("cm");
461  // radius0Cmd->SetUnitCandidates("micron mm cm m km");
462 
463  possigmarCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmaposr",this);
464  possigmarCmd->SetGuidance("Set standard deviation of beam position in radial(obsolete!)");
465  possigmarCmd->SetParameterName("Sigmar",false,false);
466  possigmarCmd->SetDefaultUnit("cm");
467  // possigmarCmd->SetUnitCandidates("micron mm cm m km");
468 
469  possigmaxCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmaposx",this);
470  possigmaxCmd->SetGuidance("Set standard deviation of beam position in x-dir(obsolete!)");
471  possigmaxCmd->SetParameterName("Sigmax",false,false);
472  possigmaxCmd->SetDefaultUnit("cm");
473  // possigmaxCmd->SetUnitCandidates("micron mm cm m km");
474 
475  possigmayCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmaposy",this);
476  possigmayCmd->SetGuidance("Set standard deviation of beam position in y-dir(obsolete!)");
477  possigmayCmd->SetParameterName("Sigmay",false,false);
478  possigmayCmd->SetDefaultUnit("cm");
479  // possigmayCmd->SetUnitCandidates("micron mm cm m km");
480 
481  paralpCmd = new G4UIcmdWithADoubleAndUnit("/gps/paralp",this);
482  paralpCmd->SetGuidance("Angle from y-axis of y' in Para(obsolete!)");
483  paralpCmd->SetParameterName("paralp",false,false);
484  paralpCmd->SetDefaultUnit("rad");
485  // paralpCmd->SetUnitCandidates("rad deg");
486 
487  partheCmd = new G4UIcmdWithADoubleAndUnit("/gps/parthe",this);
488  partheCmd->SetGuidance("Polar angle through centres of z faces(obsolete!)");
489  partheCmd->SetParameterName("parthe",false,false);
490  partheCmd->SetDefaultUnit("rad");
491  // partheCmd->SetUnitCandidates("rad deg");
492 
493  parphiCmd = new G4UIcmdWithADoubleAndUnit("/gps/parphi",this);
494  parphiCmd->SetGuidance("Azimuth angle through centres of z faces(obsolete!)");
495  parphiCmd->SetParameterName("parphi",false,false);
496  parphiCmd->SetDefaultUnit("rad");
497  // parphiCmd->SetUnitCandidates("rad deg");
498 
499  confineCmd = new G4UIcmdWithAString("/gps/confine",this);
500  confineCmd->SetGuidance("Confine source to volume (NULL to unset)(obsolete!) .");
501  confineCmd->SetGuidance("usage: confine VolName");
502  confineCmd->SetParameterName("VolName",false,false);
503  confineCmd->SetDefaultValue("NULL");
504 
505  // Angular distribution commands
506  angularDirectory = new G4UIdirectory("/gps/ang/");
507  angularDirectory->SetGuidance("Angular commands sub-directory");
508 
509  angtypeCmd1 = new G4UIcmdWithAString("/gps/ang/type",this);
510  angtypeCmd1->SetGuidance("Sets angular source distribution type");
511  angtypeCmd1->SetGuidance("Possible variables are: iso, cos, planar, beam1d, beam2d, focused or user");
512  angtypeCmd1->SetParameterName("AngDis",false,false);
513  angtypeCmd1->SetDefaultValue("iso");
514  angtypeCmd1->SetCandidates("iso cos planar beam1d beam2d focused user");
515 
516  angrot1Cmd1 = new G4UIcmdWith3Vector("/gps/ang/rot1",this);
517  angrot1Cmd1->SetGuidance("Sets the 1st vector for angular distribution rotation matrix");
518  angrot1Cmd1->SetGuidance("Need not be a unit vector");
519  angrot1Cmd1->SetParameterName("AR1x","AR1y","AR1z",false,false);
520  angrot1Cmd1->SetRange("AR1x != 0 || AR1y != 0 || AR1z != 0");
521 
522  angrot2Cmd1 = new G4UIcmdWith3Vector("/gps/ang/rot2",this);
523  angrot2Cmd1->SetGuidance("Sets the 2nd vector for angular distribution rotation matrix");
524  angrot2Cmd1->SetGuidance("Need not be a unit vector");
525  angrot2Cmd1->SetParameterName("AR2x","AR2y","AR2z",false,false);
526  angrot2Cmd1->SetRange("AR2x != 0 || AR2y != 0 || AR2z != 0");
527 
528  minthetaCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/ang/mintheta",this);
529  minthetaCmd1->SetGuidance("Set minimum theta");
530  minthetaCmd1->SetParameterName("MinTheta",false,false);
531  minthetaCmd1->SetDefaultValue(0.);
532  minthetaCmd1->SetDefaultUnit("rad");
533  // minthetaCmd1->SetUnitCandidates("rad deg");
534 
535  maxthetaCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/ang/maxtheta",this);
536  maxthetaCmd1->SetGuidance("Set maximum theta");
537  maxthetaCmd1->SetParameterName("MaxTheta",false,false);
538  maxthetaCmd1->SetDefaultValue(pi);
539  maxthetaCmd1->SetDefaultUnit("rad");
540  // maxthetaCmd1->SetUnitCandidates("rad deg");
541 
542  minphiCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/ang/minphi",this);
543  minphiCmd1->SetGuidance("Set minimum phi");
544  minphiCmd1->SetParameterName("MinPhi",false,false);
545  minphiCmd1->SetDefaultUnit("rad");
546  // minphiCmd1->SetUnitCandidates("rad deg");
547 
548  maxphiCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/ang/maxphi",this);
549  maxphiCmd1->SetGuidance("Set maximum phi");
550  maxphiCmd1->SetParameterName("MaxPhi",false,false);
551  maxphiCmd1->SetDefaultValue(pi);
552  maxphiCmd1->SetDefaultUnit("rad");
553  // maxphiCmd1->SetUnitCandidates("rad deg");
554 
555  angsigmarCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/ang/sigma_r",this);
556  angsigmarCmd1->SetGuidance("Set standard deviation in direction for 1D beam.");
557  angsigmarCmd1->SetParameterName("Sigmara",false,false);
558  angsigmarCmd1->SetDefaultUnit("rad");
559  // angsigmarCmd1->SetUnitCandidates("rad deg");
560 
561  angsigmaxCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/ang/sigma_x",this);
562  angsigmaxCmd1->SetGuidance("Set standard deviation in direction in x-direc. for 2D beam");
563  angsigmaxCmd1->SetParameterName("Sigmaxa",false,false);
564  angsigmaxCmd1->SetDefaultUnit("rad");
565  // angsigmaxCmd1->SetUnitCandidates("rad deg");
566 
567  angsigmayCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/ang/sigma_y",this);
568  angsigmayCmd1->SetGuidance("Set standard deviation in direction in y-direc. for 2D beam");
569  angsigmayCmd1->SetParameterName("Sigmaya",false,false);
570  angsigmayCmd1->SetDefaultUnit("rad");
571  // angsigmayCmd1->SetUnitCandidates("rad deg");
572 
573  angfocusCmd = new G4UIcmdWith3VectorAndUnit("/gps/ang/focuspoint",this);
574  angfocusCmd->SetGuidance("Set the focusing point for the beam");
575  angfocusCmd->SetParameterName("x","y","z",false,false);
576  angfocusCmd->SetDefaultUnit("cm");
577  // angfocusCmd->SetUnitCandidates("micron mm cm m km");
578 
579  useuserangaxisCmd1 = new G4UIcmdWithABool("/gps/ang/user_coor",this);
580  useuserangaxisCmd1->SetGuidance("true for using user defined angular co-ordinates");
581  useuserangaxisCmd1->SetGuidance("Default is false");
582  useuserangaxisCmd1->SetParameterName("useuserangaxis",true);
583  useuserangaxisCmd1->SetDefaultValue(false);
584 
585  surfnormCmd1 = new G4UIcmdWithABool("/gps/ang/surfnorm",this);
586  surfnormCmd1->SetGuidance("Makes a user-defined distribution with respect to surface normals rather than x,y,z axes.");
587  surfnormCmd1->SetGuidance("Default is false");
588  surfnormCmd1->SetParameterName("surfnorm",true);
589  surfnormCmd1->SetDefaultValue(false);
590 
591  // old ones
592  angtypeCmd = new G4UIcmdWithAString("/gps/angtype",this);
593  angtypeCmd->SetGuidance("Sets angular source distribution type (obsolete!)");
594  angtypeCmd->SetGuidance("Possible variables are: iso, cos planar beam1d beam2d or user");
595  angtypeCmd->SetParameterName("AngDis",false,false);
596  angtypeCmd->SetDefaultValue("iso");
597  angtypeCmd->SetCandidates("iso cos planar beam1d beam2d user");
598 
599  angrot1Cmd = new G4UIcmdWith3Vector("/gps/angrot1",this);
600  angrot1Cmd->SetGuidance("Sets the x' vector for angular distribution(obsolete!) ");
601  angrot1Cmd->SetGuidance("Need not be a unit vector");
602  angrot1Cmd->SetParameterName("AR1x","AR1y","AR1z",false,false);
603  angrot1Cmd->SetRange("AR1x != 0 || AR1y != 0 || AR1z != 0");
604 
605  angrot2Cmd = new G4UIcmdWith3Vector("/gps/angrot2",this);
606  angrot2Cmd->SetGuidance("Sets the y' vector for angular distribution (obsolete!)");
607  angrot2Cmd->SetGuidance("Need not be a unit vector");
608  angrot2Cmd->SetParameterName("AR2x","AR2y","AR2z",false,false);
609  angrot2Cmd->SetRange("AR2x != 0 || AR2y != 0 || AR2z != 0");
610 
611  minthetaCmd = new G4UIcmdWithADoubleAndUnit("/gps/mintheta",this);
612  minthetaCmd->SetGuidance("Set minimum theta (obsolete!)");
613  minthetaCmd->SetParameterName("MinTheta",false,false);
614  minthetaCmd->SetDefaultUnit("rad");
615  // minthetaCmd->SetUnitCandidates("rad deg");
616 
617  maxthetaCmd = new G4UIcmdWithADoubleAndUnit("/gps/maxtheta",this);
618  maxthetaCmd->SetGuidance("Set maximum theta (obsolete!)");
619  maxthetaCmd->SetParameterName("MaxTheta",false,false);
620  maxthetaCmd->SetDefaultValue(3.1416);
621  maxthetaCmd->SetDefaultUnit("rad");
622  // maxthetaCmd->SetUnitCandidates("rad deg");
623 
624  minphiCmd = new G4UIcmdWithADoubleAndUnit("/gps/minphi",this);
625  minphiCmd->SetGuidance("Set minimum phi (obsolete!)");
626  minphiCmd->SetParameterName("MinPhi",false,false);
627  minphiCmd->SetDefaultUnit("rad");
628  // minphiCmd->SetUnitCandidates("rad deg");
629 
630  maxphiCmd = new G4UIcmdWithADoubleAndUnit("/gps/maxphi",this);
631  maxphiCmd->SetGuidance("Set maximum phi(obsolete!)");
632  maxphiCmd->SetParameterName("MaxPhi",false,false);
633  maxphiCmd->SetDefaultUnit("rad");
634  // maxphiCmd->SetUnitCandidates("rad deg");
635 
636  angsigmarCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmaangr",this);
637  angsigmarCmd->SetGuidance("Set standard deviation of beam direction in radial(obsolete!).");
638  angsigmarCmd->SetParameterName("Sigmara",false,false);
639  angsigmarCmd->SetDefaultUnit("rad");
640  // angsigmarCmd->SetUnitCandidates("rad deg");
641 
642  angsigmaxCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmaangx",this);
643  angsigmaxCmd->SetGuidance("Set standard deviation of beam direction in x-direc(obsolete!).");
644  angsigmaxCmd->SetParameterName("Sigmaxa",false,false);
645  angsigmaxCmd->SetDefaultUnit("rad");
646  // angsigmaxCmd->SetUnitCandidates("rad deg");
647 
648  angsigmayCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmaangy",this);
649  angsigmayCmd->SetGuidance("Set standard deviation of beam direction in y-direc.(obsolete!)");
650  angsigmayCmd->SetParameterName("Sigmaya",false,false);
651  angsigmayCmd->SetDefaultUnit("rad");
652  // angsigmayCmd->SetUnitCandidates("rad deg");
653 
654  useuserangaxisCmd = new G4UIcmdWithABool("/gps/useuserangaxis",this);
655  useuserangaxisCmd->SetGuidance("true for using user defined angular co-ordinates(obsolete!)");
656  useuserangaxisCmd->SetGuidance("Default is false");
657  useuserangaxisCmd->SetParameterName("useuserangaxis",true);
658  useuserangaxisCmd->SetDefaultValue(false);
659 
660  surfnormCmd = new G4UIcmdWithABool("/gps/surfnorm",this);
661  surfnormCmd->SetGuidance("Makes a user-defined distribution with respect to surface normals rather than x,y,z axes (obsolete!).");
662  surfnormCmd->SetGuidance("Default is false");
663  surfnormCmd->SetParameterName("surfnorm",true);
664  surfnormCmd->SetDefaultValue(false);
665 
666  // Energy commands
667 
668  energyDirectory = new G4UIdirectory("/gps/ene/");
669  energyDirectory->SetGuidance("Spectral commands sub-directory");
670 
671  energytypeCmd1 = new G4UIcmdWithAString("/gps/ene/type",this);
672  energytypeCmd1->SetGuidance("Sets energy distribution type");
673  energytypeCmd1->SetParameterName("EnergyDis",false,false);
674  energytypeCmd1->SetDefaultValue("Mono");
675  energytypeCmd1->SetCandidates("Mono Lin Pow Exp Gauss Brem Bbody Cdg User Arb Epn");
676 
677  eminCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/ene/min",this);
678  eminCmd1->SetGuidance("Sets minimum energy");
679  eminCmd1->SetParameterName("emin",false,false);
680  eminCmd1->SetDefaultUnit("keV");
681  // eminCmd1->SetUnitCandidates("eV keV MeV GeV TeV PeV");
682 
683  emaxCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/ene/max",this);
684  emaxCmd1->SetGuidance("Sets maximum energy");
685  emaxCmd1->SetParameterName("emax",false,false);
686  emaxCmd1->SetDefaultUnit("keV");
687  // emaxCmd1->SetUnitCandidates("eV keV MeV GeV TeV PeV");
688 
689  monoenergyCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/ene/mono",this);
690  monoenergyCmd1->SetGuidance("Sets a monocromatic energy (same as gps/energy)");
691  monoenergyCmd1->SetParameterName("monoenergy",false,false);
692  monoenergyCmd1->SetDefaultUnit("keV");
693  // monoenergyCmd1->SetUnitCandidates("eV keV MeV GeV TeV PeV");
694 
695  engsigmaCmd1 = new G4UIcmdWithADoubleAndUnit("/gps/ene/sigma",this);
696  engsigmaCmd1->SetGuidance("Sets the standard deviation for Gaussian energy dist.");
697  engsigmaCmd1->SetParameterName("Sigmae",false,false);
698  engsigmaCmd1->SetDefaultUnit("keV");
699  // engsigmaCmd1->SetUnitCandidates("eV keV MeV GeV TeV PeV");
700 
701  alphaCmd1 = new G4UIcmdWithADouble("/gps/ene/alpha",this);
702  alphaCmd1->SetGuidance("Sets Alpha (index) for power-law energy dist.");
703  alphaCmd1->SetParameterName("alpha",false,false);
704 
705  tempCmd1 = new G4UIcmdWithADouble("/gps/ene/temp",this);
706  tempCmd1->SetGuidance("Sets the temperature for Brem and BBody distributions (in Kelvin)");
707  tempCmd1->SetParameterName("temp",false,false);
708 
709  ezeroCmd1 = new G4UIcmdWithADouble("/gps/ene/ezero",this);
710  ezeroCmd1->SetGuidance("Sets E_0 for exponential distribution (in MeV)");
711  ezeroCmd1->SetParameterName("ezero",false,false);
712 
713  gradientCmd1 = new G4UIcmdWithADouble("/gps/ene/gradient",this);
714  gradientCmd1->SetGuidance("Sets the gradient for Lin distribution (in 1/MeV)");
715  gradientCmd1->SetParameterName("gradient",false,false);
716 
717  interceptCmd1 = new G4UIcmdWithADouble("/gps/ene/intercept",this);
718  interceptCmd1->SetGuidance("Sets the intercept for Lin distributions (in MeV)");
719  interceptCmd1->SetParameterName("intercept",false,false);
720 
721  arbeintCmd1 = new G4UIcmdWithADouble("/gps/ene/biasAlpha",this);
722  arbeintCmd1->SetGuidance("Set the power-law index for the energy sampling distri. )");
723  arbeintCmd1->SetParameterName("arbeint",false,false);
724 
725  calculateCmd1 = new G4UIcmdWithoutParameter("/gps/ene/calculate",this);
726  calculateCmd1->SetGuidance("Calculates the distributions for Cdg and BBody");
727 
728  energyspecCmd1 = new G4UIcmdWithABool("/gps/ene/emspec",this);
729  energyspecCmd1->SetGuidance("True for energy and false for momentum spectra");
730  energyspecCmd1->SetParameterName("energyspec",true);
731  energyspecCmd1->SetDefaultValue(true);
732 
733  diffspecCmd1 = new G4UIcmdWithABool("/gps/ene/diffspec",this);
734  diffspecCmd1->SetGuidance("True for differential and flase for integral spectra");
735  diffspecCmd1->SetParameterName("diffspec",true);
736  diffspecCmd1->SetDefaultValue(true);
737 
738  //old ones
739  energytypeCmd = new G4UIcmdWithAString("/gps/energytype",this);
740  energytypeCmd->SetGuidance("Sets energy distribution type (obsolete!)");
741  energytypeCmd->SetParameterName("EnergyDis",false,false);
742  energytypeCmd->SetDefaultValue("Mono");
743  energytypeCmd->SetCandidates("Mono Lin Pow Exp Gauss Brem Bbody Cdg User Arb Epn");
744 
745  eminCmd = new G4UIcmdWithADoubleAndUnit("/gps/emin",this);
746  eminCmd->SetGuidance("Sets Emin (obsolete!)");
747  eminCmd->SetParameterName("emin",false,false);
748  eminCmd->SetDefaultUnit("keV");
749  // eminCmd->SetUnitCandidates("eV keV MeV GeV TeV PeV");
750 
751  emaxCmd = new G4UIcmdWithADoubleAndUnit("/gps/emax",this);
752  emaxCmd->SetGuidance("Sets Emax (obsolete!)");
753  emaxCmd->SetParameterName("emax",false,false);
754  emaxCmd->SetDefaultUnit("keV");
755  // emaxCmd->SetUnitCandidates("eV keV MeV GeV TeV PeV");
756 
757  monoenergyCmd = new G4UIcmdWithADoubleAndUnit("/gps/monoenergy",this);
758  monoenergyCmd->SetGuidance("Sets Monoenergy (obsolete, use gps/energy instead!)");
759  monoenergyCmd->SetParameterName("monoenergy",false,false);
760  monoenergyCmd->SetDefaultUnit("keV");
761  // monoenergyCmd->SetUnitCandidates("eV keV MeV GeV TeV PeV");
762 
763  engsigmaCmd = new G4UIcmdWithADoubleAndUnit("/gps/sigmae",this);
764  engsigmaCmd->SetGuidance("Sets the standard deviation for Gaussian energy dist.(obsolete!)");
765  engsigmaCmd->SetParameterName("Sigmae",false,false);
766  engsigmaCmd->SetDefaultUnit("keV");
767  // engsigmaCmd->SetUnitCandidates("eV keV MeV GeV TeV PeV");
768 
769  alphaCmd = new G4UIcmdWithADouble("/gps/alpha",this);
770  alphaCmd->SetGuidance("Sets Alpha (index) for power-law energy dist(obsolete!).");
771  alphaCmd->SetParameterName("alpha",false,false);
772 
773  tempCmd = new G4UIcmdWithADouble("/gps/temp",this);
774  tempCmd->SetGuidance("Sets the temperature for Brem and BBody (in Kelvin)(obsolete!)");
775  tempCmd->SetParameterName("temp",false,false);
776 
777  ezeroCmd = new G4UIcmdWithADouble("/gps/ezero",this);
778  ezeroCmd->SetGuidance("Sets ezero exponential distributions (in MeV)(obsolete!)");
779  ezeroCmd->SetParameterName("ezero",false,false);
780 
781  gradientCmd = new G4UIcmdWithADouble("/gps/gradient",this);
782  gradientCmd->SetGuidance("Sets the gradient for Lin distributions (in 1/MeV)(obsolete!)");
783  gradientCmd->SetParameterName("gradient",false,false);
784 
785  interceptCmd = new G4UIcmdWithADouble("/gps/intercept",this);
786  interceptCmd->SetGuidance("Sets the intercept for Lin distributions (in MeV)(obsolete!)");
787  interceptCmd->SetParameterName("intercept",false,false);
788 
789  calculateCmd = new G4UIcmdWithoutParameter("/gps/calculate",this);
790  calculateCmd->SetGuidance("Calculates distributions for Cdg and BBody(obsolete!)");
791 
792  energyspecCmd = new G4UIcmdWithABool("/gps/energyspec",this);
793  energyspecCmd->SetGuidance("True for energy and false for momentum spectra(obsolete!)");
794  energyspecCmd->SetParameterName("energyspec",true);
795  energyspecCmd->SetDefaultValue(true);
796 
797  diffspecCmd = new G4UIcmdWithABool("/gps/diffspec",this);
798  diffspecCmd->SetGuidance("True for differential and flase for integral spectra(obsolete!)");
799  diffspecCmd->SetParameterName("diffspec",true);
800  diffspecCmd->SetDefaultValue(true);
801 
802  // Biasing + histograms in general
803  histDirectory = new G4UIdirectory("/gps/hist/");
804  histDirectory->SetGuidance("Histogram, biasing commands sub-directory");
805 
806  histnameCmd1 = new G4UIcmdWithAString("/gps/hist/type",this);
807  histnameCmd1->SetGuidance("Sets histogram type");
808  histnameCmd1->SetParameterName("HistType",false,false);
809  histnameCmd1->SetDefaultValue("biasx");
810  histnameCmd1->SetCandidates("biasx biasy biasz biast biasp biase biaspt biaspp theta phi energy arb epn");
811 
812  resethistCmd1 = new G4UIcmdWithAString("/gps/hist/reset",this);
813  resethistCmd1->SetGuidance("Reset (clean) the histogram ");
814  resethistCmd1->SetParameterName("HistType",false,false);
815  resethistCmd1->SetDefaultValue("energy");
816  resethistCmd1->SetCandidates("biasx biasy biasz biast biasp biase biaspt biaspp theta phi energy arb epn");
817 
818  histpointCmd1 = new G4UIcmdWith3Vector("/gps/hist/point",this);
819  histpointCmd1->SetGuidance("Allows user to define a histogram");
820  histpointCmd1->SetGuidance("Enter: Ehi Weight");
821  histpointCmd1->SetParameterName("Ehi","Weight","Junk",true,true);
822  histpointCmd1->SetRange("Ehi >= 0. && Weight >= 0.");
823 
824  histfileCmd1 = new G4UIcmdWithAString("/gps/hist/file",this);
825  histfileCmd1->SetGuidance("import the arb energy hist in an ASCII file");
826  histfileCmd1->SetParameterName("HistFile",false,false);
827 
828  arbintCmd1 = new G4UIcmdWithAString("/gps/hist/inter",this);
829  arbintCmd1->SetGuidance("Sets the interpolation method for arbitrary distribution.");
830  arbintCmd1->SetParameterName("int",false,false);
831  arbintCmd1->SetDefaultValue("Lin");
832  arbintCmd1->SetCandidates("Lin Log Exp Spline");
833 
834  // old ones
835  histnameCmd = new G4UIcmdWithAString("/gps/histname",this);
836  histnameCmd->SetGuidance("Sets histogram type (obsolete!)");
837  histnameCmd->SetParameterName("HistType",false,false);
838  histnameCmd->SetDefaultValue("biasx");
839  histnameCmd->SetCandidates("biasx biasy biasz biast biasp biase biaspt biaspp theta phi energy arb epn");
840 
841  // re-set the histograms
842  resethistCmd = new G4UIcmdWithAString("/gps/resethist",this);
843  resethistCmd->SetGuidance("Re-Set the histogram (obsolete!)");
844  resethistCmd->SetParameterName("HistType",false,false);
845  resethistCmd->SetDefaultValue("energy");
846  resethistCmd->SetCandidates("biasx biasy biasz biast biasp biase biaspt biaspp theta phi energy arb epn");
847 
848  histpointCmd = new G4UIcmdWith3Vector("/gps/histpoint",this);
849  histpointCmd->SetGuidance("Allows user to define a histogram (obsolete!)");
850  histpointCmd->SetGuidance("Enter: Ehi Weight");
851  histpointCmd->SetParameterName("Ehi","Weight","Junk",false,false);
852  histpointCmd->SetRange("Ehi >= 0. && Weight >= 0.");
853 
854  arbintCmd = new G4UIcmdWithAString("/gps/arbint",this);
855  arbintCmd->SetGuidance("Sets Arbitrary Interpolation type.(obsolete!) ");
856  arbintCmd->SetParameterName("int",false,false);
857  arbintCmd->SetDefaultValue("NULL");
858  arbintCmd->SetCandidates("Lin Log Exp Spline");
859 
860 }
861 
863 {
864  delete positionDirectory;
865  delete typeCmd;
866  delete shapeCmd;
867  delete centreCmd;
868  delete posrot1Cmd;
869  delete posrot2Cmd;
870  delete halfxCmd;
871  delete halfyCmd;
872  delete halfzCmd;
873  delete radiusCmd;
874  delete radius0Cmd;
875  delete possigmarCmd;
876  delete possigmaxCmd;
877  delete possigmayCmd;
878  delete paralpCmd;
879  delete partheCmd;
880  delete parphiCmd;
881  delete confineCmd;
882  delete typeCmd1;
883  delete shapeCmd1;
884  delete centreCmd1;
885  delete posrot1Cmd1;
886  delete posrot2Cmd1;
887  delete halfxCmd1;
888  delete halfyCmd1;
889  delete halfzCmd1;
890  delete radiusCmd1;
891  delete radius0Cmd1;
892  delete possigmarCmd1;
893  delete possigmaxCmd1;
894  delete possigmayCmd1;
895  delete paralpCmd1;
896  delete partheCmd1;
897  delete parphiCmd1;
898  delete confineCmd1;
899 
900  delete angularDirectory;
901  delete angtypeCmd;
902  delete angrot1Cmd;
903  delete angrot2Cmd;
904  delete minthetaCmd;
905  delete maxthetaCmd;
906  delete minphiCmd;
907  delete maxphiCmd;
908  delete angsigmarCmd;
909  delete angsigmaxCmd;
910  delete angsigmayCmd;
911  delete useuserangaxisCmd;
912  delete surfnormCmd;
913  delete angtypeCmd1;
914  delete angrot1Cmd1;
915  delete angrot2Cmd1;
916  delete minthetaCmd1;
917  delete maxthetaCmd1;
918  delete minphiCmd1;
919  delete maxphiCmd1;
920  delete angsigmarCmd1;
921  delete angsigmaxCmd1;
922  delete angsigmayCmd1;
923  delete angfocusCmd;
924  delete useuserangaxisCmd1;
925  delete surfnormCmd1;
926 
927  delete energyDirectory;
928  delete energytypeCmd;
929  delete eminCmd;
930  delete emaxCmd;
931  delete monoenergyCmd;
932  delete engsigmaCmd;
933  delete alphaCmd;
934  delete tempCmd;
935  delete ezeroCmd;
936  delete gradientCmd;
937  delete interceptCmd;
938  delete calculateCmd;
939  delete energyspecCmd;
940  delete diffspecCmd;
941  delete energytypeCmd1;
942  delete eminCmd1;
943  delete emaxCmd1;
944  delete monoenergyCmd1;
945  delete engsigmaCmd1;
946  delete alphaCmd1;
947  delete tempCmd1;
948  delete ezeroCmd1;
949  delete gradientCmd1;
950  delete interceptCmd1;
951  delete arbeintCmd1;
952  delete calculateCmd1;
953  delete energyspecCmd1;
954  delete diffspecCmd1;
955 
956  delete histDirectory;
957  delete histnameCmd;
958  delete resethistCmd;
959  delete histpointCmd;
960  delete arbintCmd;
961  delete histnameCmd1;
962  delete resethistCmd1;
963  delete histpointCmd1;
964  delete histfileCmd1;
965  delete arbintCmd1;
966 
967  delete verbosityCmd;
968  delete ionCmd;
969  delete ionLvlCmd;
970  delete particleCmd;
971  delete timeCmd;
972  delete polCmd;
973  delete numberCmd;
974  delete positionCmd;
975  delete directionCmd;
976  delete energyCmd;
977  delete listCmd;
978 
979  delete sourceDirectory;
980  delete addsourceCmd;
981  delete listsourceCmd;
982  delete clearsourceCmd;
983  delete getsourceCmd;
984  delete setsourceCmd;
985  delete setintensityCmd;
986  delete deletesourceCmd;
987  delete multiplevertexCmd;
988  delete flatsamplingCmd;
989 
990  delete gpsDirectory;
991  theInstance = 0;
992 }
993 
994 
995 #define CHECKPG() { if (fParticleGun==NULL) { \
996  G4Exception("G4GeneralParticleSourceMessenger::SetNewValue","G4GPS003",\
997  FatalException,"Before using this command set a partilce gun"); return;\
998  } }
999 
1000 
1002 {
1003  if(command == typeCmd)
1004  {
1005  CHECKPG(); fParticleGun->GetPosDist()->SetPosDisType(newValues);
1006  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1007  << " The command is obsolete and will be removed soon." << G4endl
1008  << " Please try to use the new structured commands!" << G4endl;
1009  }
1010  else if(command == shapeCmd)
1011  {
1012  CHECKPG(); fParticleGun->GetPosDist()->SetPosDisShape(newValues);
1013  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1014  << " The command is obsolete and will be removed soon." << G4endl
1015  << " Please try to use the new structured commands!" << G4endl;
1016  }
1017  else if(command == centreCmd)
1018  {
1020  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1021  << " The command is obsolete and will be removed soon." << G4endl
1022  << " Please try to use the new structured commands!" << G4endl;
1023  }
1024  else if(command == posrot1Cmd)
1025  {
1027  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1028  << " The command is obsolete and will be removed soon." << G4endl
1029  << " Please try to use the new structured commands!" << G4endl;
1030  }
1031  else if(command == posrot2Cmd)
1032  {
1034  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1035  << " The command is obsolete and will be removed soon." << G4endl
1036  << " Please try to use the new structured commands!" << G4endl;
1037  }
1038  else if(command == halfxCmd)
1039  {
1041  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1042  << " The command is obsolete and will be removed soon." << G4endl
1043  << " Please try to use the new structured commands!" << G4endl;
1044  }
1045  else if(command == halfyCmd)
1046  {
1048  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1049  << " The command is obsolete and will be removed soon." << G4endl
1050  << " Please try to use the new structured commands!" << G4endl;
1051  }
1052  else if(command == halfzCmd)
1053  {
1055  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1056  << " The command is obsolete and will be removed soon." << G4endl
1057  << " Please try to use the new structured commands!" << G4endl;
1058  }
1059  else if(command == radiusCmd)
1060  {
1062  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1063  << " The command is obsolete and will be removed soon." << G4endl
1064  << " Please try to use the new structured commands!" << G4endl;
1065  }
1066  else if(command == radius0Cmd)
1067  {
1069  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1070  << " The command is obsolete and will be removed soon." << G4endl
1071  << " Please try to use the new structured commands!" << G4endl;
1072  }
1073  else if(command == possigmarCmd)
1074  {
1076  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1077  << " The command is obsolete and will be removed soon." << G4endl
1078  << " Please try to use the new structured commands!" << G4endl;
1079  }
1080  else if(command == possigmaxCmd)
1081  {
1083  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1084  << " The command is obsolete and will be removed soon." << G4endl
1085  << " Please try to use the new structured commands!" << G4endl;
1086  }
1087  else if(command == possigmayCmd)
1088  {
1090  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1091  << " The command is obsolete and will be removed soon." << G4endl
1092  << " Please try to use the new structured commands!" << G4endl;
1093  }
1094  else if(command == paralpCmd)
1095  {
1097  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1098  << " The command is obsolete and will be removed soon." << G4endl
1099  << " Please try to use the new structured commands!" << G4endl;
1100  }
1101  else if(command == partheCmd)
1102  {
1104  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1105  << " The command is obsolete and will be removed soon." << G4endl
1106  << " Please try to use the new structured commands!" << G4endl;
1107  }
1108  else if(command == parphiCmd)
1109  {
1111  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1112  << " The command is obsolete and will be removed soon." << G4endl
1113  << " Please try to use the new structured commands!" << G4endl;
1114  }
1115  else if(command == confineCmd)
1116  {
1118  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1119  << " The command is obsolete and will be removed soon." << G4endl
1120  << " Please try to use the new structured commands!" << G4endl;
1121  }
1122  else if(command == angtypeCmd)
1123  {
1124  CHECKPG(); fParticleGun->GetAngDist()->SetAngDistType(newValues);
1125  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1126  << " The command is obsolete and will be removed soon." << G4endl
1127  << " Please try to use the new structured commands!" << G4endl;
1128  }
1129  else if(command == angrot1Cmd)
1130  {
1131  CHECKPG();
1132  G4String a = "angref1";
1134  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1135  << " The command is obsolete and will be removed soon." << G4endl
1136  << " Please try to use the new structured commands!" << G4endl;
1137  }
1138  else if(command == angrot2Cmd)
1139  {
1140  CHECKPG();
1141  G4String a = "angref2";
1143  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1144  << " The command is obsolete and will be removed soon." << G4endl
1145  << " Please try to use the new structured commands!" << G4endl;
1146  }
1147  else if(command == minthetaCmd)
1148  {
1150  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1151  << " The command is obsolete and will be removed soon." << G4endl
1152  << " Please try to use the new structured commands!" << G4endl;
1153  }
1154  else if(command == minphiCmd)
1155  {
1157  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1158  << " The command is obsolete and will be removed soon." << G4endl
1159  << " Please try to use the new structured commands!" << G4endl;
1160  }
1161  else if(command == maxthetaCmd)
1162  {
1164  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1165  << " The command is obsolete and will be removed soon." << G4endl
1166  << " Please try to use the new structured commands!" << G4endl;
1167  }
1168  else if(command == maxphiCmd)
1169  {
1171  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1172  << " The command is obsolete and will be removed soon." << G4endl
1173  << " Please try to use the new structured commands!" << G4endl;
1174  }
1175  else if(command == angsigmarCmd)
1176  {
1178  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1179  << " The command is obsolete and will be removed soon." << G4endl
1180  << " Please try to use the new structured commands!" << G4endl;
1181  }
1182  else if(command == angsigmaxCmd)
1183  {
1185  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1186  << " The command is obsolete and will be removed soon." << G4endl
1187  << " Please try to use the new structured commands!" << G4endl;
1188  }
1189  else if(command == angsigmayCmd)
1190  {
1192  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1193  << " The command is obsolete and will be removed soon." << G4endl
1194  << " Please try to use the new structured commands!" << G4endl;
1195  }
1196  else if(command == useuserangaxisCmd)
1197  {
1199  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1200  << " The command is obsolete and will be removed soon." << G4endl
1201  << " Please try to use the new structured commands!" << G4endl;
1202  }
1203  else if(command == surfnormCmd)
1204  {
1206  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1207  << " The command is obsolete and will be removed soon." << G4endl
1208  << " Please try to use the new structured commands!" << G4endl;
1209  }
1210  else if(command == energytypeCmd)
1211  {
1212  CHECKPG(); fParticleGun->GetEneDist()->SetEnergyDisType(newValues);
1213  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1214  << " The command is obsolete and will be removed soon." << G4endl
1215  << " Please try to use the new structured commands!" << G4endl;
1216  }
1217  else if(command == eminCmd)
1218  {
1220  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1221  << " The command is obsolete and will be removed soon." << G4endl
1222  << " Please try to use the new structured commands!" << G4endl;
1223  }
1224  else if(command == emaxCmd)
1225  {
1227  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1228  << " The command is obsolete and will be removed soon." << G4endl
1229  << " Please try to use the new structured commands!" << G4endl;
1230  }
1231  else if(command == monoenergyCmd)
1232  {
1234  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1235  << " The command is obsolete and will be removed soon." << G4endl
1236  << " Please try to use the new structured commands!" << G4endl;
1237  }
1238  else if(command == engsigmaCmd)
1239  {
1241  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1242  << " The command is obsolete and will be removed soon." << G4endl
1243  << " Please try to use the new structured commands!" << G4endl;
1244  }
1245  else if(command == alphaCmd)
1246  {
1248  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1249  << " The command is obsolete and will be removed soon." << G4endl
1250  << " Please try to use the new structured commands!" << G4endl;
1251  }
1252  else if(command == tempCmd)
1253  {
1255  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1256  << " The command is obsolete and will be removed soon." << G4endl
1257  << " Please try to use the new structured commands!" << G4endl;
1258  }
1259  else if(command == ezeroCmd)
1260  {
1262  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1263  << " The command is obsolete and will be removed soon." << G4endl
1264  << " Please try to use the new structured commands!" << G4endl;
1265  }
1266  else if(command == gradientCmd)
1267  {
1269  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1270  << " The command is obsolete and will be removed soon." << G4endl
1271  << " Please try to use the new structured commands!" << G4endl;
1272  }
1273  else if(command == interceptCmd)
1274  {
1276  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1277  << " The command is obsolete and will be removed soon." << G4endl
1278  << " Please try to use the new structured commands!" << G4endl;
1279  }
1280  else if(command == calculateCmd)
1281  {
1283  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1284  << " The command is obsolete and will be removed soon." << G4endl
1285  << " Please try to use the new structured commands!" << G4endl;
1286  }
1287  else if(command == energyspecCmd)
1288  {
1290  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1291  << " The command is obsolete and will be removed soon." << G4endl
1292  << " Please try to use the new structured commands!" << G4endl;
1293  }
1294  else if(command == diffspecCmd)
1295  {
1297  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1298  << " The command is obsolete and will be removed soon." << G4endl
1299  << " Please try to use the new structured commands!" << G4endl;
1300  }
1301  else if(command == histnameCmd)
1302  {
1303  histtype = newValues;
1304  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1305  << " The command is obsolete and will be removed soon." << G4endl
1306  << " Please try to use the new structured commands!" << G4endl;
1307  }
1308  else if(command == histpointCmd)
1309  {
1310  CHECKPG();
1311  if(histtype == "biasx")
1313  if(histtype == "biasy")
1315  if(histtype == "biasz")
1317  if(histtype == "biast")
1319  if(histtype == "biasp")
1321  if(histtype == "biase")
1323  if(histtype == "theta")
1325  if(histtype == "phi")
1327  if(histtype == "energy")
1329  if(histtype == "arb")
1331  if(histtype == "epn")
1333  G4cout << " G4GeneralParticleSourceMessenger - Warning: The command is obsolete and will be removed soon. Please try to use the new structured commands!" << G4endl;
1334  }
1335  else if(command == resethistCmd)
1336  {
1337  CHECKPG();
1338  if(newValues == "theta" || newValues == "phi") {
1339  fParticleGun->GetAngDist()->ReSetHist(newValues);
1340  } else if (newValues == "energy" || newValues == "arb" || newValues == "epn") {
1341  fParticleGun->GetEneDist()->ReSetHist(newValues);
1342  } else {
1343  fParticleGun->GetBiasRndm()->ReSetHist(newValues);
1344  }
1345  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1346  << " The command is obsolete and will be removed soon." << G4endl
1347  << " Please try to use the new structured commands!" << G4endl;
1348  }
1349  else if(command == arbintCmd)
1350  {
1351  CHECKPG();
1352  fParticleGun->GetEneDist()->ArbInterpolate(newValues);
1353  G4cout << " G4GeneralParticleSourceMessenger - Warning:" << G4endl
1354  << " The command is obsolete and will be removed soon." << G4endl
1355  << " Please try to use the new structured commands!" << G4endl;
1356  }
1357  else if( command==directionCmd )
1358  {
1359  CHECKPG();
1360  fParticleGun->GetAngDist()->SetAngDistType("planar");
1362  }
1363  else if( command==energyCmd )
1364  {
1365  CHECKPG();
1368  }
1369  else if( command==positionCmd )
1370  {
1371  CHECKPG();
1372  fParticleGun->GetPosDist()->SetPosDisType("Point");
1374  }
1375  else if(command == verbosityCmd)
1376  {
1377  CHECKPG();
1379  }
1380  else if( command==particleCmd )
1381  {
1382  if (newValues =="ion") {
1383  fShootIon = true;
1384  } else {
1385  fShootIon = false;
1387  if(pd != NULL)
1389  }
1390  }
1391  else if( command==timeCmd )
1393  else if( command==polCmd )
1395  else if( command==numberCmd )
1397  else if( command==ionCmd )
1398  { IonCommand(newValues); }
1399  else if( command==ionLvlCmd )
1400  { IonLvlCommand(newValues); }
1401  else if( command==listCmd ){
1403  }
1404  else if( command==addsourceCmd )
1405  {
1407  }
1408  else if( command==listsourceCmd )
1409  {
1410  fGPS->ListSource();
1411  }
1412  else if( command==clearsourceCmd )
1413  {
1414  fGPS->ClearAll();
1415  }
1416  else if( command==getsourceCmd )
1417  {
1418  G4cout << " Current source index:" << fGPS->GetCurrentSourceIndex()
1419  << " ; Intensity:" << fGPS->GetCurrentSourceIntensity() << G4endl;
1420  }
1421  else if( command==setsourceCmd )
1422  {
1424  }
1425  else if( command==setintensityCmd )
1426  {
1428  }
1429  else if( command==deletesourceCmd )
1430  {
1432  }
1433  else if(command == multiplevertexCmd)
1434  {
1436  }
1437  else if(command == flatsamplingCmd)
1438  {
1440  }
1441  //
1442  // new implementations
1443  //
1444  //
1445  else if(command == typeCmd1)
1446  {
1447  CHECKPG();
1448  fParticleGun->GetPosDist()->SetPosDisType(newValues);
1449  }
1450  else if(command == shapeCmd1)
1451  {
1452  CHECKPG();
1453  fParticleGun->GetPosDist()->SetPosDisShape(newValues);
1454  }
1455  else if(command == centreCmd1)
1456  {
1457  CHECKPG();
1459  }
1460  else if(command == posrot1Cmd1)
1461  {
1462  CHECKPG();
1464  }
1465  else if(command == posrot2Cmd1)
1466  {
1467  CHECKPG();
1469  }
1470  else if(command == halfxCmd1)
1471  {
1472  CHECKPG();
1474  }
1475  else if(command == halfyCmd1)
1476  {
1477  CHECKPG();
1479  }
1480  else if(command == halfzCmd1)
1481  {
1482  CHECKPG();
1484  }
1485  else if(command == radiusCmd1)
1486  {
1487  CHECKPG();
1489  }
1490  else if(command == radius0Cmd1)
1491  {
1492  CHECKPG();
1494  }
1495  else if(command == possigmarCmd1)
1496  {
1497  CHECKPG();
1499  }
1500  else if(command == possigmaxCmd1)
1501  {
1503  }
1504  else if(command == possigmayCmd1)
1505  {
1507  }
1508  else if(command == paralpCmd1)
1509  {
1511  }
1512  else if(command == partheCmd1)
1513  {
1515  }
1516  else if(command == parphiCmd1)
1517  {
1519  }
1520  else if(command == confineCmd1)
1521  {
1523  }
1524  else if(command == angtypeCmd1)
1525  {
1526  CHECKPG(); fParticleGun->GetAngDist()->SetAngDistType(newValues);
1527  }
1528  else if(command == angrot1Cmd1)
1529  {
1530  CHECKPG();
1531  G4String a = "angref1";
1533  }
1534  else if(command == angrot2Cmd1)
1535  {
1536  CHECKPG();
1537  G4String a = "angref2";
1539  }
1540  else if(command == minthetaCmd1)
1541  {
1542  CHECKPG();
1544  }
1545  else if(command == minphiCmd1)
1546  {
1548  }
1549  else if(command == maxthetaCmd1)
1550  {
1552  }
1553  else if(command == maxphiCmd1)
1554  {
1556  }
1557  else if(command == angsigmarCmd1)
1558  {
1560  }
1561  else if(command == angsigmaxCmd1)
1562  {
1564  }
1565  else if(command == angsigmayCmd1)
1566  {
1568  }
1569  else if(command == angfocusCmd)
1570  {
1572  }
1573  else if(command == useuserangaxisCmd1)
1574  {
1576  }
1577  else if(command == surfnormCmd1)
1578  {
1580  }
1581  else if(command == energytypeCmd1)
1582  {
1583  CHECKPG(); fParticleGun->GetEneDist()->SetEnergyDisType(newValues);
1584  }
1585  else if(command == eminCmd1)
1586  {
1588  }
1589  else if(command == emaxCmd1)
1590  {
1592  }
1593  else if(command == monoenergyCmd1)
1594  {
1596  }
1597  else if(command == engsigmaCmd1)
1598  {
1600  }
1601  else if(command == alphaCmd1)
1602  {
1604  }
1605  else if(command == tempCmd1)
1606  {
1608  }
1609  else if(command == ezeroCmd1)
1610  {
1612  }
1613  else if(command == gradientCmd1)
1614  {
1616  }
1617  else if(command == interceptCmd1)
1618  {
1620  }
1621  else if(command == arbeintCmd1)
1622  {
1624  }
1625  else if(command == calculateCmd1)
1626  {
1628  }
1629  else if(command == energyspecCmd1)
1630  {
1632  }
1633  else if(command == diffspecCmd1)
1634  {
1636  }
1637  else if(command == histnameCmd1)
1638  {
1639  histtype = newValues;
1640  }
1641  else if(command == histfileCmd1)
1642  {
1643  histtype = "arb";
1645  }
1646  else if(command == histpointCmd1)
1647  {
1648  CHECKPG();
1649  if(histtype == "biasx")
1651  if(histtype == "biasy")
1653  if(histtype == "biasz")
1655  if(histtype == "biast")
1657  if(histtype == "biasp")
1659  if(histtype == "biaspt")
1661  if(histtype == "biaspp")
1663  if(histtype == "biase")
1665  if(histtype == "theta")
1667  if(histtype == "phi")
1669  if(histtype == "energy")
1671  if(histtype == "arb")
1673  if(histtype == "epn")
1675  }
1676  else if(command == resethistCmd1)
1677  {
1678  CHECKPG();
1679  if(newValues == "theta" || newValues == "phi") {
1680  fParticleGun->GetAngDist()->ReSetHist(newValues);
1681  } else if (newValues == "energy" || newValues == "arb" || newValues == "epn") {
1682  fParticleGun->GetEneDist()->ReSetHist(newValues);
1683  } else {
1684  fParticleGun->GetBiasRndm()->ReSetHist(newValues);
1685  }
1686  }
1687  else if(command == arbintCmd1)
1688  {
1689  CHECKPG(); fParticleGun->GetEneDist()->ArbInterpolate(newValues);
1690  }
1691  else
1692  {
1693  G4cout << "Error entering command" << G4endl;
1694  }
1695 }
1696 
1698 {
1699  G4String cv;
1700 
1701  // if( command==directionCmd )
1702  // { cv = directionCmd->ConvertToString(fParticleGun->GetParticleMomentumDirection()); }
1703  // else if( command==energyCmd )
1704  // { cv = energyCmd->ConvertToString(fParticleGun->GetParticleEnergy(),"GeV"); }
1705  // else if( command==positionCmd )
1706  // { cv = positionCmd->ConvertToString(fParticleGun->GetParticlePosition(),"cm"); }
1707  // else if( command==timeCmd )
1708  // { cv = timeCmd->ConvertToString(fParticleGun->GetParticleTime(),"ns"); }
1709  // else if( command==polCmd )
1710  // { cv = polCmd->ConvertToString(fParticleGun->GetParticlePolarization()); }
1711  // else if( command==numberCmd )
1712  // { cv = numberCmd->ConvertToString(fParticleGun->GetNumberOfParticles()); }
1713 
1714  cv = "Not implemented yet";
1715 
1716  return cv;
1717 }
1718 
1720 {
1721  fShootIon = true;
1722 
1723  if (fShootIon)
1724  {
1725  G4Tokenizer next( newValues );
1726  // check argument
1727  fAtomicNumber = StoI(next());
1728  fAtomicMass = StoI(next());
1729  G4String sQ = next();
1730  if (sQ.isNull())
1731  {
1733  }
1734  else
1735  {
1736  fIonCharge = StoI(sQ);
1737  sQ = next();
1738  if (sQ.isNull())
1739  {
1740  fIonExciteEnergy = 0.0;
1741  }
1742  else
1743  {
1744  fIonExciteEnergy = StoD(sQ) * keV;
1745  }
1746  }
1749  if (ion==0)
1750  {
1751  G4cout << "Ion with Z=" << fAtomicNumber;
1752  G4cout << " A=" << fAtomicMass << "is not be defined" << G4endl;
1753  }
1754  else
1755  {
1758  }
1759  }
1760  else
1761  {
1762  G4cout << "Set /gps/particle to ion before using /gps/ion command";
1763  G4cout << G4endl;
1764  }
1765 }
1766 
1768 {
1769  fShootIonL = true;
1770 
1771  if (fShootIonL) {
1772  G4Tokenizer next(newValues);
1773  // check argument
1774  fAtomicNumberL = StoI(next());
1775  fAtomicMassL = StoI(next());
1776  G4String sQ = next();
1777  if (sQ.isNull()) {
1779  } else {
1780  fIonChargeL = StoI(sQ);
1781  sQ = next();
1782  if (sQ.isNull()) {
1783  fIonEnergyLevel = 0;
1784  } else {
1785  fIonEnergyLevel = StoI(sQ);
1786  }
1787  }
1788 
1791  if (ion == 0) {
1792  G4cout << "Ion with Z=" << fAtomicNumberL;
1793  G4cout << " A=" << fAtomicMass << "is not be defined" << G4endl;
1794  } else {
1797  }
1798 
1799  } else {
1800  G4cout << "Set /gps/particle to ion before using /gps/ionLvl command";
1801  G4cout << G4endl;
1802  }
1803 }
1804 
static G4GeneralParticleSourceMessenger * GetInstance(G4GeneralParticleSource *)
G4SPSRandomGenerator * GetBiasRndm()
G4SPSEneDistribution * GetEneDist()
void SetParticleTime(G4double aTime)
G4ParticleDefinition * FindParticle(G4int PDGEncoding)
void DumpTable(const G4String &particle_name="ALL")
void ArbEnergyHisto(G4ThreeVector)
static G4int GetNewIntValue(const char *paramString)
void SetBeamSigmaInAngR(G4double)
G4ParticleDefinition * GetIon(G4int Z, G4int A, G4int lvl=0)
Definition: G4IonTable.cc:463
G4SPSPosDistribution * GetPosDist()
const G4double pi
static G4ThreeVector GetNew3VectorValue(const char *paramString)
void SetDefaultValue(const char *theDefaultValue)
void SetBeamSigmaInAngY(G4double)
void SetEnergyBias(G4ThreeVector)
void SetNewValue(G4UIcommand *command, G4String newValues)
G4double a
Definition: TRTMaterials.hh:39
void SetYBias(G4ThreeVector)
static G4double GetNewDoubleValue(const char *paramString)
int G4int
Definition: G4Types.hh:78
void SetPosThetaBias(G4ThreeVector)
static G4bool GetNewBoolValue(const char *paramString)
#define G4MUTEX_INITIALIZER
Definition: G4Threading.hh:163
void SetThetaBias(G4ThreeVector)
void SetZBias(G4ThreeVector)
void SetXBias(G4ThreeVector)
void UserDefAngPhi(G4ThreeVector)
void UserDefAngTheta(G4ThreeVector)
G4GLOB_DLL std::ostream G4cout
void SetCentreCoords(G4ThreeVector)
static G4ThreeVector GetNew3VectorValue(const char *paramString)
G4GeneralParticleSourceMessenger(G4GeneralParticleSource *)
bool G4bool
Definition: G4Types.hh:79
static G4double GetNewDoubleValue(const char *paramString)
void DefineAngRefAxes(G4String, G4ThreeVector)
void SetParticlePolarization(G4ThreeVector aVal)
void SetParticleDefinition(G4ParticleDefinition *aParticleDefinition)
void SetPosRot1(G4ThreeVector)
G4SPSAngDistribution * GetAngDist()
G4int StoI(G4String s)
static G4IonTable * GetIonTable()
Definition: G4IonTable.hh:78
void EpnEnergyHisto(G4ThreeVector)
void SetPhiBias(G4ThreeVector)
G4int G4Mutex
Definition: G4Threading.hh:161
static G4ParticleTable * GetParticleTable()
void UserEnergyHisto(G4ThreeVector)
G4double StoD(G4String s)
void SetPosRot2(G4ThreeVector)
void InputDifferentialSpectra(G4bool)
void SetFocusPoint(G4ThreeVector)
void SetParticleMomentumDirection(G4ParticleMomentum aMomentumDirection)
#define G4endl
Definition: G4ios.hh:61
static const double keV
Definition: G4SIunits.hh:195
void ArbEnergyHistoFile(G4String)
void SetParticleCharge(G4double aCharge)
static const double eplus
Definition: G4SIunits.hh:178
void ConfineSourceToVolume(G4String)
G4bool isNull() const
void SetPosPhiBias(G4ThreeVector)
void SetBeamSigmaInAngX(G4double)