47:theRadDecay(ptr)
48{
49 rdmDirectory = new G4UIdirectory("/process/had/rdm/");
50 rdmDirectory->SetGuidance("Controls for the Radioactive Decay Module.");
51
52
53 nucleuslimitsCmd = new G4UIcmdWithNucleusLimits("/process/had/rdm/nucleusLimits",this);
54 nucleuslimitsCmd->SetGuidance("Set the atomic weight and number limits for the RDM.");
55 nucleuslimitsCmd->SetParameterName("AMin","AMax","ZMin","ZMax",true);
56
57
58 avolumeCmd = new G4UIcmdWithAString("/process/had/rdm/selectVolume",this);
59 avolumeCmd->SetGuidance("Supply a logical volumes name to add it to the RDM apply list");
60 avolumeCmd->SetParameterName("AVolume",false);
61
62
63 deavolumeCmd = new G4UIcmdWithAString("/process/had/rdm/deselectVolume",this);
64 deavolumeCmd->SetGuidance("Supply a logical volumes name to remove it from the RDM apply list");
65 deavolumeCmd->SetParameterName("AVolume",false);
66
67
68 allvolumesCmd = new G4UIcmdWithoutParameter("/process/had/rdm/allVolumes",this);
69 allvolumesCmd->SetGuidance(" apply RDM to all logical volumes. No parameter required.");
70
71
72
73 deallvolumesCmd = new G4UIcmdWithoutParameter("/process/had/rdm/noVolumes",this);
74 deallvolumesCmd->SetGuidance(" RDM is not applied to any logical volumes");
75
76
77
78 armCmd = new G4UIcmdWithABool("/process/had/rdm/applyARM",this);
79 armCmd->SetGuidance("True: ARM is applied; false: no");
80 armCmd->SetParameterName("ApplyARM",true);
81 armCmd->SetDefaultValue(true);
82
83
84
85 colldirCmd = new G4UIcmdWith3Vector("/process/had/rdm/decayDirection",this);
86 colldirCmd->SetGuidance("Supply the direction vector for decay products");
87 colldirCmd->SetParameterName("X","Y","Z",false);
88
89
90 collangleCmd = new G4UIcmdWithADoubleAndUnit("/process/had/rdm/decayHalfAngle",this);
91 collangleCmd->SetGuidance("Supply maximum angle from direction vector for decay products");
92 collangleCmd->SetParameterName("HalfAngle",false);
93 collangleCmd->SetUnitCategory("Angle");
94
95
96 verboseCmd = new G4UIcmdWithAnInteger("/process/had/rdm/verbose",this);
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");
101
102
103 userDecayDataCmd = new G4UIcommand("/process/had/rdm/setRadioactiveDecayFile",this);
104 userDecayDataCmd->SetGuidance("Supply user-defined radioactive decay data file");
105 G4UIparameter* Z_para= new G4UIparameter("Z_isotope",'i',true);
107 Z_para->
SetGuidance(
"Z: Charge number of isotope");
108 G4UIparameter* A_para= new G4UIparameter("A_isotope",'i',true);
111 G4UIparameter* FileName_para= new G4UIparameter("file_name",'s',true);
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);
116
117
118 userEvaporationDataCmd = new G4UIcommand("/process/had/rdm/setPhotoEvaporationFile",this);
119 userEvaporationDataCmd->SetGuidance("Supply user-defined photon evaporation data file");
120 G4UIparameter* Zpara= new G4UIparameter("Z_isotope",'i',true);
123 G4UIparameter* Apara= new G4UIparameter("A_isotope",'i',true);
126 G4UIparameter* FileNamepara= new G4UIparameter("file_name",'s',true);
127 FileNamepara->
SetGuidance(
"Name of the user data file");
128 userEvaporationDataCmd->SetParameter(Zpara);
129 userEvaporationDataCmd->SetParameter(Apara);
130 userEvaporationDataCmd->SetParameter(FileNamepara);
131
132
133
134 thresholdForVeryLongDecayTimeCmd = new G4UIcmdWithADoubleAndUnit("/process/had/rdm/thresholdForVeryLongDecayTime",this);
135 thresholdForVeryLongDecayTimeCmd->SetGuidance("Ignore decays at rest of nuclides happening after this time threshold");
136 thresholdForVeryLongDecayTimeCmd->SetParameterName("ThresholdForVeryLongDecayTime",false);
137 thresholdForVeryLongDecayTimeCmd->SetUnitCategory("Time");
138}
void SetGuidance(const char *theGuidance)
void SetParameterRange(const char *theRange)