Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ExcitationHandler Class Reference

#include <G4ExcitationHandler.hh>

Public Member Functions

 G4ExcitationHandler ()
 
 ~G4ExcitationHandler ()
 
G4ReactionProductVectorBreakItUp (const G4Fragment &theInitialState)
 
void ModelDescription (std::ostream &outFile) const
 
void Initialise ()
 
void SetEvaporation (G4VEvaporation *ptr, G4bool isLocal=false)
 
void SetMultiFragmentation (G4VMultiFragmentation *ptr)
 
void SetFermiModel (G4VFermiBreakUp *ptr)
 
void SetPhotonEvaporation (G4VEvaporationChannel *ptr)
 
void SetDeexChannelsType (G4DeexChannelType val)
 
void SetMaxZForFermiBreakUp (G4int aZ)
 
void SetMaxAForFermiBreakUp (G4int anA)
 
void SetMaxAandZForFermiBreakUp (G4int anA, G4int aZ)
 
void SetMinEForMultiFrag (G4double anE)
 
G4VEvaporationGetEvaporation ()
 
G4VMultiFragmentationGetMultiFragmentation ()
 
G4VFermiBreakUpGetFermiModel ()
 
G4VEvaporationChannelGetPhotonEvaporation ()
 
void SetOPTxs (G4int opt)
 
void UseSICB ()
 
 G4ExcitationHandler (const G4ExcitationHandler &right)=delete
 
const G4ExcitationHandleroperator= (const G4ExcitationHandler &right)=delete
 
G4bool operator== (const G4ExcitationHandler &right) const =delete
 
G4bool operator!= (const G4ExcitationHandler &right) const =delete
 

Detailed Description

Definition at line 63 of file G4ExcitationHandler.hh.

Constructor & Destructor Documentation

◆ G4ExcitationHandler() [1/2]

G4ExcitationHandler::G4ExcitationHandler ( )

Definition at line 87 of file G4ExcitationHandler.cc.

88 : minEForMultiFrag(1.*CLHEP::TeV), minExcitation(1.*CLHEP::eV),
89 maxExcitation(100.*CLHEP::MeV)
90{
91 thePartTable = G4ParticleTable::GetParticleTable();
92 theTableOfIons = thePartTable->GetIonTable();
94
95 theMultiFragmentation = new G4StatMF();
96 theFermiModel = new G4FermiBreakUpVI();
97 thePhotonEvaporation = new G4PhotonEvaporation();
98 SetEvaporation(new G4Evaporation(thePhotonEvaporation), true);
99 theResults.reserve(60);
100 results.reserve(30);
101 theEvapList.reserve(30);
102
103 theElectron = G4Electron::Electron();
104 theNeutron = G4Neutron::NeutronDefinition();
105 theProton = G4Proton::ProtonDefinition();
106 theDeuteron = G4Deuteron::DeuteronDefinition();
107 theTriton = G4Triton::TritonDefinition();
108 theHe3 = G4He3::He3Definition();
109 theAlpha = G4Alpha::AlphaDefinition();
110 theLambda = G4Lambda::Lambda();
111
112 fLambdaMass = theLambda->GetPDGMass();
113
114 if(fVerbose > 1) { G4cout << "### New handler " << this << G4endl; }
115}
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
static G4Alpha * AlphaDefinition()
Definition G4Alpha.cc:78
static G4Deuteron * DeuteronDefinition()
Definition G4Deuteron.cc:85
static G4Electron * Electron()
Definition G4Electron.cc:91
void SetEvaporation(G4VEvaporation *ptr, G4bool isLocal=false)
static G4He3 * He3Definition()
Definition G4He3.cc:85
static G4Lambda * Lambda()
Definition G4Lambda.cc:105
static G4Neutron * NeutronDefinition()
Definition G4Neutron.cc:96
static G4NistManager * Instance()
static G4ParticleTable * GetParticleTable()
static G4Proton * ProtonDefinition()
Definition G4Proton.cc:85
static G4Triton * TritonDefinition()
Definition G4Triton.cc:85

Referenced by G4ExcitationHandler(), operator!=(), operator=(), and operator==().

◆ ~G4ExcitationHandler()

G4ExcitationHandler::~G4ExcitationHandler ( )

Definition at line 117 of file G4ExcitationHandler.cc.

118{
119 delete theMultiFragmentation;
120 delete theFermiModel;
121 if(isEvapLocal) { delete theEvaporation; }
122}

◆ G4ExcitationHandler() [2/2]

G4ExcitationHandler::G4ExcitationHandler ( const G4ExcitationHandler & right)
delete

Member Function Documentation

◆ BreakItUp()

G4ReactionProductVector * G4ExcitationHandler::BreakItUp ( const G4Fragment & theInitialState)

Definition at line 289 of file G4ExcitationHandler.cc.

290{
291 // Variables existing until end of method
292 G4Fragment * theInitialStatePtr = new G4Fragment(theInitialState);
293 if (fVerbose > 1) {
294 G4cout << "@@@@@@@@@@ Start G4Excitation Handler @@@@@@@@@@@@@ " << G4endl;
295 G4cout << theInitialState << G4endl;
296 }
297 if (!isInitialised) { Initialise(); }
298
299 // pointer to fragment vector which receives temporal results
300 G4FragmentVector * theTempResult = nullptr;
301
302 theResults.clear();
303 theEvapList.clear();
304
305 // Variables to describe the excited configuration
306 G4double exEnergy = theInitialState.GetExcitationEnergy();
307 G4int A = theInitialState.GetA_asInt();
308 G4int Z = theInitialState.GetZ_asInt();
309 G4int nL = theInitialState.GetNumberOfLambdas();
310
311 // too much excitation
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;
318 G4Exception("G4ExcitationHandler::BreakItUp()","had0034",JustWarning,ed,"");
319 }
320 }
321
322 // for hyper-nuclei subtract lambdas from the projectile fragment
323 G4double lambdaF = 0.0;
324 G4LorentzVector lambdaLV = theInitialStatePtr->GetMomentum();
325 if (0 < nL) {
326
327 // is it a stable hyper-nuclei?
328 if(A >= 3 && A <= 5 && nL <= 2) {
329 G4int pdg = 0;
330 if(3 == A && 1 == nL) {
331 pdg = 1010010030;
332 } else if(5 == A && 2 == Z && 1 == nL) {
333 pdg = 1010020050;
334 } else if(4 == A) {
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 // initial state is one of hyper-nuclei
346 if (0 < pdg) {
347 const G4ParticleDefinition* part = thePartTable->FindParticle(pdg);
348 if(nullptr != part) {
349 G4ReactionProduct* theNew = new G4ReactionProduct(part);
350 G4ThreeVector dir = G4ThreeVector( 0.0, 0.0, 0.0 );
351 if ( lambdaLV.vect().mag() > CLHEP::eV ) {
352 dir = lambdaLV.vect().unit();
353 }
354 G4double mass = part->GetPDGMass();
355 G4double etot = std::max(lambdaLV.e(), mass);
356 dir *= std::sqrt((etot - mass)*(etot + mass));
357 theNew->SetMomentum(dir);
358 theNew->SetTotalEnergy(etot);
359 theNew->SetFormationTime(theInitialState.GetCreationTime());
360 theNew->SetCreatorModelID(theInitialState.GetCreatorModelID());
362 v->push_back(theNew);
363 return v;
364 }
365 }
366 }
367 G4double mass = theInitialStatePtr->GetGroundStateMass();
368 lambdaF = nL*(fLambdaMass - CLHEP::neutron_mass_c2)/mass;
369
370 // de-excitation with neutrons instead of lambda inside the fragment
371 theInitialStatePtr->SetZAandMomentum(lambdaLV*(1. - lambdaF), Z, A, 0);
372
373 // 4-momentum not used in de-excitation
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;
381 G4Exception("G4ExcitationHandler::BreakItUp()","had0034",JustWarning,ed,"");
382 }
383 }
384
385 // In case A <= 1 the fragment will not perform any nucleon emission
386 if (A <= 1 || !isActive) {
387 theResults.push_back( theInitialStatePtr );
388
389 // check if a fragment is stable
390 } else if (exEnergy < minExcitation && nist->GetIsotopeAbundance(Z, A) > 0.0) {
391 theResults.push_back( theInitialStatePtr );
392
393 // JMQ 150909: first step in de-excitation is treated separately
394 // Fragments after the first step are stored in theEvapList
395 } else {
396 if ((A<maxAForFermiBreakUp && Z<maxZForFermiBreakUp)
397 || exEnergy <= minEForMultiFrag*A) {
398 theEvapList.push_back(theInitialStatePtr);
399
400 // Statistical Multifragmentation will take place only once
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 // no fragmentation
409 if (0 == nsec) {
410 theEvapList.push_back(theInitialStatePtr);
411
412 // secondary are produced - sort out secondary fragments
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; // end multifragmentation
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 // FermiBreakUp and De-excitation loop
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) {
439 G4cout << "Next evaporate: " << G4endl;
440 G4cout << *frag << G4endl;
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;
448 G4Exception("G4ExcitationHandler::BreakItUp","had0333",FatalException,
449 ed,"Stop execution");
450
451 }
452 A = frag->GetA_asInt();
453 Z = frag->GetZ_asInt();
454 results.clear();
455 if (fVerbose > 2) {
456 G4cout << "G4ExcitationHandler# " << kk << " Z= " << Z << " A= " << A
457 << " Eex(MeV)= " << frag->GetExcitationEnergy() << G4endl;
458 }
459 // Fermi Break-Up
460 if (theFermiModel->IsApplicable(Z, A, frag->GetExcitationEnergy())) {
461 theFermiModel->BreakFragment(&results, frag);
462 std::size_t nsec = results.size();
463 if (fVerbose > 2) { G4cout << "FermiBreakUp Nsec= " << nsec << G4endl; }
464
465 // FBU takes care to delete input fragment or add it to the results
466 // The secondary may be excited - photo-evaporation should be applied
467 if (1 < nsec) {
468 for (auto const & res : results) {
469 SortSecondaryFragment(res);
470 }
471 continue;
472 }
473 // evaporation will be applied
474 }
475 // apply Evaporation, residual nucleus is always added to the results
476 // photon evaporation is possible
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 // Sort out secondary fragments
488 for (auto const & res : results) {
489 if(fVerbose > 4) {
490 G4cout << "Evaporated product #" << *res << G4endl;
491 }
492 SortSecondaryFragment(res);
493 } // end of loop on secondary
494 } // end of the loop over theEvapList
495 if (fVerbose > 2) {
496 G4cout << "## After 2nd step of handler " << theEvapList.size()
497 << " was evap; "
498 << theResults.size() << " results. " << G4endl;
499 }
500 G4ReactionProductVector * theReactionProductVector =
502
503 // MAC (24/07/08)
504 // To optimise the storing speed, we reserve space
505 // in memory for the vector
506 theReactionProductVector->reserve( theResults.size() );
507
508 if (fVerbose > 1) {
509 G4cout << "### ExcitationHandler provides " << theResults.size()
510 << " evaporated products:" << G4endl;
511 }
512 G4LorentzVector partOfLambdaLV;
513 if ( nL > 0 ) partOfLambdaLV = lambdaLV/(G4double)nL;
514 for (auto const & frag : theResults) {
515 G4LorentzVector lv0 = frag->GetMomentum();
516 G4double etot = lv0.e();
517
518 // in the case of dummy de-excitation, excitation energy is transfered
519 // into kinetic energy of output ion
520 if (!isActive) {
521 G4double mass = frag->GetGroundStateMass();
522 G4double ptot = lv0.vect().mag();
523 G4double fac = (etot <= mass || 0.0 == ptot) ? 0.0
524 : std::sqrt((etot - mass)*(etot + mass))/ptot;
525 G4LorentzVector lv((frag->GetMomentum()).px()*fac,
526 (frag->GetMomentum()).py()*fac,
527 (frag->GetMomentum()).pz()*fac, etot);
528 frag->SetMomentum(lv);
529 }
530 if (fVerbose > 3) {
531 G4cout << *frag;
532 if (frag->NuclearPolarization()) {
533 G4cout << " " << frag->NuclearPolarization();
534 }
535 G4cout << G4endl;
536 }
537
538 G4int fragmentA = frag->GetA_asInt();
539 G4int fragmentZ = frag->GetZ_asInt();
540 G4double eexc = 0.0;
541 const G4ParticleDefinition* theKindOfFragment = nullptr;
542 G4bool isHyperN = false;
543 if (fragmentA == 0) { // photon or e-
544 theKindOfFragment = frag->GetParticleDefinition();
545 } else if (fragmentA == 1 && fragmentZ == 0) { // neutron
546 theKindOfFragment = theNeutron;
547 } else if (fragmentA == 1 && fragmentZ == 1) { // proton
548 theKindOfFragment = theProton;
549 } else if (fragmentA == 2 && fragmentZ == 1) { // deuteron
550 theKindOfFragment = theDeuteron;
551 } else if (fragmentA == 3 && fragmentZ == 1) { // triton
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) { // helium3
562 theKindOfFragment = theHe3;
563 } else if (fragmentA == 4 && fragmentZ == 2) { // alpha
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 // fragment
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
589 << " " << theKindOfFragment->GetParticleName()
590 << G4endl;
591 }
592 }
593 // fragment identified
594 if (nullptr != theKindOfFragment) {
595 G4ReactionProduct * theNew = new G4ReactionProduct(theKindOfFragment);
596 if (isHyperN) {
597 G4LorentzVector lv = lv0 + partOfLambdaLV;
598 G4ThreeVector dir = lv.vect().unit();
599 G4double mass = theKindOfFragment->GetPDGMass();
600 etot = std::max(lv.e(), mass);
601 G4double ptot = std::sqrt((etot - mass)*(etot + mass));
602 dir *= ptot;
603 theNew->SetMomentum(dir);
604 // remaining not compensated 4-momentum
605 lambdaLV += (lv0 - G4LorentzVector(dir, etot));
606 } else {
607 theNew->SetMomentum(lv0.vect());
608 }
609 theNew->SetTotalEnergy(etot);
610 theNew->SetFormationTime(frag->GetCreationTime());
611 theNew->SetCreatorModelID(frag->GetCreatorModelID());
612 theReactionProductVector->push_back(theNew);
613
614 // fragment not found out ground state is created
615 } else {
616 theKindOfFragment =
617 theTableOfIons->GetIon(fragmentZ,fragmentA,0.0,noFloat,0);
618 if (theKindOfFragment) {
619 G4ThreeVector mom(0.0,0.0,0.0);
620 G4double ionmass = theKindOfFragment->GetPDGMass();
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);
628 theNew->SetMomentum(mom);
629 theNew->SetTotalEnergy(etot);
630 theNew->SetFormationTime(frag->GetCreationTime());
631 theNew->SetCreatorModelID(frag->GetCreatorModelID());
632 theReactionProductVector->push_back(theNew);
633 if (fVerbose > 3) {
634 G4cout << " ground state, energy corrected E(MeV)= "
635 << etot << G4endl;
636 }
637 }
638 }
639 delete frag;
640 }
641 // remaining lambdas are free; conserve quantum numbers but
642 // not 4-momentum
643 if (0 < nL) {
644 G4ThreeVector dir = G4ThreeVector(0.0, 0.0, 0.0);
645 if (lambdaLV.vect().mag() > CLHEP::eV) {
646 dir = lambdaLV.vect().unit();
647 }
648 G4double etot = std::max(lambdaLV.e()/(G4double)nL, fLambdaMass);
649 dir *= std::sqrt((etot - fLambdaMass)*(etot + fLambdaMass));
650 for (G4int i=0; i<nL; ++i) {
651 G4ReactionProduct* theNew = new G4ReactionProduct(theLambda);
652 theNew->SetMomentum(dir);
653 theNew->SetTotalEnergy(etot);
654 theNew->SetFormationTime(theInitialState.GetCreationTime());
655 theNew->SetCreatorModelID(theInitialState.GetCreatorModelID());
656 theReactionProductVector->push_back(theNew);
657 }
658 }
659 if (fVerbose > 3) {
660 G4cout << "@@@@@@@@@@ End G4Excitation Handler "<< G4endl;
661 }
662 return theReactionProductVector;
663}
@ JustWarning
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
std::vector< G4Fragment * > G4FragmentVector
Definition G4Fragment.hh:65
#define noFloat
Definition G4Ions.hh:119
CLHEP::HepLorentzVector G4LorentzVector
std::vector< G4ReactionProduct * > G4ReactionProductVector
CLHEP::Hep3Vector G4ThreeVector
double G4double
Definition G4Types.hh:83
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
const G4double A[17]
Hep3Vector unit() const
double mag() const
Hep3Vector vect() const
G4double GetGroundStateMass() const
G4int GetCreatorModelID() const
G4double GetExcitationEnergy() const
const G4LorentzVector & GetMomentum() const
G4double GetCreationTime() const
G4int GetZ_asInt() const
G4int GetNumberOfLambdas() const
void SetMomentum(const G4LorentzVector &value)
G4int GetA_asInt() const
void SetZAandMomentum(const G4LorentzVector &, G4int Z, G4int A, G4int nLambdas=0)
static G4Ions::G4FloatLevelBase FloatLevelBase(char flbChar)
Definition G4Ions.cc:107
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)

◆ GetEvaporation()

G4VEvaporation * G4ExcitationHandler::GetEvaporation ( )

Definition at line 264 of file G4ExcitationHandler.cc.

265{
266 if (nullptr != theEvaporation) { SetParameters(); }
267 return theEvaporation;
268}

◆ GetFermiModel()

G4VFermiBreakUp * G4ExcitationHandler::GetFermiModel ( )

Definition at line 276 of file G4ExcitationHandler.cc.

277{
278 if (nullptr != theFermiModel) { SetParameters(); }
279 return theFermiModel;
280}

◆ GetMultiFragmentation()

G4VMultiFragmentation * G4ExcitationHandler::GetMultiFragmentation ( )

Definition at line 270 of file G4ExcitationHandler.cc.

271{
272 if (nullptr != theMultiFragmentation) { SetParameters(); }
273 return theMultiFragmentation;
274}

◆ GetPhotonEvaporation()

G4VEvaporationChannel * G4ExcitationHandler::GetPhotonEvaporation ( )

Definition at line 282 of file G4ExcitationHandler.cc.

283{
284 if(nullptr != thePhotonEvaporation) { SetParameters(); }
285 return thePhotonEvaporation;
286}

◆ Initialise()

void G4ExcitationHandler::Initialise ( )

Definition at line 165 of file G4ExcitationHandler.cc.

166{
167 if(isInitialised) { return; }
168 if(fVerbose > 1) {
169 G4cout << "G4ExcitationHandler::Initialise() started " << this << G4endl;
170 }
171 G4DeexPrecoParameters* param =
173 isInitialised = true;
174 SetParameters();
175 if(isActive) {
176 theFermiModel->Initialise();
177 theEvaporation->InitialiseChannels();
178 }
179 // dump level is controlled by parameter class
180 param->Dump();
181}
G4DeexPrecoParameters * GetParameters()
static G4NuclearLevelData * GetInstance()

Referenced by BreakItUp(), G4AblaInterface::InitialiseModel(), and G4PreCompoundModel::InitialiseModel().

◆ ModelDescription()

void G4ExcitationHandler::ModelDescription ( std::ostream & outFile) const

Definition at line 665 of file G4ExcitationHandler.cc.

666{
667 outFile << "G4ExcitationHandler description\n"
668 << "This class samples de-excitation of excited nucleus using\n"
669 << "Fermi Break-up model for light fragments (Z < 9, A < 17), "
670 << "evaporation, fission, and photo-evaporation models. Evaporated\n"
671 << "particle may be proton, neutron, and other light fragment \n"
672 << "(Z < 13, A < 29). During photon evaporation produced gamma \n"
673 << "or electrons due to internal conversion \n";
674}

◆ operator!=()

G4bool G4ExcitationHandler::operator!= ( const G4ExcitationHandler & right) const
delete

◆ operator=()

const G4ExcitationHandler & G4ExcitationHandler::operator= ( const G4ExcitationHandler & right)
delete

◆ operator==()

G4bool G4ExcitationHandler::operator== ( const G4ExcitationHandler & right) const
delete

◆ SetDeexChannelsType()

void G4ExcitationHandler::SetDeexChannelsType ( G4DeexChannelType val)

Definition at line 232 of file G4ExcitationHandler.cc.

233{
234 G4Evaporation* evap = static_cast<G4Evaporation*>(theEvaporation);
235 if(fVerbose > 1) {
236 G4cout << "G4ExcitationHandler::SetDeexChannelsType " << val
237 << " for " << this << G4endl;
238 }
239 if(val == fDummy) {
240 isActive = false;
241 return;
242 }
243 if (nullptr == evap) { return; }
244 if (val == fEvaporation) {
245 evap->SetDefaultChannel();
246 } else if (val == fCombined) {
247 evap->SetCombinedChannel();
248 } else if (val == fGEM) {
249 evap->SetGEMChannel();
250 } else if (val == fGEMVI) {
251 evap->SetGEMVIChannel();
252 }
253 evap->InitialiseChannels();
254 if (fVerbose > 1) {
256 G4cout << "Number of de-excitation channels is changed to: "
257 << theEvaporation->GetNumberOfChannels();
258 G4cout << " " << this;
259 }
260 G4cout << G4endl;
261 }
262}
void SetDefaultChannel()
void SetCombinedChannel()
void InitialiseChannels() override
G4bool IsMasterThread()

◆ SetEvaporation()

void G4ExcitationHandler::SetEvaporation ( G4VEvaporation * ptr,
G4bool isLocal = false )

Definition at line 183 of file G4ExcitationHandler.cc.

184{
185 if(nullptr != ptr && ptr != theEvaporation) {
186 theEvaporation = ptr;
187 theEvaporation->SetPhotonEvaporation(thePhotonEvaporation);
188 theEvaporation->SetFermiBreakUp(theFermiModel);
189 isEvapLocal = flag;
190 if(fVerbose > 1) {
191 G4cout << "G4ExcitationHandler::SetEvaporation() " << ptr << " done for " << this << G4endl;
192 }
193 }
194}
virtual void SetPhotonEvaporation(G4VEvaporationChannel *ptr)

Referenced by G4ExcitationHandler().

◆ SetFermiModel()

void G4ExcitationHandler::SetFermiModel ( G4VFermiBreakUp * ptr)

Definition at line 205 of file G4ExcitationHandler.cc.

206{
207 if(nullptr != ptr && ptr != theFermiModel) {
208 delete theFermiModel;
209 theFermiModel = ptr;
210 if(nullptr != theEvaporation) {
211 theEvaporation->SetFermiBreakUp(theFermiModel);
212 }
213 }
214}

◆ SetMaxAandZForFermiBreakUp()

void G4ExcitationHandler::SetMaxAandZForFermiBreakUp ( G4int anA,
G4int aZ )
inline

Definition at line 172 of file G4ExcitationHandler.hh.

173{
176}
void SetMaxZForFermiBreakUp(G4int aZ)
void SetMaxAForFermiBreakUp(G4int anA)

◆ SetMaxAForFermiBreakUp()

void G4ExcitationHandler::SetMaxAForFermiBreakUp ( G4int anA)
inline

Definition at line 167 of file G4ExcitationHandler.hh.

168{
169 maxAForFermiBreakUp = anA;
170}

Referenced by SetMaxAandZForFermiBreakUp().

◆ SetMaxZForFermiBreakUp()

void G4ExcitationHandler::SetMaxZForFermiBreakUp ( G4int aZ)
inline

Definition at line 162 of file G4ExcitationHandler.hh.

163{
164 maxZForFermiBreakUp = aZ;
165}

Referenced by SetMaxAandZForFermiBreakUp().

◆ SetMinEForMultiFrag()

void G4ExcitationHandler::SetMinEForMultiFrag ( G4double anE)
inline

Definition at line 178 of file G4ExcitationHandler.hh.

179{
180 minEForMultiFrag = anE;
181}

Referenced by G4EMDissociation::G4EMDissociation().

◆ SetMultiFragmentation()

void G4ExcitationHandler::SetMultiFragmentation ( G4VMultiFragmentation * ptr)

Definition at line 197 of file G4ExcitationHandler.cc.

198{
199 if(nullptr != ptr && ptr != theMultiFragmentation) {
200 delete theMultiFragmentation;
201 theMultiFragmentation = ptr;
202 }
203}

◆ SetOPTxs()

void G4ExcitationHandler::SetOPTxs ( G4int opt)
inline

◆ SetPhotonEvaporation()

void G4ExcitationHandler::SetPhotonEvaporation ( G4VEvaporationChannel * ptr)

Definition at line 217 of file G4ExcitationHandler.cc.

218{
219 if(nullptr != ptr && ptr != thePhotonEvaporation) {
220 delete thePhotonEvaporation;
221 thePhotonEvaporation = ptr;
222 if(nullptr != theEvaporation) {
223 theEvaporation->SetPhotonEvaporation(ptr);
224 }
225 if(fVerbose > 1) {
226 G4cout << "G4ExcitationHandler::SetPhotonEvaporation() " << ptr
227 << " for handler " << this << G4endl;
228 }
229 }
230}

◆ UseSICB()

void G4ExcitationHandler::UseSICB ( )
inline

The documentation for this class was generated from the following files: