Geant4  10.02.p03
G4VStatMFMacroCluster Class Referenceabstract

#include <G4VStatMFMacroCluster.hh>

Inheritance diagram for G4VStatMFMacroCluster:
Collaboration diagram for G4VStatMFMacroCluster:

Public Member Functions

 G4VStatMFMacroCluster (const G4int Size)
 
virtual ~G4VStatMFMacroCluster ()
 
G4bool operator== (const G4VStatMFMacroCluster &right) const
 
G4bool operator!= (const G4VStatMFMacroCluster &right) const
 
virtual G4double CalcMeanMultiplicity (const G4double FreeVol, const G4double mu, const G4double nu, const G4double T)=0
 
virtual G4double CalcZARatio (const G4double nu)=0
 
G4double GetMeanMultiplicity (void) const
 
virtual G4double CalcEnergy (const G4double T)=0
 
virtual G4double CalcEntropy (const G4double T, const G4double FreeVol)=0
 
G4double GetInvLevelDensity (void) const
 
void SetZARatio (const G4double value)
 
G4double GetZARatio (void) const
 
void SetSize (const G4double value)
 
G4double GetSize (void) const
 

Protected Attributes

G4int theA
 
G4double _InvLevelDensity
 
G4double _Entropy
 
G4double theZARatio
 
G4double _MeanMultiplicity
 
G4double _Energy
 

Private Member Functions

 G4VStatMFMacroCluster ()
 
 G4VStatMFMacroCluster (const G4VStatMFMacroCluster &right)
 
G4VStatMFMacroClusteroperator= (const G4VStatMFMacroCluster &right)
 
G4double CalcInvLevelDensity (void)
 

Detailed Description

Definition at line 39 of file G4VStatMFMacroCluster.hh.

Constructor & Destructor Documentation

◆ G4VStatMFMacroCluster() [1/3]

G4VStatMFMacroCluster::G4VStatMFMacroCluster ( const G4int  Size)
inline

Definition at line 43 of file G4VStatMFMacroCluster.hh.

43  :
44  theA(Size),
45  _InvLevelDensity(0.0),
46  _Entropy(0.0),
47  theZARatio(0.0),
48  _MeanMultiplicity(0.0),
49  _Energy(0.0)
50  {
51  if (theA <= 0) throw G4HadronicException(__FILE__, __LINE__,
52  "G4VStatMFMacroCluster::Constructor: Cluster's size must be >= 1");
54  }
G4double CalcInvLevelDensity(void)
Here is the call graph for this function:

◆ ~G4VStatMFMacroCluster()

virtual G4VStatMFMacroCluster::~G4VStatMFMacroCluster ( )
inlinevirtual

Definition at line 58 of file G4VStatMFMacroCluster.hh.

58 {};

◆ G4VStatMFMacroCluster() [2/3]

G4VStatMFMacroCluster::G4VStatMFMacroCluster ( )
inlineprivate

Definition at line 64 of file G4VStatMFMacroCluster.hh.

64 {};
Here is the call graph for this function:

◆ G4VStatMFMacroCluster() [3/3]

G4VStatMFMacroCluster::G4VStatMFMacroCluster ( const G4VStatMFMacroCluster right)
private

Definition at line 37 of file G4VStatMFMacroCluster.cc.

38 {
39  throw G4HadronicException(__FILE__, __LINE__, "G4VStatMFMacroCluster::copy_constructor meant to not be accessable");
40 }
Here is the call graph for this function:

Member Function Documentation

◆ CalcEnergy()

virtual G4double G4VStatMFMacroCluster::CalcEnergy ( const G4double  T)
pure virtual

Implemented in G4StatMFMacroMultiNucleon, G4StatMFMacroBiNucleon, G4StatMFMacroNucleon, G4StatMFMacroTetraNucleon, and G4StatMFMacroTriNucleon.

Here is the caller graph for this function:

◆ CalcEntropy()

virtual G4double G4VStatMFMacroCluster::CalcEntropy ( const G4double  T,
const G4double  FreeVol 
)
pure virtual

Implemented in G4StatMFMacroMultiNucleon, G4StatMFMacroBiNucleon, G4StatMFMacroNucleon, G4StatMFMacroTetraNucleon, and G4StatMFMacroTriNucleon.

Here is the caller graph for this function:

◆ CalcInvLevelDensity()

G4double G4VStatMFMacroCluster::CalcInvLevelDensity ( void  )
private

Definition at line 66 of file G4VStatMFMacroCluster.cc.

67 {
68  // Calculate Inverse Density Level
69  // Epsilon0*(1 + 3 /(Af - 1))
70  if (theA == 1) return 0.0;
71  else return
72  G4StatMFParameters::GetEpsilon0()*(1.0+3.0/(static_cast<G4double>(theA-1)));
73 }
static G4double GetEpsilon0()
double G4double
Definition: G4Types.hh:76
Here is the call graph for this function:
Here is the caller graph for this function:

◆ CalcMeanMultiplicity()

virtual G4double G4VStatMFMacroCluster::CalcMeanMultiplicity ( const G4double  FreeVol,
const G4double  mu,
const G4double  nu,
const G4double  T 
)
pure virtual

Implemented in G4StatMFMacroMultiNucleon, G4StatMFMacroBiNucleon, G4StatMFMacroTetraNucleon, G4StatMFMacroTriNucleon, and G4StatMFMacroNucleon.

Here is the caller graph for this function:

◆ CalcZARatio()

virtual G4double G4VStatMFMacroCluster::CalcZARatio ( const G4double  nu)
pure virtual

Implemented in G4StatMFMacroMultiNucleon, G4StatMFMacroBiNucleon, G4StatMFMacroTetraNucleon, G4StatMFMacroTriNucleon, and G4StatMFMacroNucleon.

Here is the caller graph for this function:

◆ GetInvLevelDensity()

G4double G4VStatMFMacroCluster::GetInvLevelDensity ( void  ) const
inline

Definition at line 114 of file G4VStatMFMacroCluster.hh.

115  { return _InvLevelDensity; }

◆ GetMeanMultiplicity()

G4double G4VStatMFMacroCluster::GetMeanMultiplicity ( void  ) const
inline

Definition at line 86 of file G4VStatMFMacroCluster.hh.

Here is the call graph for this function:

◆ GetSize()

G4double G4VStatMFMacroCluster::GetSize ( void  ) const
inline

Definition at line 131 of file G4VStatMFMacroCluster.hh.

132  { return theA; }

◆ GetZARatio()

G4double G4VStatMFMacroCluster::GetZARatio ( void  ) const
inline

Definition at line 120 of file G4VStatMFMacroCluster.hh.

121  { return theZARatio; }

◆ operator!=()

G4bool G4VStatMFMacroCluster::operator!= ( const G4VStatMFMacroCluster right) const

Definition at line 59 of file G4VStatMFMacroCluster.cc.

60 {
61 // throw G4HadronicException(__FILE__, __LINE__, "G4VStatMFMacroCluster::operator!= meant to not be accessable");
62  return true;
63 }
Here is the caller graph for this function:

◆ operator=()

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

Definition at line 45 of file G4VStatMFMacroCluster.cc.

46 {
47  throw G4HadronicException(__FILE__, __LINE__, "G4VStatMFMacroCluster::operator= meant to not be accessable");
48  return *this;
49 }
Here is the caller graph for this function:

◆ operator==()

G4bool G4VStatMFMacroCluster::operator== ( const G4VStatMFMacroCluster right) const

Definition at line 52 of file G4VStatMFMacroCluster.cc.

53 {
54 // throw G4HadronicException(__FILE__, __LINE__, "G4VStatMFMacroCluster::operator== meant to not be accessable");
55  return false;
56 }
Here is the caller graph for this function:

◆ SetSize()

void G4VStatMFMacroCluster::SetSize ( const G4double  value)
inline

Definition at line 124 of file G4VStatMFMacroCluster.hh.

125  {
126  if (value <= 0.0) throw G4HadronicException(__FILE__, __LINE__, "G4VStatMFMacroCluster::SetSize: Cluster's size must be >= 1");
127  theA = G4int(value);
129  }
G4double CalcInvLevelDensity(void)
int G4int
Definition: G4Types.hh:78
Here is the call graph for this function:

◆ SetZARatio()

void G4VStatMFMacroCluster::SetZARatio ( const G4double  value)
inline

Definition at line 117 of file G4VStatMFMacroCluster.hh.

118  { theZARatio = value; }

Member Data Documentation

◆ _Energy

G4double G4VStatMFMacroCluster::_Energy
protected

Definition at line 109 of file G4VStatMFMacroCluster.hh.

◆ _Entropy

G4double G4VStatMFMacroCluster::_Entropy
protected

Definition at line 100 of file G4VStatMFMacroCluster.hh.

◆ _InvLevelDensity

G4double G4VStatMFMacroCluster::_InvLevelDensity
protected

Definition at line 97 of file G4VStatMFMacroCluster.hh.

◆ _MeanMultiplicity

G4double G4VStatMFMacroCluster::_MeanMultiplicity
protected

Definition at line 106 of file G4VStatMFMacroCluster.hh.

◆ theA

G4int G4VStatMFMacroCluster::theA
protected

Definition at line 94 of file G4VStatMFMacroCluster.hh.

◆ theZARatio

G4double G4VStatMFMacroCluster::theZARatio
protected

Definition at line 103 of file G4VStatMFMacroCluster.hh.


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