47 : theParticleTable(pTable)
53 thisDirectory->SetGuidance(
"Particle Table control commands.");
57 dumpCmd->SetGuidance(
"Dump particle properties.");
61 stableCmd->SetGuidance(
"Set stable flag.");
62 stableCmd->SetGuidance(
" false: Unstable true: Stable");
63 stableCmd->SetParameterName(
"stable",
false);
68 lifetimeCmd->SetGuidance(
"Set life time.");
69 lifetimeCmd->SetGuidance(
"Unit of the time can be :");
70 lifetimeCmd->SetGuidance(
" s, ms, ns (default)");
71 lifetimeCmd->SetParameterName(
"life",
false);
72 lifetimeCmd->SetDefaultValue(0.0);
73 lifetimeCmd->SetRange(
"life >0.0");
76 lifetimeCmd->SetDefaultUnit(
"ns");
81 verboseCmd->SetGuidance(
"Set Verbose level of particle property.");
82 verboseCmd->SetGuidance(
" 0 : Silent (default)");
83 verboseCmd->SetGuidance(
" 1 : Display warning messages");
84 verboseCmd->SetGuidance(
" 2 : Display more");
85 verboseCmd->SetParameterName(
"verbose_level",
true);
86 verboseCmd->SetDefaultValue(0);
87 verboseCmd->SetRange(
"verbose_level >=0");
107 auto currentParticle =
const_cast<G4ParticleDefinition*
>(theParticleTable->GetSelectedParticle());
109 if (currentParticle ==
nullptr) {
110 G4cout <<
"Particle is not selected yet !! Command ignored." <<
G4endl;
114 if (command == dumpCmd) {
116 currentParticle->DumpTable();
118 else if (command == lifetimeCmd) {
120 currentParticle->SetPDGLifeTime(lifetimeCmd->GetNewDoubleValue(newValue));
122 else if (command == stableCmd) {
124 if (currentParticle->GetPDGLifeTime() < 0.0) {
125 G4cout <<
"Life time is negative! Command ignored." <<
G4endl;
127 else if (currentParticle->GetPDGMass() <= 0.0) {
131 currentParticle->SetPDGStable(stableCmd->GetNewBoolValue(newValue));
134 else if (command == verboseCmd) {
136 currentParticle->SetVerboseLevel(verboseCmd->GetNewIntValue(newValue));
145 if (currentParticle ==
nullptr) {
149 if (command == stableCmd) {
151 returnValue = stableCmd->ConvertToString(currentParticle->
GetPDGStable());
153 else if (command == lifetimeCmd) {
155 returnValue = lifetimeCmd->ConvertToString(currentParticle->
GetPDGLifeTime(),
"ns");
157 else if (command == verboseCmd) {
159 returnValue = verboseCmd->ConvertToString(currentParticle->
GetVerboseLevel());
G4bool GetPDGStable() const
G4int GetVerboseLevel() const
G4double GetPDGLifeTime() const
G4String GetCurrentValue(G4UIcommand *command) override
G4ParticlePropertyMessenger(G4ParticleTable *pTable=nullptr)
~G4ParticlePropertyMessenger() override
void SetNewValue(G4UIcommand *command, G4String newValues) override
static G4ParticleTable * GetParticleTable()