51 : theParticleTable(pTable)
53 if ( theParticleTable ==
nullptr)
58 thisDirectory->SetGuidance(
"Process Manager control commands.");
62 dumpCmd->SetGuidance(
"dump process manager or process information");
63 dumpCmd->SetGuidance(
" dump [process index]");
64 dumpCmd->SetGuidance(
" process index: -1 for process manager");
65 dumpCmd->SetParameterName(
"index",
true);
66 dumpCmd->SetDefaultValue(-1);
69 verboseCmd =
new G4UIcommand(
"/particle/process/verbose",
this);
70 verboseCmd->SetGuidance(
"Set Verbose Level for Process or Process Manager");
71 verboseCmd->SetGuidance(
" Verbose [Verbose] [process index]");
72 verboseCmd->SetGuidance(
" process index: -1 for process manager");
75 verboseCmd->SetParameter(param);
78 verboseCmd->SetParameter(param);
83 activateCmd->SetGuidance(
"Activate process ");
84 activateCmd->SetGuidance(
" Activate [process index]");
85 activateCmd->SetParameterName(
"index",
false);
86 activateCmd->SetDefaultValue(0);
87 activateCmd->SetRange(
"index >=0");
92 inactivateCmd->SetGuidance(
"Inactivate process ");
93 inactivateCmd->SetGuidance(
" inactivate [process index]");
94 inactivateCmd->SetParameterName(
"index",
false);
95 inactivateCmd->SetDefaultValue(0);
96 inactivateCmd->SetRange(
"index >=0");
132 if (SetCurrentParticle() ==
nullptr)
134 ed <<
"Particle is not selected yet !! Command ignored.";
138 if( command == dumpCmd )
141 G4int index = dumpCmd->GetNewIntValue(newValue);
144 theManager->DumpInfo();
146 else if ( index < theManager->GetProcessListLength())
148 currentProcess = (*theProcessList)(index);
149 if (currentProcess ==
nullptr)
151 ed <<
" no process at index of " << index
152 <<
" in the Process Vector";
157 currentProcess->DumpInfo();
162 ed <<
" illegal index !!! ";
164 currentProcess =
nullptr;
168 else if( command==activateCmd )
171 theManager->SetProcessActivation(activateCmd->GetNewIntValue(newValue),
true);
175 else if( command==inactivateCmd )
178 theManager->SetProcessActivation(inactivateCmd->GetNewIntValue(newValue),
false);
182 else if( command==verboseCmd )
186 const char* temp = (
const char*)(newValue);
187 std::istringstream is((
char*)temp);
188 G4int Verbose, index;
189 is >>Verbose >>index;
192 theManager->SetVerboseLevel(Verbose);
195 else if ( index < theManager->GetProcessListLength())
197 currentProcess = (*theProcessList)(index);
198 if (currentProcess ==
nullptr)
200 ed <<
" no process at index of " << index
201 <<
" in the Process Vector";
206 currentProcess->SetVerboseLevel(Verbose);
211 ed <<
" illegal index !!! ";
213 currentProcess =
nullptr;
static G4ParticleTable * GetParticleTable()
const G4ParticleDefinition * GetSelectedParticle() const