290{
291
292 G4Fragment * theInitialStatePtr = new G4Fragment(theInitialState);
293 if (fVerbose > 1) {
294 G4cout <<
"@@@@@@@@@@ Start G4Excitation Handler @@@@@@@@@@@@@ " <<
G4endl;
296 }
298
299
301
302 theResults.clear();
303 theEvapList.clear();
304
305
310
311
312 if (exEnergy >
A*maxExcitation &&
A > 0) {
313 ++fWarnings;
314 if(fWarnings < 0) {
316 ed <<
"High excitation Fragment Z= " << Z <<
" A= " <<
A
317 <<
" Eex/A(MeV)= " << exEnergy/
A;
319 }
320 }
321
322
325 if (0 < nL) {
326
327
328 if(
A >= 3 &&
A <= 5 && nL <= 2) {
330 if(3 ==
A && 1 == nL) {
331 pdg = 1010010030;
332 }
else if(5 ==
A && 2 == Z && 1 == nL) {
333 pdg = 1010020050;
335 if(1 == Z && 1 == nL) {
336 pdg = 1010010040;
337 } else if(2 == Z && 1 == nL) {
338 pdg = 1010020040;
339 } else if(0 == Z && 2 == nL) {
340 pdg = 1020000040;
341 } else if(1 == Z && 2 == nL) {
342 pdg = 1020010040;
343 }
344 }
345
346 if (0 < pdg) {
347 const G4ParticleDefinition* part = thePartTable->FindParticle(pdg);
348 if(nullptr != part) {
349 G4ReactionProduct* theNew = new G4ReactionProduct(part);
351 if ( lambdaLV.
vect().
mag() > CLHEP::eV ) {
353 }
355 G4double etot = std::max(lambdaLV.
e(), mass);
356 dir *= std::sqrt((etot - mass)*(etot + mass));
362 v->push_back(theNew);
363 return v;
364 }
365 }
366 }
368 lambdaF = nL*(fLambdaMass - CLHEP::neutron_mass_c2)/mass;
369
370
372
373
374 lambdaLV *= lambdaF;
375 } else if (0 > nL) {
376 ++fWarnings;
377 if(fWarnings < 0) {
379 ed <<
"Fragment with negative L: Z=" << Z <<
" A=" <<
A <<
" L=" << nL
380 <<
" Eex/A(MeV)= " << exEnergy/
A;
382 }
383 }
384
385
386 if (
A <= 1 || !isActive) {
387 theResults.push_back( theInitialStatePtr );
388
389
390 }
else if (exEnergy < minExcitation && nist->GetIsotopeAbundance(Z,
A) > 0.0) {
391 theResults.push_back( theInitialStatePtr );
392
393
394
395 } else {
396 if ((
A<maxAForFermiBreakUp && Z<maxZForFermiBreakUp)
397 || exEnergy <= minEForMultiFrag*
A) {
398 theEvapList.push_back(theInitialStatePtr);
399
400
401 } else {
402 theTempResult = theMultiFragmentation->BreakItUp(theInitialState);
403 if (nullptr == theTempResult) {
404 theEvapList.push_back(theInitialStatePtr);
405 } else {
406 std::size_t nsec = theTempResult->size();
407
408
409 if (0 == nsec) {
410 theEvapList.push_back(theInitialStatePtr);
411
412
413 } else {
414 G4bool deletePrimary =
true;
415 for (auto const & ptr : *theTempResult) {
416 if (ptr == theInitialStatePtr) { deletePrimary = false; }
417 SortSecondaryFragment(ptr);
418 }
419 if (deletePrimary) { delete theInitialStatePtr; }
420 }
421 delete theTempResult;
422 }
423 }
424 }
425 if (fVerbose > 2) {
426 G4cout <<
"## After first step of handler " << theEvapList.size()
427 << " for evap; "
428 << theResults.size() <<
" results. " <<
G4endl;
429 }
430
431
432
433
434 static const G4int countmax = 1000;
435 std::size_t kk;
436 for (kk=0; kk<theEvapList.size(); ++kk) {
437 G4Fragment* frag = theEvapList[kk];
438 if (fVerbose > 3) {
441 }
442 if (kk >= countmax) {
444 ed << "Infinite loop in the de-excitation module: " << kk
445 << " iterations \n"
446 << " Initial fragment: \n" << theInitialState
447 << "\n Current fragment: \n" << *frag;
449 ed,"Stop execution");
450
451 }
454 results.clear();
455 if (fVerbose > 2) {
456 G4cout <<
"G4ExcitationHandler# " << kk <<
" Z= " << Z <<
" A= " <<
A
458 }
459
461 theFermiModel->BreakFragment(&results, frag);
462 std::size_t nsec = results.size();
463 if (fVerbose > 2) {
G4cout <<
"FermiBreakUp Nsec= " << nsec <<
G4endl; }
464
465
466
467 if (1 < nsec) {
468 for (auto const & res : results) {
469 SortSecondaryFragment(res);
470 }
471 continue;
472 }
473
474 }
475
476
477 theEvaporation->BreakFragment(&results, frag);
478 if (fVerbose > 3) {
479 G4cout <<
"Evaporation Nsec= " << results.size() <<
G4endl;
480 }
481 if (0 == results.size()) {
482 theResults.push_back(frag);
483 } else {
484 SortSecondaryFragment(frag);
485 }
486
487
488 for (auto const & res : results) {
489 if(fVerbose > 4) {
491 }
492 SortSecondaryFragment(res);
493 }
494 }
495 if (fVerbose > 2) {
496 G4cout <<
"## After 2nd step of handler " << theEvapList.size()
497 << " was evap; "
498 << theResults.size() <<
" results. " <<
G4endl;
499 }
502
503
504
505
506 theReactionProductVector->reserve( theResults.size() );
507
508 if (fVerbose > 1) {
509 G4cout <<
"### ExcitationHandler provides " << theResults.size()
510 <<
" evaporated products:" <<
G4endl;
511 }
513 if ( nL > 0 ) partOfLambdaLV = lambdaLV/(
G4double)nL;
514 for (auto const & frag : theResults) {
517
518
519
520 if (!isActive) {
523 G4double fac = (etot <= mass || 0.0 == ptot) ? 0.0
524 : std::sqrt((etot - mass)*(etot + mass))/ptot;
529 }
530 if (fVerbose > 3) {
532 if (frag->NuclearPolarization()) {
533 G4cout <<
" " << frag->NuclearPolarization();
534 }
536 }
537
538 G4int fragmentA = frag->GetA_asInt();
539 G4int fragmentZ = frag->GetZ_asInt();
541 const G4ParticleDefinition* theKindOfFragment = nullptr;
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;
553 if(0 < nL) {
554 const G4ParticleDefinition* p = thePartTable->FindParticle(1010010030);
555 if(nullptr != p) {
556 theKindOfFragment = p;
557 isHyperN = true;
558 --nL;
559 }
560 }
561 } else if (fragmentA == 3 && fragmentZ == 2) {
562 theKindOfFragment = theHe3;
563 } else if (fragmentA == 4 && fragmentZ == 2) {
564 theKindOfFragment = theAlpha;
565 if (0 < nL) {
566 const G4ParticleDefinition* p = thePartTable->FindParticle(1010020040);
567 if(nullptr != p) {
568 theKindOfFragment = p;
569 isHyperN = true;
570 --nL;
571 }
572 }
573 } else {
574
575
576 eexc = frag->GetExcitationEnergy();
577 G4int idxf = frag->GetFloatingLevelNumber();
578 if (eexc < minExcitation) {
579 eexc = 0.0;
580 idxf = 0;
581 }
582
583 theKindOfFragment = theTableOfIons->GetIon(fragmentZ, fragmentA, eexc,
585 if (fVerbose > 3) {
586 G4cout <<
"### EXCH: Find ion Z= " << fragmentZ
587 << " A= " << fragmentA
588 << " Eexc(MeV)= " << eexc/MeV << " idx= " << idxf
591 }
592 }
593
594 if (nullptr != theKindOfFragment) {
595 G4ReactionProduct * theNew = new G4ReactionProduct(theKindOfFragment);
596 if (isHyperN) {
600 etot = std::max(lv.
e(), mass);
601 G4double ptot = std::sqrt((etot - mass)*(etot + mass));
602 dir *= ptot;
604
606 } else {
608 }
612 theReactionProductVector->push_back(theNew);
613
614
615 } else {
616 theKindOfFragment =
617 theTableOfIons->GetIon(fragmentZ,fragmentA,0.0,
noFloat,0);
618 if (theKindOfFragment) {
621 if (etot <= ionmass) {
622 etot = ionmass;
623 } else {
624 G4double ptot = std::sqrt((etot - ionmass)*(etot + ionmass));
625 mom = (frag->GetMomentum().vect().unit())*ptot;
626 }
627 G4ReactionProduct * theNew = new G4ReactionProduct(theKindOfFragment);
632 theReactionProductVector->push_back(theNew);
633 if (fVerbose > 3) {
634 G4cout <<
" ground state, energy corrected E(MeV)= "
636 }
637 }
638 }
639 delete frag;
640 }
641
642
643 if (0 < nL) {
645 if (lambdaLV.
vect().
mag() > CLHEP::eV) {
647 }
649 dir *= std::sqrt((etot - fLambdaMass)*(etot + fLambdaMass));
650 for (
G4int i=0; i<nL; ++i) {
651 G4ReactionProduct* theNew = new G4ReactionProduct(theLambda);
656 theReactionProductVector->push_back(theNew);
657 }
658 }
659 if (fVerbose > 3) {
660 G4cout <<
"@@@@@@@@@@ End G4Excitation Handler "<<
G4endl;
661 }
662 return theReactionProductVector;
663}
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
std::vector< G4Fragment * > G4FragmentVector
CLHEP::HepLorentzVector G4LorentzVector
std::vector< G4ReactionProduct * > G4ReactionProductVector
CLHEP::Hep3Vector G4ThreeVector
G4double GetGroundStateMass() const
G4int GetCreatorModelID() const
G4double GetExcitationEnergy() const
const G4LorentzVector & GetMomentum() const
G4double GetCreationTime() const
G4int GetNumberOfLambdas() const
void SetMomentum(const G4LorentzVector &value)
void SetZAandMomentum(const G4LorentzVector &, G4int Z, G4int A, G4int nLambdas=0)
static G4Ions::G4FloatLevelBase FloatLevelBase(char flbChar)
G4double GetPDGMass() const
const G4String & GetParticleName() const
void SetMomentum(const G4double x, const G4double y, const G4double z)
void SetTotalEnergy(const G4double en)
void SetCreatorModelID(const G4int mod)
void SetFormationTime(G4double aTime)