175{
177
178 G4double totprob, prob, oldprob = 0.0;
180 std::size_t maxchannel, i;
181
182 G4int Amax = theResidualNucleus->GetA_asInt();
183 if(fVerbose > 1) {
184 G4cout <<
"### G4Evaporation::BreakItUp loop" <<
G4endl;
185 }
186 CLHEP::HepRandomEngine* rndm = G4Random::getTheEngine();
187
188
189
190 for(
G4int ia=0; ia<Amax; ++ia) {
191
192
193 G4int Z = theResidualNucleus->GetZ_asInt();
194 G4int A = theResidualNucleus->GetA_asInt();
195 if(
A <= 1) {
break; }
196 G4double Eex = theResidualNucleus->GetExcitationEnergy();
197
198
199 if(
theFBU->IsApplicable(Z,
A, Eex)) {
break; }
200
201
202 G4double abun = nist->GetIsotopeAbundance(Z,
A);
203
204 if(Eex <= minExcitation &&
205 (abun > 0.0 || (
A == 3 && (Z == 1 || Z == 2)))) {
break; }
206
207 totprob = 0.0;
208 maxchannel = nChannels;
209 if(fVerbose > 1) {
210 G4cout <<
"Evaporation# " << ia <<
" Z= " << Z <<
" A= " <<
A
211 << " Eex(MeV)= " << theResidualNucleus->GetExcitationEnergy()
212 <<
" aban= " << abun <<
G4endl;
213 }
214
215 for(i=0; i<nChannels; ++i) {
216 prob = (*theChannels)[i]->GetEmissionProbability(theResidualNucleus);
217 if(fVerbose > 1 && prob > 0.0) {
218 G4cout <<
" Channel# " << i <<
" prob= " << prob <<
G4endl;
219 }
220 totprob += prob;
221 probabilities[i] = totprob;
222
223
224 if (i > 8) {
225 if (prob <= totprob*limFact && oldprob <= totprob*limFact) {
226 maxchannel = i + 1;
227 break;
228 }
229 }
230 oldprob = prob;
231 }
232
233
234
235 if(0.0 < totprob && probabilities[0] == totprob) {
236 if(fVerbose > 1) {
237 G4cout <<
"$$$ Start chain of gamma evaporation" <<
G4endl;
238 }
239 (*theChannels)[0]->BreakUpChain(theResult, theResidualNucleus);
240
241
242 if(abun > 0.0) {
243 theResidualNucleus->SetLongLived(true);
244 break;
245 }
246
247 Eex = theResidualNucleus->GetExcitationEnergy();
248 if(
theFBU->IsApplicable(Z,
A, Eex)) {
break; }
249
250
251 if(theResidualNucleus->IsLongLived()) { break; }
252 totprob = 0.0;
253 }
254
255 if(0.0 == totprob &&
A < 30) {
256
257
258 if(fVerbose > 1) {
260 }
261 if(unstableBreakUp->BreakUpChain(theResult, theResidualNucleus)) {
262 continue;
263 }
264
265 break;
266 }
267
268
269 totprob *= rndm->
flat();
270
271
272 for (i=0; i<maxchannel; ++i) {
273 if (probabilities[i] >= totprob) { break; }
274 }
275
276 if(fVerbose > 1) {
G4cout <<
"$$$ Channel # " << i <<
G4endl; }
277 G4Fragment* frag = (*theChannels)[i]->EmittedFragment(theResidualNucleus);
278 if(fVerbose > 2 && frag) {
G4cout <<
" " << *frag <<
G4endl; }
279
280
281 if(nullptr != frag) { theResult->push_back(frag); }
282 else { break; }
283 }
284}
G4GLOB_DLL std::ostream G4cout
void InitialiseChannels() override