51 : theParticleTable(pTable)
52{
53 if ( theParticleTable == nullptr)
55
56
57 thisDirectory = new G4UIdirectory("/particle/process/");
58 thisDirectory->SetGuidance("Process Manager control commands.");
59
60
61 dumpCmd = new G4UIcmdWithAnInteger("/particle/process/dump",this);
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);
67
68
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");
73 G4UIparameter* param = new G4UIparameter("Verbose",'i',true);
75 verboseCmd->SetParameter(param);
76 param = new G4UIparameter("index",'i',true);
78 verboseCmd->SetParameter(param);
80
81
82 activateCmd = new G4UIcmdWithAnInteger("/particle/process/activate",this);
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");
89
90
91 inactivateCmd = new G4UIcmdWithAnInteger("/particle/process/inactivate",this);
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");
98}
static G4ParticleTable * GetParticleTable()
void SetDefaultValue(const char *theDefaultValue)