49 if (pTable ==
nullptr) {
53 theParticleTable = pTable;
58 thisDirectory->SetGuidance(
"Particle control commands.");
62 selectCmd->SetGuidance(
"Select particle ");
63 selectCmd->SetDefaultValue(
"none");
64 selectCmd->SetParameterName(
"particle name",
false);
69 listCmd->SetGuidance(
"List name of particles.");
70 listCmd->SetGuidance(
" all(default)/lepton/baryon/meson/nucleus/quarks");
71 listCmd->SetParameterName(
"particle type",
true);
72 listCmd->SetDefaultValue(
"all");
73 listCmd->SetCandidates(
"all lepton baryon meson nucleus quarks");
78 findCmd->SetGuidance(
"Find particle by encoding");
79 findCmd->SetDefaultValue(0);
80 findCmd->SetParameterName(
"encoding",
false);
85 createAllIonCmd->SetGuidance(
"Create All ions (ground state)");
87 createAllIonCmd->SetToBeBroadcasted(
false);
91 createAllIsomerCmd->SetGuidance(
"Create All isomers");
93 createAllIsomerCmd->SetToBeBroadcasted(
false);
97 verboseCmd->SetGuidance(
"Set Verbose level of particle table.");
98 verboseCmd->SetGuidance(
" 0 : Silent (default)");
99 verboseCmd->SetGuidance(
" 1 : Display warning messages");
100 verboseCmd->SetGuidance(
" 2 : Display more");
101 verboseCmd->SetParameterName(
"verbose_level",
true);
102 verboseCmd->SetDefaultValue(0);
103 verboseCmd->SetRange(
"verbose_level >=0");
125 if (command == listCmd) {
134 if ((newValues ==
"all") || (newValues == particle->
GetParticleType())) {
136 if ((counter++) % 4 == 3) {
158 selectCmd->SetCandidates((
const char*)(candidates));
160 else if (command == selectCmd) {
162 theParticleTable->SelectParticle(newValues);
164 else if (command == findCmd) {
167 if (tmp ==
nullptr) {
168 G4cout <<
"Unknown particle [" << newValues <<
"]. Command ignored." <<
G4endl;
175 else if (command == createAllIonCmd) {
177 theParticleTable->GetIonTable()->CreateAllIon();
179 else if (command == createAllIsomerCmd) {
181 theParticleTable->GetIonTable()->CreateAllIsomer();
183 else if (command == verboseCmd) {
185 theParticleTable->SetVerboseLevel(verboseCmd->GetNewIntValue(newValues));
const G4String & GetParticleType() const
const G4String & GetParticleName() const
G4String GetCurrentValue(G4UIcommand *command) override
void SetNewValue(G4UIcommand *command, G4String newValues) override
G4ParticleMessenger(G4ParticleTable *pTable=nullptr)
~G4ParticleMessenger() override
void reset(G4bool ifSkipIon=true)
static G4ParticleTable * GetParticleTable()
G4ParticleTableIterator< G4String, G4ParticleDefinition * > G4PTblDicIterator