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

#include <G4VPreCompoundFragment.hh>

Inheritance diagram for G4VPreCompoundFragment:
Collaboration diagram for G4VPreCompoundFragment:

Public Member Functions

 G4VPreCompoundFragment (const G4ParticleDefinition *, G4VCoulombBarrier *aCoulombBarrier)
 
virtual ~G4VPreCompoundFragment ()
 
void Initialize (const G4Fragment &aFragment)
 
virtual G4double CalcEmissionProbability (const G4Fragment &aFragment)=0
 
virtual G4double SampleKineticEnergy (const G4Fragment &aFragment)=0
 
G4bool IsItPossible (const G4Fragment &aFragment) const
 
G4ReactionProductGetReactionProduct () const
 
G4int GetA () const
 
G4int GetZ () const
 
G4int GetRestA () const
 
G4int GetRestZ () const
 
G4double GetBindingEnergy () const
 
G4double GetEnergyThreshold () const
 
G4double GetEmissionProbability () const
 
G4double GetNuclearMass () const
 
G4double GetRestNuclearMass () const
 
const G4LorentzVectorGetMomentum () const
 
void SetMomentum (const G4LorentzVector &value)
 
void SetOPTxs (G4int)
 
void UseSICB (G4bool)
 

Protected Member Functions

virtual G4double GetAlpha () const =0
 
virtual G4double GetBeta () const =0
 

Protected Attributes

G4DeexPrecoParameterstheParameters
 
G4Powg4calc
 
G4int theA
 
G4int theZ
 
G4int theResA
 
G4int theResZ
 
G4int theFragA
 
G4int theFragZ
 
G4double theResA13
 
G4double theBindingEnergy
 
G4double theMinKinEnergy
 
G4double theMaxKinEnergy
 
G4double theResMass
 
G4double theReducedMass
 
G4double theMass
 
G4double theEmissionProbability
 
G4double theCoulombBarrier
 
G4int OPTxs
 
G4bool useSICB
 

Friends

std::ostream & operator<< (std::ostream &, const G4VPreCompoundFragment *)
 
std::ostream & operator<< (std::ostream &, const G4VPreCompoundFragment &)
 

Detailed Description

Definition at line 54 of file G4VPreCompoundFragment.hh.

Constructor & Destructor Documentation

G4VPreCompoundFragment::G4VPreCompoundFragment ( const G4ParticleDefinition part,
G4VCoulombBarrier aCoulombBarrier 
)
explicit

Definition at line 40 of file G4VPreCompoundFragment.cc.

42  : particle(part), theCoulombBarrierPtr(aCoulombBarrier),
43  theMomentum(0.,0.,0.,0.),
44  theA(particle->GetBaryonNumber()),
45  theZ(G4lrint(particle->GetPDGCharge())),
48  theReducedMass(0.0),
50  OPTxs(3),useSICB(true)
51 {
52  theMass = particle->GetPDGMass();
55  theResA13 = 0.0;
56 }
static G4Pow * GetInstance()
Definition: G4Pow.cc:55
G4DeexPrecoParameters * theParameters
G4DeexPrecoParameters * GetParameters()
G4double GetPDGMass() const
int G4lrint(double ad)
Definition: templates.hh:163
G4double GetPDGCharge() const
static G4NuclearLevelData * GetInstance()

Here is the call graph for this function:

G4VPreCompoundFragment::~G4VPreCompoundFragment ( )
virtual

Definition at line 58 of file G4VPreCompoundFragment.cc.

59 {}

Member Function Documentation

virtual G4double G4VPreCompoundFragment::CalcEmissionProbability ( const G4Fragment aFragment)
pure virtual

Implemented in G4PreCompoundFragment, and G4HETCFragment.

G4int G4VPreCompoundFragment::GetA ( ) const
inline

Here is the caller graph for this function:

virtual G4double G4VPreCompoundFragment::GetBeta ( ) const
protectedpure virtual
G4double G4VPreCompoundFragment::GetBindingEnergy ( ) const
inline
G4double G4VPreCompoundFragment::GetEmissionProbability ( ) const
inline
G4double G4VPreCompoundFragment::GetEnergyThreshold ( ) const
inline

Here is the caller graph for this function:

const G4LorentzVector& G4VPreCompoundFragment::GetMomentum ( ) const
inline
G4double G4VPreCompoundFragment::GetNuclearMass ( ) const
inline

Here is the caller graph for this function:

G4ReactionProduct* G4VPreCompoundFragment::GetReactionProduct ( ) const
inline

Here is the caller graph for this function:

G4int G4VPreCompoundFragment::GetRestA ( ) const
inline

Here is the caller graph for this function:

G4double G4VPreCompoundFragment::GetRestNuclearMass ( ) const
inline
G4int G4VPreCompoundFragment::GetRestZ ( ) const
inline

Here is the caller graph for this function:

G4int G4VPreCompoundFragment::GetZ ( ) const
inline

Here is the caller graph for this function:

void G4VPreCompoundFragment::Initialize ( const G4Fragment aFragment)

Definition at line 79 of file G4VPreCompoundFragment.cc.

80 {
81  theFragA = aFragment.GetA_asInt();
82  theFragZ = aFragment.GetZ_asInt();
83  theResA = theFragA - theA;
84  theResZ = theFragZ - theZ;
85 
87  if ((theResA < theResZ) || (theResA < theA) || (theResZ < theZ)) {
88  return;
89  }
90 
92  theCoulombBarrier = theCoulombBarrierPtr->
93  GetCoulombBarrier(theResA,theResZ,aFragment.GetExcitationEnergy());
94 
96 
97  // Calculate masses
100 
101  // Compute Binding Energies for fragments
102  // needed to separate a fragment from the nucleus
104 
105  // Compute Maximal Kinetic Energy which can be carried by fragments
106  // after separation - the true assimptotic value
107  G4double Ecm = aFragment.GetMomentum().m();
109  /(2.0*Ecm) - theMass;
110 }
static G4double GetNuclearMass(const G4double A, const G4double Z)
G4double Z13(G4int Z) const
Definition: G4Pow.hh:127
G4int GetA_asInt() const
Definition: G4Fragment.hh:266
const G4LorentzVector & GetMomentum() const
Definition: G4Fragment.hh:307
G4double GetGroundStateMass() const
Definition: G4Fragment.hh:288
G4int GetZ_asInt() const
Definition: G4Fragment.hh:271
double G4double
Definition: G4Types.hh:76
G4double GetExcitationEnergy() const
Definition: G4Fragment.hh:283

Here is the call graph for this function:

G4bool G4VPreCompoundFragment::IsItPossible ( const G4Fragment aFragment) const
inline
virtual G4double G4VPreCompoundFragment::SampleKineticEnergy ( const G4Fragment aFragment)
pure virtual

Implemented in G4PreCompoundFragment, G4HETCNeutron, and G4HETCChargedFragment.

Here is the caller graph for this function:

void G4VPreCompoundFragment::SetMomentum ( const G4LorentzVector value)
inline

Here is the caller graph for this function:

void G4VPreCompoundFragment::SetOPTxs ( G4int  )
inline
void G4VPreCompoundFragment::UseSICB ( G4bool  )
inline

Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream &  out,
const G4VPreCompoundFragment theFragment 
)
friend

Definition at line 69 of file G4VPreCompoundFragment.cc.

70 {
71  out
72  << "PreCompoundModel Emitted Fragment: Z= " << theFragment->GetZ()
73  << " A= " << theFragment->GetA()
74  << " Mass(GeV)= " << theFragment->GetNuclearMass()/CLHEP::GeV;
75  return out;
76 }
G4int GetA() const
static constexpr double GeV
G4double GetNuclearMass() const
G4int GetZ() const
std::ostream& operator<< ( std::ostream &  out,
const G4VPreCompoundFragment theFragment 
)
friend

Definition at line 62 of file G4VPreCompoundFragment.cc.

63 {
64  out << &theFragment;
65  return out;
66 }

Member Data Documentation

G4Pow* G4VPreCompoundFragment::g4calc
protected

Definition at line 142 of file G4VPreCompoundFragment.hh.

G4int G4VPreCompoundFragment::OPTxs
protected

Definition at line 163 of file G4VPreCompoundFragment.hh.

G4int G4VPreCompoundFragment::theA
protected

Definition at line 144 of file G4VPreCompoundFragment.hh.

G4double G4VPreCompoundFragment::theBindingEnergy
protected

Definition at line 152 of file G4VPreCompoundFragment.hh.

G4double G4VPreCompoundFragment::theCoulombBarrier
protected

Definition at line 160 of file G4VPreCompoundFragment.hh.

G4double G4VPreCompoundFragment::theEmissionProbability
protected

Definition at line 159 of file G4VPreCompoundFragment.hh.

G4int G4VPreCompoundFragment::theFragA
protected

Definition at line 148 of file G4VPreCompoundFragment.hh.

G4int G4VPreCompoundFragment::theFragZ
protected

Definition at line 149 of file G4VPreCompoundFragment.hh.

G4double G4VPreCompoundFragment::theMass
protected

Definition at line 157 of file G4VPreCompoundFragment.hh.

G4double G4VPreCompoundFragment::theMaxKinEnergy
protected

Definition at line 154 of file G4VPreCompoundFragment.hh.

G4double G4VPreCompoundFragment::theMinKinEnergy
protected

Definition at line 153 of file G4VPreCompoundFragment.hh.

G4DeexPrecoParameters* G4VPreCompoundFragment::theParameters
protected

Definition at line 141 of file G4VPreCompoundFragment.hh.

G4double G4VPreCompoundFragment::theReducedMass
protected

Definition at line 156 of file G4VPreCompoundFragment.hh.

G4int G4VPreCompoundFragment::theResA
protected

Definition at line 146 of file G4VPreCompoundFragment.hh.

G4double G4VPreCompoundFragment::theResA13
protected

Definition at line 151 of file G4VPreCompoundFragment.hh.

G4double G4VPreCompoundFragment::theResMass
protected

Definition at line 155 of file G4VPreCompoundFragment.hh.

G4int G4VPreCompoundFragment::theResZ
protected

Definition at line 147 of file G4VPreCompoundFragment.hh.

G4int G4VPreCompoundFragment::theZ
protected

Definition at line 145 of file G4VPreCompoundFragment.hh.

G4bool G4VPreCompoundFragment::useSICB
protected

Definition at line 165 of file G4VPreCompoundFragment.hh.


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