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

#include <G4PreCompoundDeuteron.hh>

Inheritance diagram for G4PreCompoundDeuteron:
Collaboration diagram for G4PreCompoundDeuteron:

Public Member Functions

 G4PreCompoundDeuteron ()
 
 ~G4PreCompoundDeuteron ()
 
virtual G4double GetRj (G4int NumberParticles, G4int NumberCharged) const
 
virtual G4double FactorialFactor (G4int N, G4int P) const
 
virtual G4double CoalescenceFactor (G4int A) const
 
virtual G4double GetAlpha () const
 
- Public Member Functions inherited from G4PreCompoundIon
 G4PreCompoundIon (const G4ParticleDefinition *, G4VCoulombBarrier *aCoulombBarrier)
 
virtual ~G4PreCompoundIon ()
 
- Public Member Functions inherited from G4PreCompoundFragment
 G4PreCompoundFragment (const G4ParticleDefinition *, G4VCoulombBarrier *aCoulombBarrier)
 
virtual ~G4PreCompoundFragment ()
 
G4double CalcEmissionProbability (const G4Fragment &aFragment)
 
G4double SampleKineticEnergy (const G4Fragment &aFragment)
 
- Public Member Functions inherited from G4VPreCompoundFragment
 G4VPreCompoundFragment (const G4ParticleDefinition *, G4VCoulombBarrier *aCoulombBarrier)
 
virtual ~G4VPreCompoundFragment ()
 
void Initialize (const G4Fragment &aFragment)
 
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)
 

Additional Inherited Members

- Protected Member Functions inherited from G4PreCompoundIon
virtual G4double GetBeta () const
 
virtual G4double ProbabilityDistributionFunction (G4double eKin, const G4Fragment &aFragment)
 
- Protected Member Functions inherited from G4PreCompoundFragment
G4double CrossSection (G4double ekin) const
 
- Protected Attributes inherited from G4VPreCompoundFragment
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
 

Detailed Description

Definition at line 42 of file G4PreCompoundDeuteron.hh.

Constructor & Destructor Documentation

G4PreCompoundDeuteron::G4PreCompoundDeuteron ( )

Definition at line 47 of file G4PreCompoundDeuteron.cc.

48  : G4PreCompoundIon(G4Deuteron::Deuteron(), &theDeuteronCoulombBarrier)
49 {}
static G4Deuteron * Deuteron()
Definition: G4Deuteron.cc:94
G4PreCompoundDeuteron::~G4PreCompoundDeuteron ( )

Definition at line 51 of file G4PreCompoundDeuteron.cc.

52 {}

Member Function Documentation

G4double G4PreCompoundDeuteron::CoalescenceFactor ( G4int  A) const
virtual

Implements G4PreCompoundIon.

Definition at line 59 of file G4PreCompoundDeuteron.cc.

60 {
61  return 16.0/G4double(A);
62 }
double A(double temperature)
double G4double
Definition: G4Types.hh:76
G4double G4PreCompoundDeuteron::FactorialFactor ( G4int  N,
G4int  P 
) const
virtual

Implements G4PreCompoundIon.

Definition at line 54 of file G4PreCompoundDeuteron.cc.

55 {
56  return G4double((N-1)*(N-2)*(P-1)*P)*0.5;
57 }
const int N
Definition: mixmax.h:43
static double P[]
double G4double
Definition: G4Types.hh:76
G4double G4PreCompoundDeuteron::GetAlpha ( ) const
virtual

Implements G4PreCompoundFragment.

Definition at line 74 of file G4PreCompoundDeuteron.cc.

75 {
76  G4double C = 0.0;
77  if (theFragZ >= 70)
78  {
79  C = 0.10;
80  }
81  else
82  {
83  C = ((((0.15417e-06*theFragZ) - 0.29875e-04)*theFragZ
84  + 0.21071e-02)*theFragZ - 0.66612e-01)*theFragZ + 0.98375;
85  }
86  return 1.0 + 0.5*C;
87 }
double C(double temp)
double G4double
Definition: G4Types.hh:76

Here is the call graph for this function:

G4double G4PreCompoundDeuteron::GetRj ( G4int  NumberParticles,
G4int  NumberCharged 
) const
virtual

Implements G4PreCompoundIon.

Definition at line 64 of file G4PreCompoundDeuteron.cc.

65 {
66  G4double rj = 0.0;
67  if(nCharged >=1 && (nParticles-nCharged) >=1) {
68  G4double denominator = G4double(nParticles*(nParticles-1));
69  rj = 2*nCharged*(nParticles-nCharged)/denominator;
70  }
71  return rj;
72 }
double G4double
Definition: G4Types.hh:76

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