Geant4 11.2.2
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)
 
 ~G4FermiPair ()=default
 
G4int GetA () const
 
G4int GetZ () const
 
G4double GetMass () const
 
G4double GetExcitationEnergy () const
 
G4double GetTotalEnergy () const
 
const G4FermiFragmentGetFragment1 () const
 
const G4FermiFragmentGetFragment2 () const
 
G4double GetMinMass (G4double Eex) const
 
void SetProbability (const G4double p)
 
G4double Probability () const
 
 G4FermiPair (const G4FermiPair &)=delete
 
const G4FermiPairoperator= (const G4FermiPair &)=delete
 
G4bool operator== (const G4FermiPair &) const =delete
 
G4bool operator!= (const G4FermiPair &) const =delete
 

Detailed Description

Definition at line 37 of file G4FermiPair.hh.

Constructor & Destructor Documentation

◆ G4FermiPair() [1/2]

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

Definition at line 35 of file G4FermiPair.cc.

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

◆ ~G4FermiPair()

G4FermiPair::~G4FermiPair ( )
default

◆ G4FermiPair() [2/2]

G4FermiPair::G4FermiPair ( const G4FermiPair & )
inlinedelete

Member Function Documentation

◆ GetA()

G4int G4FermiPair::GetA ( ) const
inline

Definition at line 45 of file G4FermiPair.hh.

45{ return totalA; }

◆ GetExcitationEnergy()

G4double G4FermiPair::GetExcitationEnergy ( ) const
inline

Definition at line 48 of file G4FermiPair.hh.

48{ return excitEnergy; }

◆ GetFragment1()

const G4FermiFragment * G4FermiPair::GetFragment1 ( ) const
inline

Definition at line 50 of file G4FermiPair.hh.

50{ return fragment1; }

◆ GetFragment2()

const G4FermiFragment * G4FermiPair::GetFragment2 ( ) const
inline

Definition at line 51 of file G4FermiPair.hh.

51{ return fragment2; }

◆ GetMass()

G4double G4FermiPair::GetMass ( ) const
inline

Definition at line 47 of file G4FermiPair.hh.

47{ return mass; }

◆ GetMinMass()

G4double G4FermiPair::GetMinMass ( G4double Eex) const

Definition at line 44 of file G4FermiPair.cc.

45{
46 return fragment1->GetTotalEnergy() + fragment2->GetTotalEnergy()
47 + G4FermiBreakUpUtil::CoulombBarrier(fragment1->GetZ(), fragment1->GetA(),
48 fragment2->GetZ(), fragment2->GetA(),
49 Eex);
50}
G4double CoulombBarrier(const G4int Z1, const G4int A1, const G4int Z2, const G4int A2, const G4double exc)

◆ GetTotalEnergy()

G4double G4FermiPair::GetTotalEnergy ( ) const
inline

Definition at line 49 of file G4FermiPair.hh.

49{ return mass + excitEnergy; }

◆ GetZ()

G4int G4FermiPair::GetZ ( ) const
inline

Definition at line 46 of file G4FermiPair.hh.

46{ return totalZ; }

◆ operator!=()

G4bool G4FermiPair::operator!= ( const G4FermiPair & ) const
inlinedelete

◆ operator=()

const G4FermiPair & G4FermiPair::operator= ( const G4FermiPair & )
inlinedelete

◆ operator==()

G4bool G4FermiPair::operator== ( const G4FermiPair & ) const
inlinedelete

◆ Probability()

G4double G4FermiPair::Probability ( ) const
inline

Definition at line 56 of file G4FermiPair.hh.

56{ return prob; }

◆ SetProbability()

void G4FermiPair::SetProbability ( const G4double p)
inline

Definition at line 55 of file G4FermiPair.hh.

55{ prob = p; }

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