50 : fParticleGun(fPtclGun)
55 gunDirectory->SetGuidance(
"Particle Gun control commands.");
58 listCmd->SetGuidance(
"List available particles.");
59 listCmd->SetGuidance(
" Invoke G4ParticleTable.");
62 particleCmd->SetGuidance(
"Set particle to be generated.");
63 particleCmd->SetGuidance(
" (geantino is default)");
64 particleCmd->SetGuidance(
" (ion can be specified for shooting ions)");
65 particleCmd->SetParameterName(
"particleName",
true);
66 particleCmd->SetDefaultValue(
"geantino");
79 candidateList +=
"ion ";
80 particleCmd->SetCandidates(candidateList);
83 directionCmd->SetGuidance(
"Set momentum direction.");
84 directionCmd->SetGuidance(
" Direction needs not to be a unit vector.");
85 directionCmd->SetParameterName(
"ex",
"ey",
"ez",
true,
true);
86 directionCmd->SetRange(
"ex != 0 || ey != 0 || ez != 0");
89 energyCmd->SetGuidance(
"Set kinetic energy.");
90 energyCmd->SetParameterName(
"Energy",
true,
true);
91 energyCmd->SetDefaultUnit(
"GeV");
96 momCmd->SetGuidance(
"Set momentum. This command is equivalent to two commands");
97 momCmd->SetGuidance(
" /gun/direction and /gun/momentumAmp");
98 momCmd->SetParameterName(
"px",
"py",
"pz",
true,
true);
99 momCmd->SetRange(
"px != 0 || py != 0 || pz != 0");
100 momCmd->SetDefaultUnit(
"GeV");
103 momAmpCmd->SetGuidance(
"Set absolute value of momentum.");
104 momAmpCmd->SetGuidance(
" Direction should be set by /gun/direction command.");
105 momAmpCmd->SetGuidance(
" This command should be used alternatively with /gun/energy.");
106 momAmpCmd->SetParameterName(
"Momentum",
true,
true);
107 momAmpCmd->SetDefaultUnit(
"GeV");
110 positionCmd->SetGuidance(
"Set starting position of the particle.");
111 positionCmd->SetGuidance(
" Position must be located inside the world volume.");
112 positionCmd->SetParameterName(
"X",
"Y",
"Z",
true,
true);
113 positionCmd->SetDefaultUnit(
"cm");
118 timeCmd->SetGuidance(
"Set initial time of the particle.");
119 timeCmd->SetParameterName(
"t0",
true,
true);
120 timeCmd->SetDefaultUnit(
"ns");
125 polCmd->SetGuidance(
"Set polarization.");
126 polCmd->SetParameterName(
"Px",
"Py",
"Pz",
true,
true);
127 polCmd->SetRange(
"Px>=-1.&&Px<=1.&&Py>=-1.&&Py<=1.&&Pz>=-1.&&Pz<=1.");
130 numberCmd->SetGuidance(
"Set number of particles to be generated.");
131 numberCmd->SetParameterName(
"N",
true,
true);
132 numberCmd->SetRange(
"N>0");
135 ionCmd->SetGuidance(
"Set properties of ion to be generated.");
136 ionCmd->SetGuidance(
"[usage] /gun/ion Z A [Q E flb]");
137 ionCmd->SetGuidance(
" Z:(int) AtomicNumber");
138 ionCmd->SetGuidance(
" A:(int) AtomicMass");
139 ionCmd->SetGuidance(
" Q:(int) Charge of Ion (in unit of e)");
140 ionCmd->SetGuidance(
" E:(double) Excitation energy (in keV)");
141 ionCmd->SetGuidance(
" flb:(char) Floating level base");
145 ionCmd->SetParameter(param);
147 ionCmd->SetParameter(param);
150 ionCmd->SetParameter(param);
153 ionCmd->SetParameter(param);
157 ionCmd->SetParameter(param);
160 ionLvlCmd->SetGuidance(
"THIS COMMAND IS DEPRECATED and will be removed in future releases.");
161 ionLvlCmd->SetGuidance(
" Use /gun/ion instead.");
162 ionLvlCmd->SetGuidance(
" Set properties of ion to be generated.");
163 ionLvlCmd->SetGuidance(
" [usage] /gun/ionL Z A [Q I]");
164 ionLvlCmd->SetGuidance(
" Z:(int) AtomicNumber");
165 ionLvlCmd->SetGuidance(
" A:(int) AtomicMass");
166 ionLvlCmd->SetGuidance(
" Q:(int) Charge of Ion (in unit of e)");
167 ionLvlCmd->SetGuidance(
" I:(int) Level number of metastable state (0 = ground)");
171 ionLvlCmd->SetParameter(paraml);
173 ionLvlCmd->SetParameter(paraml);
176 ionLvlCmd->SetParameter(paraml);
179 ionLvlCmd->SetParameter(paraml);
182 volChkCmd->SetGuidance(
"Switch on/off the check if the vertex position is inside the world volume.");
183 volChkCmd->SetGuidance(
"By default the check is on. There is a small performance gain if this check is off,");
184 volChkCmd->SetGuidance(
"but the user has to make sure setting the vertex position inside the world.");
185 volChkCmd->SetParameterName(
"switch",
true,
true);
190 fParticleGun->SetParticleMomentumDirection(
G4ThreeVector(1.0,0.0,0.0) );
191 fParticleGun->SetParticleEnergy( 1.0*GeV );
192 fParticleGun->SetParticleTime( 0.0*
ns );
217 if (command==listCmd)
219 particleTable->DumpTable();
221 else if (command==particleCmd)
223 if (newValues ==
"ion")
233 fParticleGun->SetParticleDefinition( pd );
237 ed <<
"Particle [" << newValues <<
"] is not found.";
242 }
else if( command==directionCmd )
243 { fParticleGun->SetParticleMomentumDirection(directionCmd->GetNew3VectorValue(newValues)); }
244 else if( command==energyCmd )
245 { fParticleGun->SetParticleEnergy(energyCmd->GetNewDoubleValue(newValues)); }
246 else if( command==momCmd )
247 { fParticleGun->SetParticleMomentum(momCmd->GetNew3VectorValue(newValues)); }
248 else if( command==momAmpCmd )
249 { fParticleGun->SetParticleMomentum(momAmpCmd->GetNewDoubleValue(newValues)); }
250 else if( command==positionCmd )
251 { fParticleGun->SetParticlePosition(positionCmd->GetNew3VectorValue(newValues)); }
252 else if( command==timeCmd )
253 { fParticleGun->SetParticleTime(timeCmd->GetNewDoubleValue(newValues)); }
254 else if( command==polCmd )
255 { fParticleGun->SetParticlePolarization(polCmd->GetNew3VectorValue(newValues)); }
256 else if( command==numberCmd )
257 { fParticleGun->SetNumberOfParticles(numberCmd->GetNewIntValue(newValues)); }
258 else if( command==ionCmd )
262 IonCommand(newValues);
266 ed <<
"Set /gun/particle to ion before using /gun/ion command";
270 else if( command==ionLvlCmd )
273 depWarn <<
"\nCommand /gun/ionL is deprecated and will be removed in future releases.\n"
274 <<
"Use /gun/ion instead.\n";
275 G4Exception(
"G4ParticleGunMessenger::SetNewValue",
"IonLWarn",
280 IonLevelCommand(newValues);
284 ed <<
"Set /gun/particle to ion before using /gun/ion command";
288 else if( command==volChkCmd )
290 fParticleGun->CheckInside(volChkCmd->GetNewBoolValue(newValues));
298 if( command==directionCmd )
299 { cv = directionCmd->ConvertToString(fParticleGun->GetParticleMomentumDirection()); }
300 else if( command==particleCmd )
301 { cv = fParticleGun->GetParticleDefinition()->GetParticleName(); }
302 else if( command==energyCmd )
304 G4double ene = fParticleGun->GetParticleEnergy();
306 {
G4cerr <<
" G4ParticleGun: was defined in terms of momentum." <<
G4endl; }
308 { cv = energyCmd->ConvertToString(ene,
"GeV"); }
310 else if( command==momCmd || command==momAmpCmd )
312 G4double mom = fParticleGun->GetParticleMomentum();
315 G4cerr <<
" G4ParticleGun: was defined in terms of kinetic energy."
320 if( command==momCmd )
321 { cv = momCmd->ConvertToString(mom*(fParticleGun->GetParticleMomentumDirection()),
"GeV"); }
323 { cv = momAmpCmd->ConvertToString(mom,
"GeV"); }
326 else if( command==positionCmd )
327 { cv = positionCmd->ConvertToString(fParticleGun->GetParticlePosition(),
"cm"); }
328 else if( command==timeCmd )
329 { cv = timeCmd->ConvertToString(fParticleGun->GetParticleTime(),
"ns"); }
330 else if( command==polCmd )
331 { cv = polCmd->ConvertToString(fParticleGun->GetParticlePolarization()); }
332 else if( command==numberCmd )
333 { cv = numberCmd->ConvertToString(fParticleGun->GetNumberOfParticles()); }
334 else if( command==ionCmd )
338 cv =
ItoS(fAtomicNumber) +
" " +
ItoS(fAtomicMass) +
" ";
339 cv +=
ItoS(fIonCharge);
346 else if( command==volChkCmd )
347 { cv = volChkCmd->ConvertToString(fParticleGun->IfCheckInside()); }
351void G4ParticleGunMessenger::IonLevelCommand(
const G4String& newValues)
357 fAtomicNumber =
StoI(next());
358 fAtomicMass =
StoI(next());
360 if (sQ.empty() ||
StoI(sQ)<0)
362 fIonCharge = fAtomicNumber;
366 fIonCharge =
StoI(sQ);
375 fIonEnergyLevel =
StoI(sQ);
378 ->
GetIon(fAtomicNumber,fAtomicMass,fIonEnergyLevel);
382 ed <<
"Ion with Z = " << fAtomicNumber <<
", A = " << fAtomicMass
383 <<
", I = " << fIonEnergyLevel <<
" is not defined ";
384 ionLvlCmd->CommandFailed(ed);
388 fParticleGun->SetParticleDefinition(ion);
389 fParticleGun->SetParticleCharge(fIonCharge*eplus);
393void G4ParticleGunMessenger::IonCommand(
const G4String& newValues)
395 G4Tokenizer next( newValues );
399 fAtomicNumber =
StoI(next());
400 fAtomicMass =
StoI(next());
401 fIonCharge = fAtomicNumber;
402 fIonExciteEnergy = 0.0;
403 fIonFloatingLevelBase =
'\0';
404 G4String sQ = next();
408 fIonCharge =
StoI(sQ);
413 fIonExciteEnergy =
StoD(sQ) * keV;
416 if (sQ.empty()||sQ==
"noFloat")
417 { fIonFloatingLevelBase =
'\0'; }
419 { fIonFloatingLevelBase = sQ[(std::size_t)0]; }
423 ->
GetIon(fAtomicNumber,fAtomicMass,fIonExciteEnergy,fIonFloatingLevelBase);
427 ed <<
"Ion with Z=" << fAtomicNumber;
428 ed <<
" A=" << fAtomicMass <<
"is not defined";
429 ionCmd->CommandFailed(ed);
433 fParticleGun->SetParticleDefinition(ion);
434 fParticleGun->SetParticleCharge(fIonCharge*eplus);
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
CLHEP::Hep3Vector G4ThreeVector
G4GLOB_DLL std::ostream G4cerr
static G4Geantino * Geantino()
G4ParticleDefinition * GetIon(G4int Z, G4int A, G4int lvl=0)
static G4IonTable * GetIonTable()
G4bool IsShortLived() const
G4DecayTable * GetDecayTable() const
const G4String & GetParticleName() const
void SetNewValue(G4UIcommand *command, G4String newValues) override
~G4ParticleGunMessenger() override
G4ParticleGunMessenger(G4ParticleGun *fPtclGun)
G4String GetCurrentValue(G4UIcommand *command) override
void reset(G4bool ifSkipIon=true)
static G4ParticleTable * GetParticleTable()
G4ParticleTableIterator< G4String, G4ParticleDefinition * > G4PTblDicIterator
void CommandFailed(G4int errCode, G4ExceptionDescription &ed)
G4double StoD(const G4String &s)
G4int StoI(const G4String &s)
void SetDefaultValue(const char *theDefaultValue)
void SetParameterCandidates(const char *theString)