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

#include <G4FermiFragment.hh>

Public Member Functions

 G4FermiFragment (G4int anA, G4int aZ, G4int sp, G4double exc)
 
 ~G4FermiFragment ()
 
G4int GetA (void) const
 
G4int GetZ (void) const
 
G4int GetSpin (void) const
 
G4double GetExcitationEnergy (void) const
 
G4double GetFragmentMass (void) const
 
G4double GetTotalEnergy (void) const
 
G4double GetCoulombBarrier (G4int Ares, G4int Zres, G4double Eex) const
 
G4bool operator== (const G4FermiFragment &right) const
 

Detailed Description

Definition at line 38 of file G4FermiFragment.hh.

Constructor & Destructor Documentation

◆ G4FermiFragment()

G4FermiFragment::G4FermiFragment ( G4int  anA,
G4int  aZ,
G4int  sp,
G4double  exc 
)
explicit

Definition at line 35 of file G4FermiFragment.cc.

36 : excitEnergy(exc), A(anA), Z(aZ), spin(sp)
37{
38 cBarrier = new G4CoulombBarrier(A, Z);
39 fragmentMass = G4NucleiProperties::GetNuclearMass(A, Z);
40}
static G4double GetNuclearMass(const G4double A, const G4double Z)

◆ ~G4FermiFragment()

G4FermiFragment::~G4FermiFragment ( )

Definition at line 42 of file G4FermiFragment.cc.

43{
44 delete cBarrier;
45}

Member Function Documentation

◆ GetA()

◆ GetCoulombBarrier()

G4double G4FermiFragment::GetCoulombBarrier ( G4int  Ares,
G4int  Zres,
G4double  Eex 
) const
inline

Definition at line 76 of file G4FermiFragment.hh.

77 {
78 return cBarrier->GetCoulombBarrier(Ares, Zres, Eex);
79 }
G4double GetCoulombBarrier(G4int ARes, G4int ZRes, G4double U) const

Referenced by G4FermiDecayProbability::ComputeProbability(), and G4FermiPair::GetDynamicMinMass().

◆ GetExcitationEnergy()

G4double G4FermiFragment::GetExcitationEnergy ( void  ) const
inline

Definition at line 61 of file G4FermiFragment.hh.

62 {
63 return excitEnergy;
64 }

Referenced by G4FermiFragmentsPoolVI::Dump(), G4FermiFragmentsPoolVI::DumpFragment(), and G4FermiFragmentsPoolVI::HasChannels().

◆ GetFragmentMass()

G4double G4FermiFragment::GetFragmentMass ( void  ) const
inline

Definition at line 66 of file G4FermiFragment.hh.

67 {
68 return fragmentMass;
69 }

Referenced by G4FermiFragmentsPoolVI::DumpFragment().

◆ GetSpin()

G4int G4FermiFragment::GetSpin ( void  ) const
inline

◆ GetTotalEnergy()

G4double G4FermiFragment::GetTotalEnergy ( void  ) const
inline

◆ GetZ()

◆ operator==()

G4bool G4FermiFragment::operator== ( const G4FermiFragment right) const
inline

Definition at line 81 of file G4FermiFragment.hh.

82 {
83 return (A == right.A && Z == right.Z &&
84 std::abs(excitEnergy - right.excitEnergy) < 0.0001);
85 }

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