74 {
75
76
77
78
79
80
81
84 }
86
87
89 if ( elasticProcess == nullptr ) {
91 <<
"NOT found elastic process => G4URRNeutrons returns without doing anything !" <<
G4endl;
92 return;
93 }
95 if ( niElastic < 1 ) {
97 <<
"NOT found any elastic model => G4URRNeutrons returns without doing anything !" <<
G4endl;
98 return;
99 }
100 G4int indexHPelastic = -1;
101 G4int indexHPthermalScattering = -1;
102 for (
G4int index = 0; index < niElastic; ++index ) {
104 indexHPelastic = index;
106 indexHPthermalScattering = index;
107 }
108 }
109 if ( indexHPelastic >= 0 ) {
111 G4cout <<
G4endl <<
" G4URRNeutrons::ConstructProcess() : found NeutronHPElastic => Disabled !" <<
G4endl;
112 } else {
114 <<
" WARNING: NOT found NeutronHPElastic => G4URRNeutrons returns without doing anything !" <<
G4endl;
115 return;
116 }
117 G4bool isThermalScatteringOn =
false;
118 if ( indexHPthermalScattering > 0 ) isThermalScatteringOn = true;
119 elasticProcess->
AddDataSet(
new G4ParticleHPElasticDataPT );
120 elasticProcess->
RegisterMe(
new G4ParticleHPElasticURR( isThermalScatteringOn ) );
121
122
124 if ( captureProcess == nullptr ) {
126 <<
"NOT found capture process => G4URRNeutrons returns without doing anything !" <<
G4endl;
127 return;
128 }
130 if ( niCapture < 1 ) {
132 <<
"NOT found any capture model => G4URRNeutrons returns without doing anything !" <<
G4endl;
133 return;
134 }
135 G4int indexHPcapture = -1;
136 for (
G4int index = 0; index < niCapture; ++index ) {
137
138
140 if ( nameNeutronCaptureModel == "NeutronHPCapture" ||
141 nameNeutronCaptureModel == "nRadCaptureHP" ||
142 nameNeutronCaptureModel == "nuDEX_neutronCapture" ) {
143 indexHPcapture = index;
144 }
145 }
146 if ( indexHPcapture >= 0 ) {
148 G4cout <<
G4endl <<
" G4URRNeutrons::ConstructProcess() : found "
150 <<
" => Disabled !" <<
G4endl;
151 } else {
153 <<
" WARNING: NOT found any expected neutron capture model => G4URRNeutrons returns without doing anything !" <<
G4endl;
154 return;
155 }
156 captureProcess->
AddDataSet(
new G4ParticleHPCaptureDataPT );
157 captureProcess->
RegisterMe(
new G4ParticleHPCaptureURR );
158
159
161 if ( fissionProcess == nullptr ) {
163 <<
"NOT found fission process => G4URRNeutrons returns without doing anything !" <<
G4endl;
164 return;
165 }
167 if ( niFission < 1 ) {
169 <<
"NOT found any fission model => G4URRNeutrons returns without doing anything !" <<
G4endl;
170 return;
171 }
172 G4int indexHPfission = -1;
173 for (
G4int index = 0; index < niFission; ++index ) {
174
176 if ( nameNeutronFissionModel == "NeutronHPFission" || nameNeutronFissionModel == "nFissionVI" ) {
177 indexHPfission = index;
178 }
179 }
180 if ( indexHPfission >= 0 ) {
182 G4cout <<
G4endl <<
" G4URRNeutrons::ConstructProcess() : found "
184 <<
" => Disabled !" <<
G4endl;
185 } else {
187 <<
" WARNING: NOT found any expected neutron fission model => G4URRNeutrons returns without doing anything !" <<
G4endl;
188 return;
189 }
190 fissionProcess->
RegisterMe(
new G4ParticleHPFissionURR );
191 fissionProcess->
AddDataSet(
new G4ParticleHPFissionDataPT );
192
193
195 if ( inelasticProcess == nullptr ) {
196 G4cout <<
"### " <<
GetPhysicsName() <<
" WARNING: Fail to add URR neutron inelastic treatment: "
197 <<
"NOT found inelastic process => G4URRNeutrons returns without doing anything !" <<
G4endl;
198 return;
199 }
201 if ( niInelastic < 1 ) {
202 G4cout <<
"### " <<
GetPhysicsName() <<
" WARNING: Fail to add URR neutron inelastic treatment: "
203 <<
"NOT found any inelastic model => G4URRNeutrons returns without doing anything !" <<
G4endl;
204 return;
205 }
206 G4int indexHPinelastic = -1;
207 for (
G4int index = 0; index < niInelastic; ++index ) {
209 indexHPinelastic = index;
210 }
211 }
212 if ( indexHPinelastic >= 0 ) {
214 G4cout <<
G4endl <<
" G4URRNeutrons::ConstructProcess() : found NeutronHPInelastic => Disabled !" <<
G4endl;
215 } else {
217 <<
" WARNING: NOT found NeutronHPInelastic => G4URRNeutrons returns without doing anything !" <<
G4endl;
218 return;
219 }
220 inelasticProcess->
AddDataSet(
new G4ParticleHPInelasticDataPT );
221 inelasticProcess->
RegisterMe(
new G4ParticleHPInelasticURR );
222}
G4GLOB_DLL std::ostream G4cout
static G4HadronicParameters * Instance()
void AddDataSet(G4VCrossSectionDataSet *aDataSet)
std::vector< G4HadronicInteraction * > & GetHadronicInteractionList()
void RegisterMe(G4HadronicInteraction *a)
static G4Neutron * Neutron()
static G4HadronicProcess * FindElasticProcess(const G4ParticleDefinition *)
static G4HadronicProcess * FindInelasticProcess(const G4ParticleDefinition *)
static G4HadronicProcess * FindCaptureProcess(const G4ParticleDefinition *)
static G4HadronicProcess * FindFissionProcess(const G4ParticleDefinition *)
G4int GetVerboseLevel() const
const G4String & GetPhysicsName() const