Geant4 10.7.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 ()
 

Detailed Description

Definition at line 62 of file G4ExcitationHandler.hh.

Constructor & Destructor Documentation

◆ G4ExcitationHandler()

G4ExcitationHandler::G4ExcitationHandler ( )
explicit

Definition at line 85 of file G4ExcitationHandler.cc.

86 : icID(0),maxZForFermiBreakUp(9),maxAForFermiBreakUp(17),
87 fVerbose(1),fWarnings(0),minEForMultiFrag(1.*CLHEP::TeV),
88 minExcitation(1.*CLHEP::eV),maxExcitation(100.*CLHEP::MeV),
89 isInitialised(false),isEvapLocal(true),isActive(true)
90{
93
94 theMultiFragmentation = nullptr;
95 theFermiModel = nullptr;
96 theEvaporation = nullptr;
97 thePhotonEvaporation = nullptr;
98 theResults.reserve(60);
99 results.reserve(30);
100 theEvapList.reserve(30);
101
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
111 if(fVerbose > 1) { G4cout << "### New handler " << this << G4endl; }
112}
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
static G4Alpha * AlphaDefinition()
Definition: G4Alpha.cc:83
static G4Deuteron * DeuteronDefinition()
Definition: G4Deuteron.cc:88
static G4Electron * Electron()
Definition: G4Electron.cc:93
static G4He3 * He3Definition()
Definition: G4He3.cc:88
static G4Neutron * NeutronDefinition()
Definition: G4Neutron.cc:98
static G4NistManager * Instance()
G4IonTable * GetIonTable() const
static G4ParticleTable * GetParticleTable()
static G4Pow * GetInstance()
Definition: G4Pow.cc:41
static G4Proton * ProtonDefinition()
Definition: G4Proton.cc:87
static G4Triton * TritonDefinition()
Definition: G4Triton.cc:89

◆ ~G4ExcitationHandler()

G4ExcitationHandler::~G4ExcitationHandler ( )

Definition at line 114 of file G4ExcitationHandler.cc.

115{
116 delete theMultiFragmentation;
117 delete theFermiModel;
118 if(isEvapLocal) { delete theEvaporation; }
119}

Member Function Documentation

◆ BreakItUp()

G4ReactionProductVector * G4ExcitationHandler::BreakItUp ( const G4Fragment theInitialState)

Definition at line 278 of file G4ExcitationHandler.cc.

279{
280 // Variables existing until end of method
281 G4Fragment * theInitialStatePtr = new G4Fragment(theInitialState);
282 if(fVerbose > 1) {
283 G4cout << "@@@@@@@@@@ Start G4Excitation Handler @@@@@@@@@@@@@ " << G4endl;
284 G4cout << theInitialState << G4endl;
285 }
286 if(!isInitialised) { Initialise(); }
287
288 // pointer to fragment vector which receives temporal results
289 G4FragmentVector * theTempResult = nullptr;
290
291 theResults.clear();
292 theEvapList.clear();
293
294 // Variables to describe the excited configuration
295 G4double exEnergy = theInitialState.GetExcitationEnergy();
296 G4int A = theInitialState.GetA_asInt();
297 G4int Z = theInitialState.GetZ_asInt();
298
299 // too much excitation
300 if(exEnergy > A*maxExcitation && A > 0) {
301 ++fWarnings;
302 if(fWarnings < 0) {
304 ed << "High excitation Fragment Z= " << Z << " A= " << A
305 << " Eex/A(MeV)= " << exEnergy/A;
306 G4Exception("G4ExcitationHandler::BreakItUp()","had0034",JustWarning,ed,"");
307 }
308 }
309
310 // In case A <= 1 the fragment will not perform any nucleon emission
311 if (A <= 1 || !isActive) {
312 theResults.push_back( theInitialStatePtr );
313
314 // check if a fragment is stable
315 } else if(exEnergy < minExcitation && nist->GetIsotopeAbundance(Z, A) > 0.0) {
316 theResults.push_back( theInitialStatePtr );
317
318 // JMQ 150909: first step in de-excitation is treated separately
319 // Fragments after the first step are stored in theEvapList
320 } else {
321 if((A<maxAForFermiBreakUp && Z<maxZForFermiBreakUp)
322 || exEnergy <= minEForMultiFrag*A) {
323 theEvapList.push_back(theInitialStatePtr);
324
325 // Statistical Multifragmentation will take place only once
326 } else {
327 theTempResult = theMultiFragmentation->BreakItUp(theInitialState);
328 if(!theTempResult) {
329 theEvapList.push_back(theInitialStatePtr);
330 } else {
331 size_t nsec = theTempResult->size();
332
333 // no fragmentation
334 if(0 == nsec) {
335 theEvapList.push_back(theInitialStatePtr);
336
337 // secondary are produced - sort out secondary fragments
338 } else {
339 G4bool deletePrimary = true;
340 for (auto ptr : *theTempResult) {
341 if(ptr == theInitialStatePtr) { deletePrimary = false; }
342 SortSecondaryFragment(ptr);
343 }
344 if( deletePrimary ) { delete theInitialStatePtr; }
345 }
346 delete theTempResult; // end multifragmentation
347 }
348 }
349 }
350 if(fVerbose > 2) {
351 G4cout << "## After first step of handler " << theEvapList.size()
352 << " for evap; "
353 << theResults.size() << " results. " << G4endl;
354 }
355 // -----------------------------------
356 // FermiBreakUp and De-excitation loop
357 // -----------------------------------
358
359 static const G4int countmax = 1000;
360 size_t kk;
361 for (kk=0; kk<theEvapList.size(); ++kk) {
362 G4Fragment* frag = theEvapList[kk];
363 if(fVerbose > 3) {
364 G4cout << "Next evaporate: " << G4endl;
365 G4cout << *frag << G4endl;
366 }
367 if(kk >= countmax) {
369 ed << "Infinite loop in the de-excitation module: " << kk
370 << " iterations \n"
371 << " Initial fragment: \n" << theInitialState
372 << "\n Current fragment: \n" << *frag;
373 G4Exception("G4ExcitationHandler::BreakItUp","had0333",FatalException,
374 ed,"Stop execution");
375
376 }
377 A = frag->GetA_asInt();
378 Z = frag->GetZ_asInt();
379 results.clear();
380 if(fVerbose > 2) {
381 G4cout << "G4ExcitationHandler# " << kk << " Z= " << Z << " A= " << A
382 << " Eex(MeV)= " << frag->GetExcitationEnergy() << G4endl;
383 }
384 // Fermi Break-Up
385 if(theFermiModel->IsApplicable(Z, A, frag->GetExcitationEnergy())) {
386 theFermiModel->BreakFragment(&results, frag);
387 size_t nsec = results.size();
388 if(fVerbose > 2) { G4cout << "FermiBreakUp Nsec= " << nsec << G4endl; }
389
390 // FBU takes care to delete input fragment or add it to the results
391 // The secondary may be excited - photo-evaporation should be applied
392 if(1 < nsec) {
393 for(auto & res : results) {
394 SortSecondaryFragment(res);
395 }
396 continue;
397 }
398 // evaporation will be applied
399 }
400 // apply Evaporation, residual nucleus is always added to the results
401 // photon evaporation is possible
402 theEvaporation->BreakFragment(&results, frag);
403 if(fVerbose > 3) {
404 G4cout << "Evaporation Nsec= " << results.size() << G4endl;
405 }
406 if(0 == results.size()) {
407 theResults.push_back(frag);
408 } else {
409 SortSecondaryFragment(frag);
410 }
411
412 // Sort out secondary fragments
413 for (auto & res : results) {
414 if(fVerbose > 4) {
415 G4cout << "Evaporated product #" << *res << G4endl;
416 }
417 SortSecondaryFragment(res);
418 } // end of loop on secondary
419 } // end of the loop over theEvapList
420 if(fVerbose > 2) {
421 G4cout << "## After 2nd step of handler " << theEvapList.size()
422 << " was evap; "
423 << theResults.size() << " results. " << G4endl;
424 }
425 G4ReactionProductVector * theReactionProductVector =
427
428 // MAC (24/07/08)
429 // To optimise the storing speed, we reserve space
430 // in memory for the vector
431 theReactionProductVector->reserve( theResults.size() );
432
433 if(fVerbose > 2) {
434 G4cout << "### ExcitationHandler provides " << theResults.size()
435 << " evaporated products:" << G4endl;
436 }
437 for (auto & frag : theResults) {
438
439 // in the case of dummy de-excitation, excitation energy is transfered
440 // into kinetic energy of output ion
441 if(!isActive) {
442 G4double mass = frag->GetGroundStateMass();
443 G4double ptot = (frag->GetMomentum()).vect().mag();
444 G4double etot = (frag->GetMomentum()).e();
445 G4double fac = (etot <= mass || 0.0 == ptot) ? 0.0
446 : std::sqrt((etot - mass)*(etot + mass))/ptot;
447 G4LorentzVector lv((frag->GetMomentum()).px()*fac,
448 (frag->GetMomentum()).py()*fac,
449 (frag->GetMomentum()).pz()*fac, etot);
450 frag->SetMomentum(lv);
451 }
452 if(fVerbose > 3) {
453 G4cout << *frag;
454 if(frag->NuclearPolarization()) {
455 G4cout << " " << frag->NuclearPolarization();
456 }
457 G4cout << G4endl;
458 }
459
460 G4int fragmentA = frag->GetA_asInt();
461 G4int fragmentZ = frag->GetZ_asInt();
462 G4double etot= frag->GetMomentum().e();
463 G4double eexc = 0.0;
464 const G4ParticleDefinition* theKindOfFragment = nullptr;
465 if (fragmentA == 0) { // photon or e-
466 theKindOfFragment = frag->GetParticleDefinition();
467 } else if (fragmentA == 1 && fragmentZ == 0) { // neutron
468 theKindOfFragment = theNeutron;
469 } else if (fragmentA == 1 && fragmentZ == 1) { // proton
470 theKindOfFragment = theProton;
471 } else if (fragmentA == 2 && fragmentZ == 1) { // deuteron
472 theKindOfFragment = theDeuteron;
473 } else if (fragmentA == 3 && fragmentZ == 1) { // triton
474 theKindOfFragment = theTriton;
475 } else if (fragmentA == 3 && fragmentZ == 2) { // helium3
476 theKindOfFragment = theHe3;
477 } else if (fragmentA == 4 && fragmentZ == 2) { // alpha
478 theKindOfFragment = theAlpha;
479 } else {
480
481 // fragment
482 eexc = frag->GetExcitationEnergy();
483 G4int idxf = frag->GetFloatingLevelNumber();
484 if(eexc < minExcitation) {
485 eexc = 0.0;
486 idxf = 0;
487 }
488
489 theKindOfFragment = theTableOfIons->GetIon(fragmentZ,fragmentA,eexc,
491 if(fVerbose > 3) {
492 G4cout << "### EXCH: Find ion Z= " << fragmentZ
493 << " A= " << fragmentA
494 << " Eexc(MeV)= " << eexc/MeV << " idx= " << idxf
495 << G4endl;
496 }
497 }
498 // fragment identified
499 if(theKindOfFragment) {
500 G4ReactionProduct * theNew = new G4ReactionProduct(theKindOfFragment);
501 theNew->SetMomentum(frag->GetMomentum().vect());
502 theNew->SetTotalEnergy(etot);
503 theNew->SetFormationTime(frag->GetCreationTime());
504 if(theKindOfFragment == theElectron) { theNew->SetCreatorModel(icID); }
505 theReactionProductVector->push_back(theNew);
506
507 // fragment not found out ground state is created
508 } else {
509 theKindOfFragment =
510 theTableOfIons->GetIon(fragmentZ,fragmentA,0.0,noFloat,0);
511 if(theKindOfFragment) {
512 G4ThreeVector mom(0.0,0.0,0.0);
513 G4double ionmass = theKindOfFragment->GetPDGMass();
514 if(etot <= ionmass) {
515 etot = ionmass;
516 } else {
517 G4double ptot = std::sqrt((etot - ionmass)*(etot + ionmass));
518 mom = (frag->GetMomentum().vect().unit())*ptot;
519 }
520 G4ReactionProduct * theNew = new G4ReactionProduct(theKindOfFragment);
521 theNew->SetMomentum(mom);
522 theNew->SetTotalEnergy(etot);
523 theNew->SetFormationTime(frag->GetCreationTime());
524 theReactionProductVector->push_back(theNew);
525 if(fVerbose > 3) {
526 G4cout << " ground state, energy corrected E(MeV)= "
527 << etot << G4endl;
528 }
529 }
530 }
531 delete frag;
532 }
533 if(fVerbose > 3) {
534 G4cout << "@@@@@@@@@@ End G4Excitation Handler "<< G4endl;
535 }
536 return theReactionProductVector;
537}
double A(double temperature)
@ JustWarning
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
Definition: G4Exception.cc:35
std::ostringstream G4ExceptionDescription
Definition: G4Exception.hh:40
std::vector< G4Fragment * > G4FragmentVector
Definition: G4Fragment.hh:63
#define noFloat
Definition: G4Ions.hh:112
std::vector< G4ReactionProduct * > G4ReactionProductVector
double G4double
Definition: G4Types.hh:83
bool G4bool
Definition: G4Types.hh:86
int G4int
Definition: G4Types.hh:85
G4double GetGroundStateMass() const
Definition: G4Fragment.hh:280
G4double GetExcitationEnergy() const
Definition: G4Fragment.hh:275
const G4LorentzVector & GetMomentum() const
Definition: G4Fragment.hh:299
G4int GetZ_asInt() const
Definition: G4Fragment.hh:263
void SetMomentum(const G4LorentzVector &value)
Definition: G4Fragment.hh:304
G4int GetA_asInt() const
Definition: G4Fragment.hh:258
G4ParticleDefinition * GetIon(G4int Z, G4int A, G4int lvl=0)
Definition: G4IonTable.cc:522
static G4Ions::G4FloatLevelBase FloatLevelBase(char flbChar)
Definition: G4Ions.cc:103
void SetMomentum(const G4double x, const G4double y, const G4double z)
void SetTotalEnergy(const G4double en)
void SetCreatorModel(const G4int mod)
void SetFormationTime(G4double aTime)
virtual void BreakFragment(G4FragmentVector *, G4Fragment *theNucleus)
virtual G4bool IsApplicable(G4int Z, G4int A, G4double mass) const =0
virtual void BreakFragment(G4FragmentVector *results, G4Fragment *theNucleus)=0
virtual G4FragmentVector * BreakItUp(const G4Fragment &theNucleus)=0

Referenced by G4WilsonAbrasionModel::ApplyYourself(), G4EMDissociation::ApplyYourself(), G4QMDReaction::ApplyYourself(), G4ParaFissionModel::ApplyYourself(), G4LowEIonFragmentation::ApplyYourself(), and G4PreCompoundDeexcitation::deExcite().

◆ GetEvaporation()

G4VEvaporation * G4ExcitationHandler::GetEvaporation ( )

Definition at line 253 of file G4ExcitationHandler.cc.

254{
255 if(!theEvaporation) { SetParameters(); }
256 return theEvaporation;
257}

Referenced by G4INCLXXInterface::G4INCLXXInterface().

◆ GetFermiModel()

G4VFermiBreakUp * G4ExcitationHandler::GetFermiModel ( )

Definition at line 265 of file G4ExcitationHandler.cc.

266{
267 if(!theFermiModel) { SetParameters(); }
268 return theFermiModel;
269}

◆ GetMultiFragmentation()

G4VMultiFragmentation * G4ExcitationHandler::GetMultiFragmentation ( )

Definition at line 259 of file G4ExcitationHandler.cc.

260{
261 if(!theMultiFragmentation) { SetParameters(); }
262 return theMultiFragmentation;
263}

◆ GetPhotonEvaporation()

G4VEvaporationChannel * G4ExcitationHandler::GetPhotonEvaporation ( )

Definition at line 271 of file G4ExcitationHandler.cc.

272{
273 if(!thePhotonEvaporation) { SetParameters(); }
274 return thePhotonEvaporation;
275}

◆ Initialise()

void G4ExcitationHandler::Initialise ( )

Definition at line 157 of file G4ExcitationHandler.cc.

158{
159 if(isInitialised) { return; }
160 if(fVerbose > 1) {
161 G4cout << "G4ExcitationHandler::Initialise() started " << this << G4endl;
162 }
163 G4DeexPrecoParameters* param =
165 isInitialised = true;
166 SetParameters();
167 if(isActive) {
168 theFermiModel->Initialise();
169 theEvaporation->InitialiseChannels();
170 }
171 // dump level is controlled by parameter class
172 param->Dump();
173}
G4DeexPrecoParameters * GetParameters()
static G4NuclearLevelData * GetInstance()
virtual void InitialiseChannels()
virtual void Initialise()=0

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

◆ ModelDescription()

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

Definition at line 539 of file G4ExcitationHandler.cc.

540{
541 outFile << "G4ExcitationHandler description\n"
542 << "This class samples de-excitation of excited nucleus using\n"
543 << "Fermi Break-up model for light fragments (Z < 9, A < 17), "
544 << "evaporation, fission, and photo-evaporation models. Evaporated\n"
545 << "particle may be proton, neutron, and other light fragment \n"
546 << "(Z < 13, A < 29). During photon evaporation produced gamma \n"
547 << "or electrons due to internal conversion \n";
548}

Referenced by G4BinaryCascade::ModelDescription(), and G4BinaryCascade::PropagateModelDescription().

◆ SetDeexChannelsType()

void G4ExcitationHandler::SetDeexChannelsType ( G4DeexChannelType  val)

Definition at line 221 of file G4ExcitationHandler.cc.

222{
223 G4Evaporation* evap = static_cast<G4Evaporation*>(theEvaporation);
224 if(fVerbose > 1) {
225 G4cout << "G4ExcitationHandler::SetDeexChannelsType " << val
226 << " for " << this << G4endl;
227 }
228 if(val == fDummy) {
229 isActive = false;
230 return;
231 }
232 if(!evap) { return; }
233 if(val == fEvaporation) {
234 evap->SetDefaultChannel();
235 } else if(val == fCombined) {
236 evap->SetCombinedChannel();
237 } else if(val == fGEM) {
238 evap->SetGEMChannel();
239 } else if(val == fGEMVI) {
240 evap->SetGEMVIChannel();
241 }
242 evap->InitialiseChannels();
243 if(fVerbose > 1) {
245 G4cout << "Number of de-excitation channels is changed to: "
246 << theEvaporation->GetNumberOfChannels();
247 G4cout << " " << this;
248 }
249 G4cout << G4endl;
250 }
251}
@ fEvaporation
virtual void InitialiseChannels() final
void SetGEMChannel()
void SetDefaultChannel()
void SetCombinedChannel()
void SetGEMVIChannel()
size_t GetNumberOfChannels() const
G4bool IsMasterThread()
Definition: G4Threading.cc:124

Referenced by G4QMDReaction::G4QMDReaction().

◆ SetEvaporation()

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

Definition at line 175 of file G4ExcitationHandler.cc.

176{
177 if(ptr && ptr != theEvaporation) {
178 delete theEvaporation;
179 theEvaporation = ptr;
181 theEvaporation->SetFermiBreakUp(theFermiModel);
182 isEvapLocal = flag;
183 if(fVerbose > 1) {
184 G4cout << "G4ExcitationHandler::SetEvaporation() for " << this << G4endl;
185 }
186 }
187}
void SetPhotonEvaporation(G4VEvaporationChannel *ptr)
G4VEvaporationChannel * GetPhotonEvaporation()
void SetFermiBreakUp(G4VFermiBreakUp *ptr)

Referenced by G4QMDReaction::G4QMDReaction(), G4WilsonAbrasionModel::G4WilsonAbrasionModel(), and G4WilsonAbrasionModel::SetUseAblation().

◆ SetFermiModel()

void G4ExcitationHandler::SetFermiModel ( G4VFermiBreakUp ptr)

Definition at line 198 of file G4ExcitationHandler.cc.

199{
200 if(ptr && ptr != theFermiModel) {
201 delete theFermiModel;
202 theFermiModel = ptr;
203 if(theEvaporation) { theEvaporation->SetFermiBreakUp(theFermiModel); }
204 }
205}

◆ SetMaxAandZForFermiBreakUp()

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

Definition at line 168 of file G4ExcitationHandler.hh.

169{
172}
void SetMaxZForFermiBreakUp(G4int aZ)
void SetMaxAForFermiBreakUp(G4int anA)

◆ SetMaxAForFermiBreakUp()

void G4ExcitationHandler::SetMaxAForFermiBreakUp ( G4int  anA)
inline

Definition at line 163 of file G4ExcitationHandler.hh.

164{
165 maxAForFermiBreakUp = anA;
166}

Referenced by SetMaxAandZForFermiBreakUp().

◆ SetMaxZForFermiBreakUp()

void G4ExcitationHandler::SetMaxZForFermiBreakUp ( G4int  aZ)
inline

Definition at line 158 of file G4ExcitationHandler.hh.

159{
160 maxZForFermiBreakUp = aZ;
161}

Referenced by SetMaxAandZForFermiBreakUp().

◆ SetMinEForMultiFrag()

void G4ExcitationHandler::SetMinEForMultiFrag ( G4double  anE)
inline

Definition at line 174 of file G4ExcitationHandler.hh.

175{
176 minEForMultiFrag = anE;
177}

Referenced by G4EMDissociation::G4EMDissociation().

◆ SetMultiFragmentation()

void G4ExcitationHandler::SetMultiFragmentation ( G4VMultiFragmentation ptr)

Definition at line 190 of file G4ExcitationHandler.cc.

191{
192 if(ptr && ptr != theMultiFragmentation) {
193 delete theMultiFragmentation;
194 theMultiFragmentation = ptr;
195 }
196}

◆ SetOPTxs()

void G4ExcitationHandler::SetOPTxs ( G4int  opt)
inline

Definition at line 179 of file G4ExcitationHandler.hh.

180{}

◆ SetPhotonEvaporation()

void G4ExcitationHandler::SetPhotonEvaporation ( G4VEvaporationChannel ptr)

Definition at line 208 of file G4ExcitationHandler.cc.

209{
210 if(ptr && ptr != thePhotonEvaporation) {
211 delete thePhotonEvaporation;
212 thePhotonEvaporation = ptr;
213 if(theEvaporation) { theEvaporation->SetPhotonEvaporation(ptr); }
214 if(fVerbose > 1) {
215 G4cout << "G4ExcitationHandler::SetPhotonEvaporation() " << ptr
216 << " for handler " << this << G4endl;
217 }
218 }
219}
virtual void SetPhotonEvaporation(G4VEvaporationChannel *ptr)

Referenced by SetEvaporation().

◆ UseSICB()

void G4ExcitationHandler::UseSICB ( )
inline

Definition at line 182 of file G4ExcitationHandler.hh.

183{}

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