89 if ( elasticProcess ==
nullptr ) {
91 <<
"NOT found elastic process => G4URRNeutrons returns without doing anything !" <<
G4endl;
95 if ( niElastic < 1 ) {
97 <<
"NOT found any elastic model => G4URRNeutrons returns without doing anything !" <<
G4endl;
100 G4int indexHPelastic = -1;
101 G4int indexHPthermalScattering = -1;
102 for (
G4int index = 0; index < niElastic; ++index ) {
104 indexHPelastic = index;
106 indexHPthermalScattering = index;
109 if ( indexHPelastic >= 0 ) {
111 G4cout <<
G4endl <<
" G4URRNeutrons::ConstructProcess() : found NeutronHPElastic => Disabled !" <<
G4endl;
114 <<
" WARNING: NOT found NeutronHPElastic => G4URRNeutrons returns without doing anything !" <<
G4endl;
117 G4bool isThermalScatteringOn =
false;
118 if ( indexHPthermalScattering > 0 ) isThermalScatteringOn =
true;
124 if ( captureProcess ==
nullptr ) {
126 <<
"NOT found capture process => G4URRNeutrons returns without doing anything !" <<
G4endl;
130 if ( niCapture < 1 ) {
132 <<
"NOT found any capture model => G4URRNeutrons returns without doing anything !" <<
G4endl;
135 G4int indexHPcapture = -1;
136 for (
G4int index = 0; index < niCapture; ++index ) {
140 if ( nameNeutronCaptureModel ==
"NeutronHPCapture" ||
141 nameNeutronCaptureModel ==
"nRadCaptureHP" ||
142 nameNeutronCaptureModel ==
"nuDEX_neutronCapture" ) {
143 indexHPcapture = index;
146 if ( indexHPcapture >= 0 ) {
148 G4cout <<
G4endl <<
" G4URRNeutrons::ConstructProcess() : found "
150 <<
" => Disabled !" <<
G4endl;
153 <<
" WARNING: NOT found any expected neutron capture model => G4URRNeutrons returns without doing anything !" <<
G4endl;
161 if ( fissionProcess ==
nullptr ) {
163 <<
"NOT found fission process => G4URRNeutrons returns without doing anything !" <<
G4endl;
167 if ( niFission < 1 ) {
169 <<
"NOT found any fission model => G4URRNeutrons returns without doing anything !" <<
G4endl;
172 G4int indexHPfission = -1;
173 for (
G4int index = 0; index < niFission; ++index ) {
176 if ( nameNeutronFissionModel ==
"NeutronHPFission" || nameNeutronFissionModel ==
"nFissionVI" ) {
177 indexHPfission = index;
180 if ( indexHPfission >= 0 ) {
182 G4cout <<
G4endl <<
" G4URRNeutrons::ConstructProcess() : found "
184 <<
" => Disabled !" <<
G4endl;
187 <<
" WARNING: NOT found any expected neutron fission model => G4URRNeutrons returns without doing anything !" <<
G4endl;
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;
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;
206 G4int indexHPinelastic = -1;
207 for (
G4int index = 0; index < niInelastic; ++index ) {
209 indexHPinelastic = index;
212 if ( indexHPinelastic >= 0 ) {
214 G4cout <<
G4endl <<
" G4URRNeutrons::ConstructProcess() : found NeutronHPInelastic => Disabled !" <<
G4endl;
217 <<
" WARNING: NOT found NeutronHPInelastic => G4URRNeutrons returns without doing anything !" <<
G4endl;