41 : manager(man)
42{
43 ParticleHPDir = new G4UIdirectory("/process/had/particle_hp/");
44 ParticleHPDir->SetGuidance("UI commands of ParticleHP");
45
46 PhotoEvaCmd = new G4UIcmdWithAString("/process/had/particle_hp/use_photo_evaporation", this);
47 PhotoEvaCmd->SetGuidance(
48 " Force the use of the Photon Evaporation model, instead of the neutron capture final state "
49 "data.");
50 PhotoEvaCmd->SetParameterName("choice", false);
51 PhotoEvaCmd->SetCandidates("true false");
53
54 SkipMissingCmd = new G4UIcmdWithAString("/process/had/particle_hp/skip_missing_isotopes", this);
55 SkipMissingCmd->SetGuidance(
56 "Use only exact isotope data files, instead of allowing nearby isotope files to be used.");
57 SkipMissingCmd->SetGuidance(
58 "In this case if the exact file is not available, the cross section will be set to zero.");
59 SkipMissingCmd->SetParameterName("choice", false);
60 SkipMissingCmd->SetCandidates("true false");
62
63 NeglectDopplerCmd =
64 new G4UIcmdWithAString("/process/had/particle_hp/neglect_Doppler_broadening", this);
65 NeglectDopplerCmd->SetGuidance(
66 "Switch off the Doppler broadening due to the thermal motion of the target nucleus.");
67 NeglectDopplerCmd->SetGuidance("This option provides a significant CPU performance advantage.");
68 NeglectDopplerCmd->SetParameterName("choice", false);
69 NeglectDopplerCmd->SetCandidates("true false");
71
72 DoNotAdjustFSCmd =
73 new G4UIcmdWithAString("/process/had/particle_hp/do_not_adjust_final_state", this);
74 DoNotAdjustFSCmd->SetGuidance("Disable to adjust final state for getting better conservation.");
75 DoNotAdjustFSCmd->SetParameterName("choice", false);
76 DoNotAdjustFSCmd->SetCandidates("true false");
78
79 ProduceFissionFragementCmd =
80 new G4UIcmdWithAString("/process/had/particle_hp/produce_fission_fragment", this);
81 ProduceFissionFragementCmd->SetGuidance("Enable to generate fission fragments.");
82 ProduceFissionFragementCmd->SetParameterName("choice", false);
83 ProduceFissionFragementCmd->SetCandidates("true false");
85
86 WendtFissionModelCmd =
87 new G4UIcmdWithAString("/process/had/particle_hp/use_Wendt_fission_model", this);
88 WendtFissionModelCmd->SetGuidance("Enable use of Wendt fission model.");
89 WendtFissionModelCmd->SetParameterName("choice", false);
90 WendtFissionModelCmd->SetCandidates("true false");
92
93 NRESP71Cmd = new G4UIcmdWithAString("/process/had/particle_hp/use_NRESP71_model", this);
94 NRESP71Cmd->SetGuidance("Enable to use NRESP71 model for n on C reaction");
95 NRESP71Cmd->SetParameterName("choice", false);
96 NRESP71Cmd->SetCandidates("true false");
98
99 VerboseCmd = new G4UIcmdWithAnInteger("/process/had/particle_hp/verbose", this);
100 VerboseCmd->SetGuidance("Set Verbose level of ParticleHP package");
101 VerboseCmd->SetParameterName("verbose_level", true);
102 VerboseCmd->SetDefaultValue(1);
103 VerboseCmd->SetRange("verbose_level >=0");
105
106 UseDBRCCmd = new G4UIcmdWithABool("/process/had/particle_hp/use_DBRC", this);
107 UseDBRCCmd->SetGuidance("Enable use of Doppler Broadening Rejection Correction algorithm.");
108 UseDBRCCmd->SetDefaultValue(false);
110
111 MaxEnergySVTCmd = new G4UIcmdWithADoubleAndUnit("/process/had/particle_hp/SVT_E_max", this);
112 MaxEnergySVTCmd->SetGuidance("Energy threshold under which the SVT method is applied.");
113 MaxEnergySVTCmd->SetGuidance("The default is 400. kT.");
114 MaxEnergySVTCmd->SetParameterName("MaxEnergySVT", false);
115 MaxEnergySVTCmd->SetRange("MaxEnergySVT>=0.");
116 MaxEnergySVTCmd->SetUnitCategory("Energy");
118
119 MinADBRCCmd = new G4UIcmdWithADouble("/process/had/particle_hp/DBRC_A_min", this);
120 MinADBRCCmd->SetGuidance("Atomic mass in neutron mass above which the DBRC is applied.");
121 MinADBRCCmd->SetGuidance("The default is A=200.");
122 MinADBRCCmd->SetParameterName("MinASVT", false);
123 MinADBRCCmd->SetRange("MinASVT>=0.");
124 MinADBRCCmd->SetDefaultValue(200);
126
127 MinEnergyDBRCCmd = new G4UIcmdWithADoubleAndUnit("/process/had/particle_hp/DBRC_E_min", this);
128 MinEnergyDBRCCmd->SetGuidance(
129 "Energy threshold under which the DBRC method is not applied and only the SVT is used.");
130 MinEnergyDBRCCmd->SetGuidance("The default value is 0.1 eV.");
131 MinEnergyDBRCCmd->SetParameterName("MinEnergyDBRC", false);
132 MinEnergyDBRCCmd->SetRange("MinEnergyDBRC>0.");
133 MinEnergyDBRCCmd->SetUnitCategory("Energy");
134 MinEnergyDBRCCmd->SetDefaultValue(0.1 * CLHEP::eV);
136
137 MaxEnergyDBRCCmd = new G4UIcmdWithADoubleAndUnit("/process/had/particle_hp/DBRC_E_max", this);
138 MaxEnergyDBRCCmd->SetGuidance("Energy threshold under which the DBRC method is applied.");
139 MaxEnergyDBRCCmd->SetGuidance("The default value is 210. eV.");
140 MaxEnergyDBRCCmd->SetParameterName("MaxEnergyDBRC", false);
141 MaxEnergyDBRCCmd->SetRange("MaxEnergyDBRC>0.");
142 MaxEnergyDBRCCmd->SetUnitCategory("Energy");
143 MaxEnergyDBRCCmd->SetDefaultValue(210. * CLHEP::eV);
145}