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

#include <G4FermiPair.hh>

Public Member Functions

 G4FermiPair (const G4FermiFragment *f1, const G4FermiFragment *f2)
 
G4int GetA () const
 
G4int GetZ () const
 
G4double GetMass () const
 
G4double GetExcitationEnergy () const
 
G4double GetTotalEnergy () const
 
G4double GetDynamicMinMass (G4double Eex) const
 
const G4FermiFragmentGetFragment1 () const
 
const G4FermiFragmentGetFragment2 () const
 

Detailed Description

Definition at line 38 of file G4FermiPair.hh.

Constructor & Destructor Documentation

◆ G4FermiPair()

G4FermiPair::G4FermiPair ( const G4FermiFragment f1,
const G4FermiFragment f2 
)
explicit

Definition at line 34 of file G4FermiPair.cc.

35 : fragment1(f1), fragment2(f2)
36{
37 totalZ = f1->GetZ() + f2->GetZ();
38 totalA = f1->GetA() + f2->GetA();
39 mass = G4NucleiProperties::GetNuclearMass(totalA, totalZ);
40 excitEnergy = f1->GetTotalEnergy() + f2->GetTotalEnergy() - mass;
41}
G4int GetZ(void) const
G4int GetA(void) const
G4double GetTotalEnergy(void) const
static G4double GetNuclearMass(const G4double A, const G4double Z)

Member Function Documentation

◆ GetA()

G4int G4FermiPair::GetA ( ) const
inline

Definition at line 71 of file G4FermiPair.hh.

72{
73 return totalA;
74}

◆ GetDynamicMinMass()

G4double G4FermiPair::GetDynamicMinMass ( G4double  Eex) const
inline

Definition at line 106 of file G4FermiPair.hh.

107{
108 return fragment1->GetTotalEnergy() + fragment2->GetTotalEnergy()
109 + fragment1->GetCoulombBarrier(fragment2->GetA(), fragment2->GetZ(), Eex);
110}
G4double GetCoulombBarrier(G4int Ares, G4int Zres, G4double Eex) const

◆ GetExcitationEnergy()

G4double G4FermiPair::GetExcitationEnergy ( ) const
inline

Definition at line 86 of file G4FermiPair.hh.

87{
88 return excitEnergy;
89}

◆ GetFragment1()

const G4FermiFragment * G4FermiPair::GetFragment1 ( ) const
inline

Definition at line 96 of file G4FermiPair.hh.

97{
98 return fragment1;
99}

Referenced by G4FermiFragmentsPoolVI::Dump().

◆ GetFragment2()

const G4FermiFragment * G4FermiPair::GetFragment2 ( ) const
inline

Definition at line 101 of file G4FermiPair.hh.

102{
103 return fragment2;
104}

Referenced by G4FermiFragmentsPoolVI::Dump().

◆ GetMass()

G4double G4FermiPair::GetMass ( ) const
inline

Definition at line 81 of file G4FermiPair.hh.

82{
83 return mass;
84}

◆ GetTotalEnergy()

G4double G4FermiPair::GetTotalEnergy ( ) const
inline

Definition at line 91 of file G4FermiPair.hh.

92{
93 return mass + excitEnergy;
94}

◆ GetZ()

G4int G4FermiPair::GetZ ( ) const
inline

Definition at line 76 of file G4FermiPair.hh.

77{
78 return totalZ;
79}

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