65 fDirectory->SetGuidance(
"Commands for nuclear de-excitation module.");
68 readCmd->SetGuidance(
"Enable/disable download IC data per atomic shell.");
69 readCmd->SetParameterName(
"readIC",
true);
70 readCmd->SetDefaultValue(
false);
72 readCmd->SetToBeBroadcasted(
false);
75 icCmd->SetGuidance(
"Enable/disable simulation of e- internal conversion.");
76 icCmd->SetParameterName(
"IC",
true);
77 icCmd->SetDefaultValue(
true);
81 corgCmd->SetGuidance(
"Enable/disable simulation of correlated gamma emission.");
82 corgCmd->SetParameterName(
"corrG",
true);
83 corgCmd->SetDefaultValue(
false);
85 corgCmd->SetToBeBroadcasted(
false);
88 isoCmd->SetGuidance(
"Enable/disable simulation of long lived isomers.");
89 isoCmd->SetParameterName(
"isoProd",
true);
90 isoCmd->SetDefaultValue(
false);
92 isoCmd->SetToBeBroadcasted(
false);
95 maxjCmd->SetGuidance(
"Set max value for 2J for simulation of correlated gamma emission.");
96 maxjCmd->SetParameterName(
"max2J",
true);
97 maxjCmd->SetDefaultValue(10);
99 maxjCmd->SetToBeBroadcasted(
false);
102 verbCmd->SetGuidance(
"Set verbosity level.");
103 verbCmd->SetParameterName(
"verb",
true);
104 verbCmd->SetDefaultValue(1);
106 verbCmd->SetToBeBroadcasted(
false);
108 xsTypeCmd =
new G4UIcommand(
"/process/had/deex/TypeXS",
this);
109 xsTypeCmd->SetGuidance(
"Defined type of inverse x-section");
110 xsTypeCmd->SetGuidance(
" model : PRECO or DEEX");
111 xsTypeCmd->SetGuidance(
" type of XS : Dostrovski, PARTICLEXS, Chatterjee, Kalbach");
113 xsTypeCmd->SetToBeBroadcasted(
false);
116 xsTypeCmd->SetParameter(modName);
117 modName->SetParameterCandidates(
"PRECO DEEX");
120 xsTypeCmd->SetParameter(mtype);
121 mtype->SetParameterCandidates(
"Dostrovski, PARTICLEXS, Chatterjee, Kalbach");
144 if (command == readCmd) {
145 theParameters->SetStoreICLevelData(readCmd->GetNewBoolValue(newValue));
146 }
else if (command == icCmd) {
147 theParameters->SetInternalConversionFlag(icCmd->GetNewBoolValue(newValue));
148 }
else if (command == corgCmd) {
149 theParameters->SetCorrelatedGamma(corgCmd->GetNewBoolValue(newValue));
150 }
else if (command == isoCmd) {
151 theParameters->SetIsomerProduction(isoCmd->GetNewBoolValue(newValue));
152 }
else if (command == maxjCmd) {
153 theParameters->SetTwoJMAX(maxjCmd->GetNewIntValue(newValue));
154 }
else if (command == verbCmd) {
155 theParameters->SetVerbose(verbCmd->GetNewIntValue(newValue));
156 }
else if (command == xsTypeCmd) {
158 std::istringstream is(newValue);
161 if (s2 ==
"Dostrovski") { n = 0; }
162 else if (s2 ==
"PARTICLEXS") { n = 1; }
163 else if (s2 ==
"Chatterjee") { n = 2; }
164 else if (s2 ==
"Kalbach") { n = 3; }
166 if (s1 ==
"PRECO") { theParameters->SetPrecoModelType(n); }
167 if (s1 ==
"DEEX") { theParameters->SetDeexModelType(n); }