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

#include <G4EvaporationFactory.hh>

+ Inheritance diagram for G4EvaporationFactory:

Public Member Functions

 G4EvaporationFactory (G4VEvaporationChannel *photoEvaporation)
 
virtual ~G4EvaporationFactory ()
 
virtual std::vector< G4VEvaporationChannel * > * GetChannel ()
 
- Public Member Functions inherited from G4VEvaporationFactory
 G4VEvaporationFactory (G4VEvaporationChannel *ptr)
 
virtual ~G4VEvaporationFactory ()
 
virtual std::vector< G4VEvaporationChannel * > * GetChannel ()=0
 

Additional Inherited Members

- Protected Attributes inherited from G4VEvaporationFactory
G4VEvaporationChannelthePhotonEvaporation
 

Detailed Description

Definition at line 42 of file G4EvaporationFactory.hh.

Constructor & Destructor Documentation

◆ G4EvaporationFactory()

G4EvaporationFactory::G4EvaporationFactory ( G4VEvaporationChannel photoEvaporation)
explicit

◆ ~G4EvaporationFactory()

G4EvaporationFactory::~G4EvaporationFactory ( )
virtual

Definition at line 48 of file G4EvaporationFactory.cc.

49{}

Member Function Documentation

◆ GetChannel()

std::vector< G4VEvaporationChannel * > * G4EvaporationFactory::GetChannel ( )
virtual

Implements G4VEvaporationFactory.

Definition at line 51 of file G4EvaporationFactory.cc.

52{
53 std::vector<G4VEvaporationChannel*> * theChannel =
54 new std::vector<G4VEvaporationChannel*>;
55 theChannel->reserve(8);
56
57 theChannel->push_back( thePhotonEvaporation ); // Photon Channel
58 theChannel->push_back( new G4CompetitiveFission() ); // Fission Channel
59
60 theChannel->push_back( new G4NeutronEvaporationChannel() ); // n
61 theChannel->push_back( new G4ProtonEvaporationChannel() ); // p
62 theChannel->push_back( new G4DeuteronEvaporationChannel() ); // Deuteron
63 theChannel->push_back( new G4TritonEvaporationChannel() ); // Triton
64 theChannel->push_back( new G4He3EvaporationChannel() ); // He3
65 theChannel->push_back( new G4AlphaEvaporationChannel() ); // Alpha
66
67 return theChannel;
68
69}
G4VEvaporationChannel * thePhotonEvaporation

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