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

#include <G4Evaporation.hh>

+ Inheritance diagram for G4Evaporation:

Public Member Functions

 G4Evaporation (G4VEvaporationChannel *photoEvaporation=nullptr)
 
 ~G4Evaporation () override
 
void InitialiseChannels () override
 
void BreakFragment (G4FragmentVector *, G4Fragment *theNucleus) override
 
void SetDefaultChannel ()
 
void SetGEMChannel ()
 
void SetGEMVIChannel ()
 
void SetCombinedChannel ()
 
 G4Evaporation (const G4Evaporation &right)=delete
 
const G4Evaporationoperator= (const G4Evaporation &right)=delete
 
G4bool operator== (const G4Evaporation &right) const =delete
 
G4bool operator!= (const G4Evaporation &right) const =delete
 
- Public Member Functions inherited from G4VEvaporation
 G4VEvaporation ()
 
virtual ~G4VEvaporation ()
 
virtual void SetPhotonEvaporation (G4VEvaporationChannel *ptr)
 
void SetFermiBreakUp (G4VFermiBreakUp *ptr)
 
G4VFermiBreakUpGetFermiBreakUp () const
 
G4VEvaporationChannelGetPhotonEvaporation () const
 
G4VEvaporationChannelGetFissionChannel () const
 
G4VEvaporationChannelGetChannel (std::size_t idx) const
 
void SetOPTxs (G4int opt)
 
void UseSICB (G4bool use)
 
std::size_t GetNumberOfChannels () const
 
 G4VEvaporation (const G4VEvaporation &right)=delete
 
const G4VEvaporationoperator= (const G4VEvaporation &right)=delete
 
G4bool operator== (const G4VEvaporation &right) const =delete
 
G4bool operator!= (const G4VEvaporation &right) const =delete
 

Additional Inherited Members

- Protected Member Functions inherited from G4VEvaporation
void CleanChannels ()
 
- Protected Attributes inherited from G4VEvaporation
G4VEvaporationChannelthePhotonEvaporation {nullptr}
 
G4VFermiBreakUptheFBU {nullptr}
 
G4int OPTxs {3}
 
G4bool useSICB {true}
 
std::vector< G4VEvaporationChannel * > * theChannels {nullptr}
 
G4VEvaporationFactorytheChannelFactory {nullptr}
 

Detailed Description

Definition at line 61 of file G4Evaporation.hh.

Constructor & Destructor Documentation

◆ G4Evaporation() [1/2]

G4Evaporation::G4Evaporation ( G4VEvaporationChannel * photoEvaporation = nullptr)
explicit

Definition at line 67 of file G4Evaporation.cc.

68 : fVerbose(0), minExcitation(0.1*CLHEP::keV)
69{
70 if (nullptr != photoEvaporation) {
71 SetPhotonEvaporation(photoEvaporation);
72 } else {
73 SetPhotonEvaporation(new G4PhotonEvaporation());
74 }
75
76 channelType = fCombined;
77
81 unstableBreakUp = new G4UnstableFragmentBreakUp();
82}
static G4NistManager * Instance()
static G4NuclearLevelData * GetInstance()
G4IonTable * GetIonTable() const
static G4ParticleTable * GetParticleTable()
virtual void SetPhotonEvaporation(G4VEvaporationChannel *ptr)

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

◆ ~G4Evaporation()

G4Evaporation::~G4Evaporation ( )
override

Definition at line 84 of file G4Evaporation.cc.

85{
86 delete unstableBreakUp;
87}

◆ G4Evaporation() [2/2]

G4Evaporation::G4Evaporation ( const G4Evaporation & right)
delete

Member Function Documentation

◆ BreakFragment()

void G4Evaporation::BreakFragment ( G4FragmentVector * theResult,
G4Fragment * theNucleus )
overridevirtual

Reimplemented from G4VEvaporation.

Definition at line 173 of file G4Evaporation.cc.

175{
176 if (!isInitialised) { InitialiseChannels(); }
177
178 G4double totprob, prob, oldprob = 0.0;
179 const G4double limFact = 1.e-6;
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 // Starts loop over evaporated particles, loop is limited by number
189 // of nucleons
190 for(G4int ia=0; ia<Amax; ++ia) {
191
192 // g,n,p and light fragments - evaporation is finished
193 G4int Z = theResidualNucleus->GetZ_asInt();
194 G4int A = theResidualNucleus->GetA_asInt();
195 if(A <= 1) { break; }
196 G4double Eex = theResidualNucleus->GetExcitationEnergy();
197
198 // stop deexcitation loop if residual can be deexcited by FBU
199 if(theFBU->IsApplicable(Z, A, Eex)) { break; }
200
201 // check if it is stable, then finish evaporation
202 G4double abun = nist->GetIsotopeAbundance(Z, A);
203 // stop deecitation loop in the case of a cold stable fragment
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 // loop over evaporation channels
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 // if two recent probabilities are near zero stop computations
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 // photon evaporation in the case of no other channels available
234 // do evaporation chain and return back ground state fragment
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 // release residual stable fragment
242 if(abun > 0.0) {
243 theResidualNucleus->SetLongLived(true);
244 break;
245 }
246 // release residual fragment known to FBU
247 Eex = theResidualNucleus->GetExcitationEnergy();
248 if(theFBU->IsApplicable(Z, A, Eex)) { break; }
249
250 // release residual fragment with non-zero life time
251 if(theResidualNucleus->IsLongLived()) { break; }
252 totprob = 0.0;
253 }
254
255 if(0.0 == totprob && A < 30) {
256 // if residual fragment is exotic, then it forced to decay
257 // if success, then decay product is added to results
258 if(fVerbose > 1) {
259 G4cout << "$$$ Decay exotic fragment" << G4endl;
260 }
261 if(unstableBreakUp->BreakUpChain(theResult, theResidualNucleus)) {
262 continue;
263 }
264 // release if it is not possible to decay
265 break;
266 }
267
268 // select channel
269 totprob *= rndm->flat();
270
271 // loop over evaporation channels
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 // normaly a fragment should be created
281 if(nullptr != frag) { theResult->push_back(frag); }
282 else { break; }
283 }
284}
double G4double
Definition G4Types.hh:83
int G4int
Definition G4Types.hh:85
const G4double A[17]
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
virtual double flat()=0
void InitialiseChannels() override
G4VFermiBreakUp * theFBU

◆ InitialiseChannels()

void G4Evaporation::InitialiseChannels ( )
overridevirtual

Reimplemented from G4VEvaporation.

Definition at line 89 of file G4Evaporation.cc.

90{
91 if (isInitialised) { return; }
92
93 G4DeexPrecoParameters* param = fLevelData->GetParameters();
94 minExcitation = param->GetMinExcitation();
95 fVerbose = param->GetVerbose();
96 unstableBreakUp->SetVerbose(fVerbose);
97
98 if (nullptr == theChannelFactory) {
100 if(type == fCombined) { SetCombinedChannel(); }
101 else if(type == fGEM) { SetGEMChannel(); }
102 else if(type == fEvaporation) { SetDefaultChannel(); }
103 else if(type == fGEMVI) { SetGEMVIChannel(); }
104 }
105 isInitialised = true;
106}
G4DeexChannelType GetDeexChannelsType() const
void SetDefaultChannel()
void SetCombinedChannel()
G4VEvaporationFactory * theChannelFactory

Referenced by BreakFragment(), and G4ExcitationHandler::SetDeexChannelsType().

◆ operator!=()

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

◆ operator=()

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

◆ operator==()

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

◆ SetCombinedChannel()

void G4Evaporation::SetCombinedChannel ( )

Definition at line 161 of file G4Evaporation.cc.

162{
163 if (fCombined != channelType || nullptr == theChannelFactory) {
164 channelType = fCombined;
166 delete theChannelFactory;
168 new G4EvaporationDefaultGEMFactory(thePhotonEvaporation);
169 InitialiseChannelFactory();
170 }
171}
G4VEvaporationChannel * thePhotonEvaporation

Referenced by InitialiseChannels(), and G4ExcitationHandler::SetDeexChannelsType().

◆ SetDefaultChannel()

void G4Evaporation::SetDefaultChannel ( )

Definition at line 128 of file G4Evaporation.cc.

129{
130 if (fEvaporation != channelType || nullptr == theChannelFactory) {
131 channelType = fEvaporation;
133 delete theChannelFactory;
134 theChannelFactory = new G4EvaporationFactory(thePhotonEvaporation);
135 InitialiseChannelFactory();
136 }
137}

Referenced by InitialiseChannels(), and G4ExcitationHandler::SetDeexChannelsType().

◆ SetGEMChannel()

void G4Evaporation::SetGEMChannel ( )

Definition at line 139 of file G4Evaporation.cc.

140{
141 if (fGEM != channelType || nullptr == theChannelFactory) {
142 channelType = fGEM;
144 delete theChannelFactory;
145 theChannelFactory = new G4EvaporationGEMFactory(thePhotonEvaporation);
146 InitialiseChannelFactory();
147 }
148}

Referenced by InitialiseChannels(), and G4ExcitationHandler::SetDeexChannelsType().

◆ SetGEMVIChannel()

void G4Evaporation::SetGEMVIChannel ( )

Definition at line 150 of file G4Evaporation.cc.

151{
152 if (fGEMVI != channelType || nullptr == theChannelFactory) {
153 channelType = fGEMVI;
155 delete theChannelFactory;
156 theChannelFactory = new G4EvaporationGEMFactoryVI(thePhotonEvaporation);
157 InitialiseChannelFactory();
158 }
159}

Referenced by InitialiseChannels(), and G4ExcitationHandler::SetDeexChannelsType().


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