62 : theParameters(ptr)
63{
64 fDirectory = new G4UIdirectory("/process/had/deex/");
65 fDirectory->SetGuidance("Commands for nuclear de-excitation module.");
66
67 readCmd = new G4UIcmdWithABool("/process/had/deex/readICdata",this);
68 readCmd->SetGuidance("Enable/disable download IC data per atomic shell.");
69 readCmd->SetParameterName("readIC",true);
70 readCmd->SetDefaultValue(false);
72 readCmd->SetToBeBroadcasted(false);
73
74 icCmd = new G4UIcmdWithABool("/process/had/deex/setIC",this);
75 icCmd->SetGuidance("Enable/disable simulation of e- internal conversion.");
76 icCmd->SetParameterName("IC",true);
77 icCmd->SetDefaultValue(true);
79
80 corgCmd = new G4UIcmdWithABool("/process/had/deex/correlatedGamma",this);
81 corgCmd->SetGuidance("Enable/disable simulation of correlated gamma emission.");
82 corgCmd->SetParameterName("corrG",true);
83 corgCmd->SetDefaultValue(false);
85 corgCmd->SetToBeBroadcasted(false);
86
87 isoCmd = new G4UIcmdWithABool("/process/had/deex/isomerProduction",this);
88 isoCmd->SetGuidance("Enable/disable simulation of long lived isomers.");
89 isoCmd->SetParameterName("isoProd",true);
90 isoCmd->SetDefaultValue(false);
92 isoCmd->SetToBeBroadcasted(false);
93
94 maxjCmd = new G4UIcmdWithAnInteger("/process/had/deex/maxTwoJ",this);
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);
100
101 verbCmd = new G4UIcmdWithAnInteger("/process/had/deex/verbose",this);
102 verbCmd->SetGuidance("Set verbosity level.");
103 verbCmd->SetParameterName("verb",true);
104 verbCmd->SetDefaultValue(1);
106 verbCmd->SetToBeBroadcasted(false);
107
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);
114
115 auto modName = new G4UIparameter("modName",'s',false);
116 xsTypeCmd->SetParameter(modName);
117 modName->SetParameterCandidates("PRECO DEEX");
118
119 auto mtype = new G4UIparameter("TypeXS",'s',false);
120 xsTypeCmd->SetParameter(mtype);
121 mtype->SetParameterCandidates("Dostrovski, PARTICLEXS, Chatterjee, Kalbach");
122}