Geant4  10.03.p01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4VFermiFragment Class Referenceabstract

#include <G4VFermiFragment.hh>

Inheritance diagram for G4VFermiFragment:

Public Member Functions

 G4VFermiFragment (G4int anA, G4int aZ, G4int Pol, G4double exc, G4bool stable=true)
 
virtual ~G4VFermiFragment ()
 
virtual void FillFragment (G4FragmentVector *, const G4LorentzVector &aMomentum) const =0
 
G4FragmentVectorGetFragment (const G4LorentzVector &aMomentum) const
 
G4int GetA (void) const
 
G4int GetZ (void) const
 
G4int GetPolarization (void) const
 
G4double GetExcitationEnergy (void) const
 
G4double GetFragmentMass (void) const
 
G4double GetTotalEnergy (void) const
 
G4bool IsStable () const
 

Detailed Description

Definition at line 40 of file G4VFermiFragment.hh.

Constructor & Destructor Documentation

G4VFermiFragment::G4VFermiFragment ( G4int  anA,
G4int  aZ,
G4int  Pol,
G4double  exc,
G4bool  stable = true 
)
explicit

Definition at line 34 of file G4VFermiFragment.cc.

35  :
36  isStable(stable),
37  A(anA),
38  Z(aZ),
39  Polarization(Pol),
40  ExcitEnergy(exc)
41 {
42  fragmentMass = 0.0;
43  if(A > 0) { fragmentMass = G4NucleiProperties::GetNuclearMass(A, Z); }
44 }
static G4double GetNuclearMass(const G4double A, const G4double Z)

Here is the call graph for this function:

G4VFermiFragment::~G4VFermiFragment ( )
virtual

Definition at line 46 of file G4VFermiFragment.cc.

47 {}

Member Function Documentation

virtual void G4VFermiFragment::FillFragment ( G4FragmentVector ,
const G4LorentzVector aMomentum 
) const
pure virtual

Implemented in G4UnstableFermiFragment, and G4StableFermiFragment.

Here is the caller graph for this function:

G4int G4VFermiFragment::GetA ( void  ) const
inline

Definition at line 59 of file G4VFermiFragment.hh.

60  {
61  return A;
62  }

Here is the caller graph for this function:

G4double G4VFermiFragment::GetExcitationEnergy ( void  ) const
inline

Definition at line 74 of file G4VFermiFragment.hh.

75  {
76  return ExcitEnergy;
77  }

Here is the caller graph for this function:

G4FragmentVector* G4VFermiFragment::GetFragment ( const G4LorentzVector aMomentum) const
inline

Definition at line 52 of file G4VFermiFragment.hh.

53  {
55  FillFragment(vec, aMomentum);
56  return vec;
57  }
virtual void FillFragment(G4FragmentVector *, const G4LorentzVector &aMomentum) const =0
std::vector< G4Fragment * > G4FragmentVector
Definition: G4Fragment.hh:63

Here is the call graph for this function:

G4double G4VFermiFragment::GetFragmentMass ( void  ) const
inline

Definition at line 79 of file G4VFermiFragment.hh.

80  {
81  return fragmentMass;
82  }

Here is the caller graph for this function:

G4int G4VFermiFragment::GetPolarization ( void  ) const
inline

Definition at line 69 of file G4VFermiFragment.hh.

70  {
71  return Polarization;
72  }
G4double G4VFermiFragment::GetTotalEnergy ( void  ) const
inline

Definition at line 84 of file G4VFermiFragment.hh.

85  {
86  return (GetFragmentMass() + GetExcitationEnergy());
87  }
G4double GetExcitationEnergy(void) const
G4double GetFragmentMass(void) const

Here is the call graph for this function:

G4int G4VFermiFragment::GetZ ( void  ) const
inline

Definition at line 64 of file G4VFermiFragment.hh.

65  {
66  return Z;
67  }

Here is the caller graph for this function:

G4bool G4VFermiFragment::IsStable ( ) const
inline

Definition at line 89 of file G4VFermiFragment.hh.

90  {
91  return isStable;
92  }

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