47 : theParticleTable(pTable)
48{
50
51
52 thisDirectory = new G4UIdirectory("/particle/property/");
53 thisDirectory->SetGuidance("Particle Table control commands.");
54
55
56 dumpCmd = new G4UIcmdWithoutParameter("/particle/property/dump", this);
57 dumpCmd->SetGuidance("Dump particle properties.");
58
59
60 stableCmd = new G4UIcmdWithABool("/particle/property/stable", this);
61 stableCmd->SetGuidance("Set stable flag.");
62 stableCmd->SetGuidance(" false: Unstable true: Stable");
63 stableCmd->SetParameterName("stable", false);
65
66
67 lifetimeCmd = new G4UIcmdWithADoubleAndUnit("/particle/property/lifetime", this);
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");
74
75
76 lifetimeCmd->SetDefaultUnit("ns");
78
79
80 verboseCmd = new G4UIcmdWithAnInteger("/particle/property/verbose", this);
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");
88
89
90 fDecayTableMessenger = new G4DecayTableMessenger(theParticleTable);
91}
static G4ParticleTable * GetParticleTable()