Geant4  10.02.p03
G4VEvaporation Class Referenceabstract

#include <G4VEvaporation.hh>

Inheritance diagram for G4VEvaporation:
Collaboration diagram for G4VEvaporation:

Public Member Functions

 G4VEvaporation ()
 
virtual ~G4VEvaporation ()
 
virtual G4FragmentVectorBreakItUp (const G4Fragment &theNucleus)=0
 
virtual void BreakFragment (G4FragmentVector *, G4Fragment *theNucleus)
 
virtual void InitialiseChannels ()
 
virtual void SetPhotonEvaporation (G4VEvaporationChannel *ptr)
 
G4VEvaporationChannelGetPhotonEvaporation ()
 
G4VEvaporationChannelGetFissionChannel ()
 
void SetOPTxs (G4int opt)
 
void UseSICB (G4bool use)
 

Protected Member Functions

void CleanChannels ()
 

Protected Attributes

G4VEvaporationChannelthePhotonEvaporation
 
G4int OPTxs
 
G4bool useSICB
 
std::vector< G4VEvaporationChannel * > * theChannels
 
G4VEvaporationFactorytheChannelFactory
 

Private Member Functions

 G4VEvaporation (const G4VEvaporation &right)
 
const G4VEvaporationoperator= (const G4VEvaporation &right)
 
G4bool operator== (const G4VEvaporation &right) const
 
G4bool operator!= (const G4VEvaporation &right) const
 

Detailed Description

Definition at line 52 of file G4VEvaporation.hh.

Constructor & Destructor Documentation

◆ G4VEvaporation() [1/2]

G4VEvaporation::G4VEvaporation ( )

Definition at line 38 of file G4VEvaporation.cc.

39  :thePhotonEvaporation(0),OPTxs(3),useSICB(false)
41 {}
G4VEvaporationChannel * thePhotonEvaporation
std::vector< G4VEvaporationChannel * > * theChannels
G4VEvaporationFactory * theChannelFactory

◆ ~G4VEvaporation()

G4VEvaporation::~G4VEvaporation ( )
virtual

Definition at line 43 of file G4VEvaporation.cc.

44 {
45  CleanChannels();
46  delete thePhotonEvaporation;
47  delete theChannelFactory;
48 }
G4VEvaporationChannel * thePhotonEvaporation
G4VEvaporationFactory * theChannelFactory
Here is the call graph for this function:

◆ G4VEvaporation() [2/2]

G4VEvaporation::G4VEvaporation ( const G4VEvaporation right)
private

Member Function Documentation

◆ BreakFragment()

void G4VEvaporation::BreakFragment ( G4FragmentVector ,
G4Fragment theNucleus 
)
virtual

Definition at line 73 of file G4VEvaporation.cc.

74 {}
Here is the caller graph for this function:

◆ BreakItUp()

virtual G4FragmentVector* G4VEvaporation::BreakItUp ( const G4Fragment theNucleus)
pure virtual

◆ CleanChannels()

void G4VEvaporation::CleanChannels ( )
protected

Definition at line 50 of file G4VEvaporation.cc.

51 {
52  if(theChannels) {
53  for (size_t i=1; i<theChannels->size(); ++i) {
54  delete (*theChannels)[i];
55  }
56  delete theChannels;
57  theChannels = 0;
58  }
59 }
std::vector< G4VEvaporationChannel * > * theChannels
Here is the caller graph for this function:

◆ GetFissionChannel()

G4VEvaporationChannel * G4VEvaporation::GetFissionChannel ( )
inline

Definition at line 105 of file G4VEvaporation.hh.

106 {
107  G4VEvaporationChannel* p = 0;
108  if(theChannels->size() > 1) { p = (*theChannels)[1]; }
109  return p;
110 }
std::vector< G4VEvaporationChannel * > * theChannels
Here is the caller graph for this function:

◆ GetPhotonEvaporation()

G4VEvaporationChannel * G4VEvaporation::GetPhotonEvaporation ( )
inline

Definition at line 100 of file G4VEvaporation.hh.

101 {
102  return thePhotonEvaporation;
103 }
G4VEvaporationChannel * thePhotonEvaporation
Here is the caller graph for this function:

◆ InitialiseChannels()

void G4VEvaporation::InitialiseChannels ( )
virtual

Definition at line 61 of file G4VEvaporation.cc.

62 {}
Here is the caller graph for this function:

◆ operator!=()

G4bool G4VEvaporation::operator!= ( const G4VEvaporation right) const
private

◆ operator=()

const G4VEvaporation& G4VEvaporation::operator= ( const G4VEvaporation right)
private

◆ operator==()

G4bool G4VEvaporation::operator== ( const G4VEvaporation right) const
private

◆ SetOPTxs()

void G4VEvaporation::SetOPTxs ( G4int  opt)
inline

Definition at line 76 of file G4VEvaporation.hh.

76 { OPTxs = opt;}
Here is the caller graph for this function:

◆ SetPhotonEvaporation()

void G4VEvaporation::SetPhotonEvaporation ( G4VEvaporationChannel ptr)
virtual

Definition at line 64 of file G4VEvaporation.cc.

65 {
66  if(thePhotonEvaporation != ptr) {
67  delete thePhotonEvaporation;
69  if(theChannels && 0 < theChannels->size()) { (*theChannels)[0] = ptr; }
70  }
71 }
G4VEvaporationChannel * thePhotonEvaporation
std::vector< G4VEvaporationChannel * > * theChannels
Here is the caller graph for this function:

◆ UseSICB()

void G4VEvaporation::UseSICB ( G4bool  use)
inline

Definition at line 78 of file G4VEvaporation.hh.

78 { useSICB = use; }
Here is the call graph for this function:
Here is the caller graph for this function:

Member Data Documentation

◆ OPTxs

G4int G4VEvaporation::OPTxs
protected

Definition at line 86 of file G4VEvaporation.hh.

◆ theChannelFactory

G4VEvaporationFactory* G4VEvaporation::theChannelFactory
protected

Definition at line 90 of file G4VEvaporation.hh.

◆ theChannels

std::vector<G4VEvaporationChannel*>* G4VEvaporation::theChannels
protected

Definition at line 89 of file G4VEvaporation.hh.

◆ thePhotonEvaporation

G4VEvaporationChannel* G4VEvaporation::thePhotonEvaporation
protected

Definition at line 84 of file G4VEvaporation.hh.

◆ useSICB

G4bool G4VEvaporation::useSICB
protected

Definition at line 87 of file G4VEvaporation.hh.


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