45 : theNuclideTable(nuclideTable)
46{
47 thisDirectory = new G4UIdirectory("/particle/nuclideTable/");
48 thisDirectory->SetGuidance("Nuclide table control commands.");
49
50
51 halflifeCmd = new G4UIcmdWithADoubleAndUnit("/particle/nuclideTable/min_halflife", this);
52 halflifeCmd->SetGuidance("Set threshold of half-life.");
53 halflifeCmd->SetGuidance("Unit of the time can be :");
54 halflifeCmd->SetGuidance(" s, ms, ns (default)");
55 halflifeCmd->SetParameterName("life", false);
56 halflifeCmd->SetDefaultValue(0.69314718);
57 halflifeCmd->SetRange("halflife > 0.0");
58 halflifeCmd->SetDefaultUnit("ns");
60
61
62 meanlifeCmd = new G4UIcmdWithADoubleAndUnit("/particle/nuclideTable/min_meanlife", this);
63 meanlifeCmd->SetGuidance("Set threshold of mean life.");
64 meanlifeCmd->SetGuidance("Unit of the time can be :");
65 meanlifeCmd->SetGuidance(" s, ms, ns (default)");
66 meanlifeCmd->SetParameterName("life", false);
67 meanlifeCmd->SetDefaultValue(1.0);
68 meanlifeCmd->SetRange("meanlife > 0.0");
69 meanlifeCmd->SetDefaultUnit("ns");
71
72
73 lToleranceCmd = new G4UIcmdWithADoubleAndUnit("/particle/nuclideTable/level_tolerance", this);
74 lToleranceCmd->SetGuidance("Set tolerance in level searching.");
75 lToleranceCmd->SetGuidance("Unit of the energy can be :");
76 lToleranceCmd->SetGuidance(" MeV, keV, eV (default)");
77 lToleranceCmd->SetParameterName("lTolerance", false);
78 lToleranceCmd->SetDefaultValue(1.0);
79 lToleranceCmd->SetRange("lTolerance >0.0");
80 lToleranceCmd->SetDefaultUnit("eV");
82}