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

#include <G4EvaporationChannel.hh>

+ Inheritance diagram for G4EvaporationChannel:

Public Member Functions

 G4EvaporationChannel (G4int A, G4int Z, G4EvaporationProbability *)
 
 ~G4EvaporationChannel () override
 
void Initialise () override
 
G4double GetEmissionProbability (G4Fragment *fragment) override
 
G4FragmentEmittedFragment (G4Fragment *theNucleus) override
 
G4double ComputeInverseXSection (G4Fragment *, G4double kinEnergy) override
 
G4double ComputeProbability (G4Fragment *, G4double kinEnergy) override
 
G4int GetZ () const
 
G4int GetA () const
 
G4EvaporationProbabilityGetEvaporationProbability ()
 
 G4EvaporationChannel (const G4EvaporationChannel &right)=delete
 
const G4EvaporationChanneloperator= (const G4EvaporationChannel &right)=delete
 
G4bool operator== (const G4EvaporationChannel &right) const =delete
 
G4bool operator!= (const G4EvaporationChannel &right) const =delete
 
- Public Member Functions inherited from G4VEvaporationChannel
 G4VEvaporationChannel (const G4String &aName="")
 
virtual ~G4VEvaporationChannel ()=default
 
virtual G4double GetLifeTime (G4Fragment *theNucleus)
 
virtual G4bool BreakUpChain (G4FragmentVector *theResult, G4Fragment *theNucleus)
 
G4FragmentVectorBreakUpFragment (G4Fragment *theNucleus)
 
virtual void Dump () const
 
virtual void SetICM (G4bool)
 
virtual void RDMForced (G4bool)
 
void SetOPTxs (G4int)
 
void UseSICB (G4bool)
 
 G4VEvaporationChannel (const G4VEvaporationChannel &right)=delete
 
const G4VEvaporationChanneloperator= (const G4VEvaporationChannel &right)=delete
 
G4bool operator== (const G4VEvaporationChannel &right) const =delete
 
G4bool operator!= (const G4VEvaporationChannel &right) const =delete
 

Additional Inherited Members

- Protected Attributes inherited from G4VEvaporationChannel
G4int OPTxs {3}
 
G4bool useSICB {true}
 

Detailed Description

Definition at line 45 of file G4EvaporationChannel.hh.

Constructor & Destructor Documentation

◆ G4EvaporationChannel() [1/2]

G4EvaporationChannel::G4EvaporationChannel ( G4int A,
G4int Z,
G4EvaporationProbability * aprob )
explicit

Definition at line 53 of file G4EvaporationChannel.cc.

54 :
56 theProbability(aprob),
57 theCoulombBarrier(new G4CoulombBarrier(anA, aZ)),
58 theA(anA), theZ(aZ)
59{
60 secID = G4PhysicsModelCatalog::GetModelID("model_G4EvaporationChannel");
61 evapMass = G4NucleiProperties::GetNuclearMass(theA, theZ);
62 evapMass2 = evapMass*evapMass;
63 theLevelData = G4NuclearLevelData::GetInstance();
64}
static G4NuclearLevelData * GetInstance()
static G4double GetNuclearMass(const G4double A, const G4double Z)
static G4int GetModelID(const G4int modelIndex)
G4VEvaporationChannel(const G4String &aName="")

Referenced by G4AlphaEvaporationChannel::G4AlphaEvaporationChannel(), G4DeuteronEvaporationChannel::G4DeuteronEvaporationChannel(), G4EvaporationChannel(), G4He3EvaporationChannel::G4He3EvaporationChannel(), G4NeutronEvaporationChannel::G4NeutronEvaporationChannel(), G4ProtonEvaporationChannel::G4ProtonEvaporationChannel(), G4TritonEvaporationChannel::G4TritonEvaporationChannel(), operator!=(), operator=(), and operator==().

◆ ~G4EvaporationChannel()

G4EvaporationChannel::~G4EvaporationChannel ( )
override

Definition at line 66 of file G4EvaporationChannel.cc.

67{
68 delete theCoulombBarrier;
69}

◆ G4EvaporationChannel() [2/2]

G4EvaporationChannel::G4EvaporationChannel ( const G4EvaporationChannel & right)
delete

Member Function Documentation

◆ ComputeInverseXSection()

G4double G4EvaporationChannel::ComputeInverseXSection ( G4Fragment * frag,
G4double kinEnergy )
overridevirtual

Reimplemented from G4VEvaporationChannel.

Definition at line 154 of file G4EvaporationChannel.cc.

156{
157 G4double p = ComputeProbability(frag, kinEnergy);
158 return (p > 0.0) ? theProbability->RecentXS() : 0.0;
159}
double G4double
Definition G4Types.hh:83
G4double ComputeProbability(G4Fragment *, G4double kinEnergy) override

◆ ComputeProbability()

G4double G4EvaporationChannel::ComputeProbability ( G4Fragment * frag,
G4double kinEnergy )
overridevirtual

Reimplemented from G4VEvaporationChannel.

Definition at line 161 of file G4EvaporationChannel.cc.

163{
164 G4double prob = GetEmissionProbability(frag);
165 if (prob <= 0.0) { return 0.0; }
166
167 bCoulomb = (theZ > 0) ? theCoulombBarrier->GetCoulombBarrier(resA, resZ, 0.0) : 0.0;
168 G4double p = theProbability->ComputeProbability(kinEnergy, bCoulomb);
169 return p;
170}
G4double GetEmissionProbability(G4Fragment *fragment) override

Referenced by ComputeInverseXSection().

◆ EmittedFragment()

G4Fragment * G4EvaporationChannel::EmittedFragment ( G4Fragment * theNucleus)
overridevirtual

Reimplemented from G4VEvaporationChannel.

Definition at line 132 of file G4EvaporationChannel.cc.

133{
134 G4double ekin = ekinmax;
135 // assumed, that TotalProbability(...) was already called
136 // if value iz zero no possiblity to sample final state
137 if(resA > 4 && theProbability->GetProbability() > 0.0) {
138 ekin = theProbability->SampleEnergy();
139 }
140 ekin = std::max(ekin, 0.0);
141 G4LorentzVector lv0 = theNucleus->GetMomentum();
142 G4LorentzVector lv(std::sqrt(ekin*(ekin + 2.0*evapMass))*G4RandomDirection(),
143 ekin + evapMass);
144 lv.boost(lv0.boostVector());
145
146 G4Fragment* evFragment = new G4Fragment(theA, theZ, lv);
147 evFragment->SetCreatorModelID(secID);
148 lv0 -= lv;
149 theNucleus->SetZAandMomentum(lv0, resZ, resA);
150 theNucleus->SetCreatorModelID(secID);
151 return evFragment;
152}
CLHEP::HepLorentzVector G4LorentzVector
G4ThreeVector G4RandomDirection()
Hep3Vector boostVector() const
const G4LorentzVector & GetMomentum() const
void SetCreatorModelID(G4int value)
void SetZAandMomentum(const G4LorentzVector &, G4int Z, G4int A, G4int nLambdas=0)

◆ GetA()

G4int G4EvaporationChannel::GetA ( ) const
inline

Definition at line 66 of file G4EvaporationChannel.hh.

66{ return theA; };

◆ GetEmissionProbability()

G4double G4EvaporationChannel::GetEmissionProbability ( G4Fragment * fragment)
overridevirtual

Implements G4VEvaporationChannel.

Definition at line 77 of file G4EvaporationChannel.cc.

78{
79 theProbability->ResetProbability();
80 G4int fragA = fragment->GetA_asInt();
81 G4int fragZ = fragment->GetZ_asInt();
82 resA = fragA - theA;
83 resZ = fragZ - theZ;
84
85 // Only channels which are physically allowed are taken into account
86 if(resA < theA || resA < resZ || resZ < 0 || (resA == theA && resZ < theZ)
87 || ((resA > 1) && (resA == resZ || resZ == 0)))
88 { return 0.0; }
89
90 G4double exEnergy = fragment->GetExcitationEnergy();
91 G4double fragMass = fragment->GetGroundStateMass();
92 mass = fragMass + exEnergy;
93 resMass = G4NucleiProperties::GetNuclearMass(resA, resZ);
94 if (mass <= evapMass + resMass) { return 0.0; }
95
96 ekinmax = 0.5*((mass-resMass)*(mass+resMass) + evapMass2)/mass - evapMass;
97
98 // for OPTxs=1 elim=0 for all fragments - x-section include the CoulombBarrier
99 G4double elim = 0.0;
100 if(theZ > 0) {
101 bCoulomb = theCoulombBarrier->GetCoulombBarrier(resA, resZ, 0.0);
102
103 // for OPTxs >0 penetration under the barrier is taken into account
104 elim = (0 < OPTxs) ? bCoulomb*0.5 : bCoulomb;
105 }
106 /*
107 G4cout << "G4EvaporationChannel::Initialize Z=" << theZ <<" A=" << theA
108 << " FragZ=" << fragZ << " FragA=" << fragA << G4endl;
109 G4cout << " Eex=" << exEnergy << " CB=" << bCoulomb
110 << " Elim=" << elim << " Efree=" << mass - resMass - evapMass
111 << G4endl;
112 */
113 // Coulomb barrier compound at rest
114 G4double resM = mass - evapMass - elim;
115 if (resM < resMass) { return 0.0; }
116 G4double ekinmin = 0.5*((mass-resM)*(mass+resM) + evapMass2)/mass - evapMass;
117
118 /*
119 G4cout << "Emin= " <<ekinmin<<" Emax= "<<ekinmax
120 << " mass= " << mass << " resM= " << resMass
121 << " evapM= " << evapMass << G4endl;
122 */
123 if(ekinmax <= ekinmin) { return 0.0; }
124
125 theProbability->SetDecayKinematics(resZ, resA, resMass, mass);
126 G4double prob = theProbability->TotalProbability(*fragment, ekinmin,
127 ekinmax, bCoulomb,
128 exEnergy);
129 return prob;
130}
int G4int
Definition G4Types.hh:85
G4double GetGroundStateMass() const
G4double GetExcitationEnergy() const
G4int GetZ_asInt() const
G4int GetA_asInt() const

Referenced by ComputeProbability().

◆ GetEvaporationProbability()

G4EvaporationProbability * G4EvaporationChannel::GetEvaporationProbability ( )
inline

Definition at line 68 of file G4EvaporationChannel.hh.

69 { return theProbability; }

◆ GetZ()

G4int G4EvaporationChannel::GetZ ( ) const
inline

Definition at line 64 of file G4EvaporationChannel.hh.

64{ return theZ; };

◆ Initialise()

void G4EvaporationChannel::Initialise ( )
overridevirtual

Reimplemented from G4VEvaporationChannel.

Definition at line 71 of file G4EvaporationChannel.cc.

72{
73 theProbability->Initialise();
75}

◆ operator!=()

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

◆ operator=()

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

◆ operator==()

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

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