Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Protected Member Functions
G4HETCDeuteron Class Reference

#include <G4HETCDeuteron.hh>

Inheritance diagram for G4HETCDeuteron:
G4HETCChargedFragment G4HETCFragment G4VPreCompoundFragment

Public Member Functions

 G4HETCDeuteron ()
 
 ~G4HETCDeuteron ()
 
- Public Member Functions inherited from G4HETCChargedFragment
 G4HETCChargedFragment (const G4ParticleDefinition *, G4VCoulombBarrier *aCoulombBarrier)
 
virtual ~G4HETCChargedFragment ()
 
virtual G4double GetKineticEnergy (const G4Fragment &aFragment)
 
- Public Member Functions inherited from G4HETCFragment
 G4HETCFragment (const G4ParticleDefinition *, G4VCoulombBarrier *aCoulombBarrier)
 
virtual ~G4HETCFragment ()
 
G4double CalcEmissionProbability (const G4Fragment &aFragment)
 
- Public Member Functions inherited from G4VPreCompoundFragment
 G4VPreCompoundFragment (const G4ParticleDefinition *, G4VCoulombBarrier *aCoulombBarrier)
 
virtual ~G4VPreCompoundFragment ()
 
void Initialize (const G4Fragment &aFragment)
 
G4ReactionProductGetReactionProduct () const
 
G4int GetA () const
 
G4int GetZ () const
 
G4int GetRestA () const
 
G4int GetRestZ () const
 
G4double ResidualA13 () const
 
G4double GetCoulombBarrier () const
 
G4double GetBindingEnergy () const
 
G4double GetMaximalKineticEnergy () const
 
G4double GetEnergyThreshold () const
 
G4double GetEmissionProbability () const
 
G4double GetNuclearMass () const
 
G4double GetRestNuclearMass () const
 
G4double GetReducedMass () const
 
const G4LorentzVectorGetMomentum () const
 
void SetMomentum (const G4LorentzVector &value)
 
const G4String GetName () const
 
void SetOPTxs (G4int)
 
void UseSICB (G4bool)
 

Protected Member Functions

virtual G4double GetAlpha ()
 
virtual G4double GetBeta ()
 
virtual G4double GetSpinFactor ()
 
virtual G4double K (const G4Fragment &aFragment)
 
- Protected Member Functions inherited from G4HETCFragment
G4double BetaRand (const G4int N, const G4int L) const
 
- Protected Member Functions inherited from G4VPreCompoundFragment
G4bool IsItPossible (const G4Fragment &aFragment) const
 

Additional Inherited Members

- Protected Attributes inherited from G4VPreCompoundFragment
G4PreCompoundParameterstheParameters
 
G4Powg4pow
 
G4double theEmissionProbability
 
G4double theCoulombBarrier
 
G4int OPTxs
 
G4bool useSICB
 

Detailed Description

Definition at line 42 of file G4HETCDeuteron.hh.

Constructor & Destructor Documentation

G4HETCDeuteron::G4HETCDeuteron ( )

Definition at line 37 of file G4HETCDeuteron.cc.

38  : G4HETCChargedFragment(G4Deuteron::Deuteron(), &theDeuteronCoulombBarrier)
39 {}
static G4Deuteron * Deuteron()
Definition: G4Deuteron.cc:94
G4HETCDeuteron::~G4HETCDeuteron ( )

Definition at line 41 of file G4HETCDeuteron.cc.

42 {}

Member Function Documentation

G4double G4HETCDeuteron::GetAlpha ( )
protectedvirtual

Implements G4HETCFragment.

Definition at line 44 of file G4HETCDeuteron.cc.

References G4VPreCompoundFragment::GetRestZ(), and G4VPreCompoundFragment::GetZ().

45 {
46  G4double C = 0.0;
47  G4int aZ = GetZ() + GetRestZ();
48  if (aZ >= 70)
49  {
50  C = 0.10;
51  }
52  else
53  {
54  C = ((((0.15417e-06*aZ) - 0.29875e-04)*aZ + 0.21071e-02)*aZ - 0.66612e-01)*aZ + 0.98375;
55  }
56  return 1.0 + C/2.0;
57 }
int G4int
Definition: G4Types.hh:78
G4int GetRestZ() const
G4int GetZ() const
double G4double
Definition: G4Types.hh:76
G4double G4HETCDeuteron::GetBeta ( )
protectedvirtual

Implements G4HETCFragment.

Definition at line 59 of file G4HETCDeuteron.cc.

References G4VPreCompoundFragment::GetCoulombBarrier().

60 {
61  return -GetCoulombBarrier();
62 }
G4double GetCoulombBarrier() const
G4double G4HETCDeuteron::GetSpinFactor ( )
protectedvirtual

Implements G4HETCFragment.

Definition at line 64 of file G4HETCDeuteron.cc.

65 {
66  // 2s+1
67  return 3.0;
68 }
G4double G4HETCDeuteron::K ( const G4Fragment aFragment)
protectedvirtual

Implements G4HETCFragment.

Definition at line 70 of file G4HETCDeuteron.cc.

References G4VPreCompoundFragment::GetA(), G4Fragment::GetNumberOfHoles(), G4Fragment::GetNumberOfParticles(), G4VPreCompoundFragment::GetRestA(), G4VPreCompoundFragment::GetRestZ(), G4VPreCompoundFragment::GetZ(), and G4INCL::Math::max().

71 {
72  // Number of protons in emitted fragment
73  G4int Pa = GetZ();
74  // Number of neutrons in emitted fragment
75  G4int Na = GetA() - Pa;
76 
77  G4int TargetZ = GetRestZ();
78  G4int TargetA = GetRestA();
79  G4double r = G4double(TargetZ)/G4double(TargetA);
80 
81  G4int P = aFragment.GetNumberOfParticles();
82  G4int H = aFragment.GetNumberOfHoles();
83 
84  G4double result = 0.0;
85  if (P > 1)
86  {
87  result = 2.0* (H*(H-1.0)*r*(r-1.0)+H*(Na*r+Pa*(1.0-r)) + Pa*Na)/(P*(P-1.0));
88 
89  result /= r*(1.0 - r);
90  }
91  return std::max(0.0,result);
92 }
G4int GetA() const
G4int GetNumberOfParticles() const
Definition: G4Fragment.hh:325
int G4int
Definition: G4Types.hh:78
G4int GetNumberOfHoles() const
Definition: G4Fragment.hh:345
G4int GetRestZ() const
T max(const T t1, const T t2)
brief Return the largest of the two arguments
G4int GetRestA() const
G4int GetZ() const
double G4double
Definition: G4Types.hh:76

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