294 G4cout <<
"@@@@@@@@@@ Start G4Excitation Handler @@@@@@@@@@@@@ " <<
G4endl;
312 if (exEnergy >
A*maxExcitation &&
A > 0) {
316 ed <<
"High excitation Fragment Z= " << Z <<
" A= " <<
A
317 <<
" Eex/A(MeV)= " << exEnergy/
A;
328 if(
A >= 3 &&
A <= 5 && nL <= 2) {
330 if(3 ==
A && 1 == nL) {
332 }
else if(5 ==
A && 2 == Z && 1 == nL) {
335 if(1 == Z && 1 == nL) {
337 }
else if(2 == Z && 1 == nL) {
339 }
else if(0 == Z && 2 == nL) {
341 }
else if(1 == Z && 2 == nL) {
348 if(
nullptr != part) {
351 if ( lambdaLV.
vect().
mag() > CLHEP::eV ) {
355 G4double etot = std::max(lambdaLV.
e(), mass);
356 dir *= std::sqrt((etot - mass)*(etot + mass));
362 v->push_back(theNew);
368 lambdaF = nL*(fLambdaMass - CLHEP::neutron_mass_c2)/mass;
379 ed <<
"Fragment with negative L: Z=" << Z <<
" A=" <<
A <<
" L=" << nL
380 <<
" Eex/A(MeV)= " << exEnergy/
A;
386 if (
A <= 1 || !isActive) {
387 theResults.push_back( theInitialStatePtr );
390 }
else if (exEnergy < minExcitation && nist->GetIsotopeAbundance(Z,
A) > 0.0) {
391 theResults.push_back( theInitialStatePtr );
396 if ((
A<maxAForFermiBreakUp && Z<maxZForFermiBreakUp)
397 || exEnergy <= minEForMultiFrag*
A) {
398 theEvapList.push_back(theInitialStatePtr);
402 theTempResult = theMultiFragmentation->BreakItUp(theInitialState);
403 if (
nullptr == theTempResult) {
404 theEvapList.push_back(theInitialStatePtr);
406 std::size_t nsec = theTempResult->size();
410 theEvapList.push_back(theInitialStatePtr);
414 G4bool deletePrimary =
true;
415 for (
auto const & ptr : *theTempResult) {
416 if (ptr == theInitialStatePtr) { deletePrimary =
false; }
417 SortSecondaryFragment(ptr);
419 if (deletePrimary) {
delete theInitialStatePtr; }
421 delete theTempResult;
426 G4cout <<
"## After first step of handler " << theEvapList.size()
428 << theResults.size() <<
" results. " <<
G4endl;
434 static const G4int countmax = 1000;
436 for (kk=0; kk<theEvapList.size(); ++kk) {
442 if (kk >= countmax) {
444 ed <<
"Infinite loop in the de-excitation module: " << kk
446 <<
" Initial fragment: \n" << theInitialState
447 <<
"\n Current fragment: \n" << *frag;
449 ed,
"Stop execution");
456 G4cout <<
"G4ExcitationHandler# " << kk <<
" Z= " << Z <<
" A= " <<
A
461 theFermiModel->BreakFragment(&results, frag);
462 std::size_t nsec = results.size();
463 if (fVerbose > 2) {
G4cout <<
"FermiBreakUp Nsec= " << nsec <<
G4endl; }
468 for (
auto const & res : results) {
469 SortSecondaryFragment(res);
477 theEvaporation->BreakFragment(&results, frag);
479 G4cout <<
"Evaporation Nsec= " << results.size() <<
G4endl;
481 if (0 == results.size()) {
482 theResults.push_back(frag);
484 SortSecondaryFragment(frag);
488 for (
auto const & res : results) {
492 SortSecondaryFragment(res);
496 G4cout <<
"## After 2nd step of handler " << theEvapList.size()
498 << theResults.size() <<
" results. " <<
G4endl;
506 theReactionProductVector->reserve( theResults.size() );
509 G4cout <<
"### ExcitationHandler provides " << theResults.size()
510 <<
" evaporated products:" <<
G4endl;
513 if ( nL > 0 ) partOfLambdaLV = lambdaLV/(
G4double)nL;
514 for (
auto const & frag : theResults) {
521 G4double mass = frag->GetGroundStateMass();
523 G4double fac = (etot <= mass || 0.0 == ptot) ? 0.0
524 : std::sqrt((etot - mass)*(etot + mass))/ptot;
526 (frag->GetMomentum()).py()*fac,
527 (frag->GetMomentum()).pz()*fac, etot);
528 frag->SetMomentum(lv);
532 if (frag->NuclearPolarization()) {
533 G4cout <<
" " << frag->NuclearPolarization();
538 G4int fragmentA = frag->GetA_asInt();
539 G4int fragmentZ = frag->GetZ_asInt();
543 if (fragmentA == 0) {
544 theKindOfFragment = frag->GetParticleDefinition();
545 }
else if (fragmentA == 1 && fragmentZ == 0) {
546 theKindOfFragment = theNeutron;
547 }
else if (fragmentA == 1 && fragmentZ == 1) {
548 theKindOfFragment = theProton;
549 }
else if (fragmentA == 2 && fragmentZ == 1) {
550 theKindOfFragment = theDeuteron;
551 }
else if (fragmentA == 3 && fragmentZ == 1) {
552 theKindOfFragment = theTriton;
556 theKindOfFragment = p;
561 }
else if (fragmentA == 3 && fragmentZ == 2) {
562 theKindOfFragment = theHe3;
563 }
else if (fragmentA == 4 && fragmentZ == 2) {
564 theKindOfFragment = theAlpha;
568 theKindOfFragment = p;
576 eexc = frag->GetExcitationEnergy();
577 G4int idxf = frag->GetFloatingLevelNumber();
578 if (eexc < minExcitation) {
583 theKindOfFragment = theTableOfIons->GetIon(fragmentZ, fragmentA, eexc,
586 G4cout <<
"### EXCH: Find ion Z= " << fragmentZ
587 <<
" A= " << fragmentA
588 <<
" Eexc(MeV)= " << eexc/MeV <<
" idx= " << idxf
594 if (
nullptr != theKindOfFragment) {
600 etot = std::max(lv.
e(), mass);
601 G4double ptot = std::sqrt((etot - mass)*(etot + mass));
612 theReactionProductVector->push_back(theNew);
617 theTableOfIons->GetIon(fragmentZ,fragmentA,0.0,
noFloat,0);
618 if (theKindOfFragment) {
621 if (etot <= ionmass) {
624 G4double ptot = std::sqrt((etot - ionmass)*(etot + ionmass));
625 mom = (frag->GetMomentum().vect().unit())*ptot;
632 theReactionProductVector->push_back(theNew);
634 G4cout <<
" ground state, energy corrected E(MeV)= "
645 if (lambdaLV.
vect().
mag() > CLHEP::eV) {
649 dir *= std::sqrt((etot - fLambdaMass)*(etot + fLambdaMass));
650 for (
G4int i=0; i<nL; ++i) {
656 theReactionProductVector->push_back(theNew);
660 G4cout <<
"@@@@@@@@@@ End G4Excitation Handler "<<
G4endl;
662 return theReactionProductVector;