45 : theNuclideTable(nuclideTable)
48 thisDirectory->SetGuidance(
"Nuclide table control commands.");
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");
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");
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");
94 if (command == halflifeCmd) {
96 theNuclideTable->SetThresholdOfHalfLife(halflifeCmd->GetNewDoubleValue(newValue));
98 else if (command == meanlifeCmd) {
100 theNuclideTable->SetMeanLifeThreshold(meanlifeCmd->GetNewDoubleValue(newValue));
102 else if (command == lToleranceCmd) {
104 theNuclideTable->SetLevelTolerance(lToleranceCmd->GetNewDoubleValue(newValue));