50 rdmDirectory->SetGuidance(
"Controls for the Radioactive Decay Module.");
54 nucleuslimitsCmd->SetGuidance(
"Set the atomic weight and number limits for the RDM.");
55 nucleuslimitsCmd->SetParameterName(
"AMin",
"AMax",
"ZMin",
"ZMax",
true);
59 avolumeCmd->SetGuidance(
"Supply a logical volumes name to add it to the RDM apply list");
60 avolumeCmd->SetParameterName(
"AVolume",
false);
64 deavolumeCmd->SetGuidance(
"Supply a logical volumes name to remove it from the RDM apply list");
65 deavolumeCmd->SetParameterName(
"AVolume",
false);
69 allvolumesCmd->SetGuidance(
" apply RDM to all logical volumes. No parameter required.");
74 deallvolumesCmd->SetGuidance(
" RDM is not applied to any logical volumes");
79 armCmd->SetGuidance(
"True: ARM is applied; false: no");
80 armCmd->SetParameterName(
"ApplyARM",
true);
81 armCmd->SetDefaultValue(
true);
86 colldirCmd->SetGuidance(
"Supply the direction vector for decay products");
87 colldirCmd->SetParameterName(
"X",
"Y",
"Z",
false);
91 collangleCmd->SetGuidance(
"Supply maximum angle from direction vector for decay products");
92 collangleCmd->SetParameterName(
"HalfAngle",
false);
93 collangleCmd->SetUnitCategory(
"Angle");
97 verboseCmd->SetGuidance(
"Set verbose level: 0, 1, 2 or 3");
98 verboseCmd->SetParameterName(
"VerboseLevel",
true);
99 verboseCmd->SetDefaultValue(1);
100 verboseCmd->SetRange(
"VerboseLevel>=0");
103 userDecayDataCmd =
new G4UIcommand(
"/process/had/rdm/setRadioactiveDecayFile",
this);
104 userDecayDataCmd->SetGuidance(
"Supply user-defined radioactive decay data file");
107 Z_para->
SetGuidance(
"Z: Charge number of isotope");
112 FileName_para->
SetGuidance(
"Name of the user data file");
113 userDecayDataCmd->SetParameter(Z_para);
114 userDecayDataCmd->SetParameter(A_para);
115 userDecayDataCmd->SetParameter(FileName_para);
118 userEvaporationDataCmd =
new G4UIcommand(
"/process/had/rdm/setPhotoEvaporationFile",
this);
119 userEvaporationDataCmd->SetGuidance(
"Supply user-defined photon evaporation data file");
127 FileNamepara->
SetGuidance(
"Name of the user data file");
128 userEvaporationDataCmd->SetParameter(Zpara);
129 userEvaporationDataCmd->SetParameter(Apara);
130 userEvaporationDataCmd->SetParameter(FileNamepara);
135 thresholdForVeryLongDecayTimeCmd->SetGuidance(
"Ignore decays at rest of nuclides happening after this time threshold");
136 thresholdForVeryLongDecayTimeCmd->SetParameterName(
"ThresholdForVeryLongDecayTime",
false);
137 thresholdForVeryLongDecayTimeCmd->SetUnitCategory(
"Time");
162 if ( command == nucleuslimitsCmd ) {
164 SetNucleusLimits( nucleuslimitsCmd->GetNewNucleusLimitsValue( newValues ) );
165 }
else if ( command == avolumeCmd ) {
166 theRadDecay->SelectAVolume( newValues );
167 }
else if ( command == deavolumeCmd ) {
168 theRadDecay->DeselectAVolume( newValues );
169 }
else if ( command == allvolumesCmd ) {
170 theRadDecay->SelectAllVolumes();
171 }
else if ( command == deallvolumesCmd ) {
172 theRadDecay->DeselectAllVolumes();
173 }
else if (command == verboseCmd) {
174 theRadDecay->SetVerboseLevel(verboseCmd->GetNewIntValue(newValues) );
175 }
else if (command == armCmd) {
176 theRadDecay->SetARM(armCmd->GetNewBoolValue(newValues) );
177 }
else if ( command == userDecayDataCmd ) {
180 const char* nv = (
const char*)newValues;
181 std::istringstream is(nv);
182 is >> Z >>
A >> file_name;
183 theRadDecay->AddUserDecayDataFile(Z,
A,file_name);
184 }
else if ( command == userEvaporationDataCmd ) {
187 const char* nv = (
const char*)newValues;
188 std::istringstream is(nv);
189 is >> Z >>
A >> file_name;
191 }
else if ( command == colldirCmd ) {
192 theRadDecay->SetDecayDirection( colldirCmd->GetNew3VectorValue( newValues ) );
193 }
else if ( command == collangleCmd ) {
194 theRadDecay->SetDecayHalfAngle( collangleCmd->GetNewDoubleValue( newValues ) );
195 }
else if (command == thresholdForVeryLongDecayTimeCmd) {
196 theRadDecay->SetThresholdForVeryLongDecayTime(thresholdForVeryLongDecayTimeCmd->GetNewDoubleValue(newValues) );