Geant4 11.2.2
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4HETCHe3 Class Reference

#include <G4HETCHe3.hh>

+ Inheritance diagram for G4HETCHe3:

Public Member Functions

 G4HETCHe3 ()
 
 ~G4HETCHe3 () override=default
 
 G4HETCHe3 (const G4HETCHe3 &right)=delete
 
const G4HETCHe3operator= (const G4HETCHe3 &right)=delete
 
G4bool operator== (const G4HETCHe3 &right) const =delete
 
G4bool operator!= (const G4HETCHe3 &right) const =delete
 
- Public Member Functions inherited from G4HETCChargedFragment
 G4HETCChargedFragment (const G4ParticleDefinition *, G4VCoulombBarrier *)
 
 ~G4HETCChargedFragment () override=default
 
G4double SampleKineticEnergy (const G4Fragment &aFragment) override
 
 G4HETCChargedFragment (const G4HETCChargedFragment &right)=delete
 
const G4HETCChargedFragmentoperator= (const G4HETCChargedFragment &right)=delete
 
G4bool operator== (const G4HETCChargedFragment &right) const =delete
 
G4bool operator!= (const G4HETCChargedFragment &right) const =delete
 
- Public Member Functions inherited from G4HETCFragment
 G4HETCFragment (const G4ParticleDefinition *, G4VCoulombBarrier *p=nullptr)
 
 ~G4HETCFragment () override=default
 
G4double CalcEmissionProbability (const G4Fragment &aFragment) override
 
 G4HETCFragment (const G4HETCFragment &right)=delete
 
const G4HETCFragmentoperator= (const G4HETCFragment &right)=delete
 
G4bool operator== (const G4HETCFragment &right) const =delete
 
G4bool operator!= (const G4HETCFragment &right) const =delete
 
- Public Member Functions inherited from G4VPreCompoundFragment
 G4VPreCompoundFragment (const G4ParticleDefinition *, G4VCoulombBarrier *)
 
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 &lv)
 
void SetOPTxs (G4int opt)
 
void UseSICB (G4bool use)
 
 G4VPreCompoundFragment (const G4VPreCompoundFragment &right)=delete
 
const G4VPreCompoundFragmentoperator= (const G4VPreCompoundFragment &right)=delete
 
G4bool operator== (const G4VPreCompoundFragment &right) const =delete
 
G4bool operator!= (const G4VPreCompoundFragment &right) const =delete
 

Protected Member Functions

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

Additional Inherited Members

- Protected Attributes inherited from G4VPreCompoundFragment
G4NuclearLevelDatafNucData
 
G4DeexPrecoParameterstheParameters
 
G4Powg4calc
 
G4int theA
 
G4int theZ
 
G4int theResA {0}
 
G4int theResZ {0}
 
G4int theFragA {0}
 
G4int theFragZ {0}
 
G4double theResA13 {0.0}
 
G4double theBindingEnergy {0.0}
 
G4double theMinKinEnergy {0.0}
 
G4double theMaxKinEnergy {0.0}
 
G4double theResMass {0.0}
 
G4double theReducedMass {0.0}
 
G4double theMass
 
G4double theEmissionProbability {0.0}
 
G4double theCoulombBarrier {0.0}
 
G4int OPTxs {3}
 
G4bool useSICB {true}
 

Detailed Description

Definition at line 39 of file G4HETCHe3.hh.

Constructor & Destructor Documentation

◆ G4HETCHe3() [1/2]

G4HETCHe3::G4HETCHe3 ( )

Definition at line 37 of file G4HETCHe3.cc.

39{}
G4HETCChargedFragment(const G4ParticleDefinition *, G4VCoulombBarrier *)
static G4He3 * He3()
Definition G4He3.cc:90

◆ ~G4HETCHe3()

G4HETCHe3::~G4HETCHe3 ( )
overridedefault

◆ G4HETCHe3() [2/2]

G4HETCHe3::G4HETCHe3 ( const G4HETCHe3 & right)
delete

Member Function Documentation

◆ GetAlpha()

G4double G4HETCHe3::GetAlpha ( ) const
overrideprotectedvirtual

Implements G4VPreCompoundFragment.

Definition at line 41 of file G4HETCHe3.cc.

42{
43 G4double C = 0.0;
44 if (theFragZ <= 30)
45 {
46 C = 0.10;
47 }
48 else if (theFragZ <= 50)
49 {
50 C = 0.1 - (theFragZ-30)*0.001;
51 }
52 else if (theFragZ < 70)
53 {
54 C = 0.08 - (theFragZ-70)*0.001;
55 }
56 else
57 {
58 C = 0.06;
59 }
60 return 1.0 + C*(4.0/3.0);
61}
G4double C(G4double temp)
double G4double
Definition G4Types.hh:83

◆ GetSpinFactor()

G4double G4HETCHe3::GetSpinFactor ( ) const
overrideprotectedvirtual

Implements G4HETCFragment.

Definition at line 63 of file G4HETCHe3.cc.

64{
65 // 2s+1
66 return 2.0;
67}

◆ K()

G4double G4HETCHe3::K ( const G4Fragment & aFragment) const
overrideprotectedvirtual

Implements G4HETCFragment.

Definition at line 69 of file G4HETCHe3.cc.

70{
71 // Number of protons in emitted fragment
72 G4int Pa = theZ;
73 // Number of neutrons in emitted fragment
74 G4int Na = theA - Pa;
75
77
78 G4int P = aFragment.GetNumberOfParticles();
79 G4int H = aFragment.GetNumberOfHoles();
80
81 G4double result = 0.0;
82 if (P > 2)
83 {
84 result = 3.0/(P*(P-1.0)*(P-2.0)) *
85 (H*(H-1.0)*(H-2.0)*r*r*(r-1.0) +
86 H*(H-1.0)*(2.0*Na*r*(1.0-r)+Pa*r*r) +
87 H*(Pa*(Pa-1.0)*(r-1.0)+2.0*Na*Pa*r) +
88 Pa*Na*(Pa-1.0));
89
90 result /= 3.0*r*r*(1.0 - r);
91 }
92 return std::max(0.0,result);
93}
int G4int
Definition G4Types.hh:85
G4int GetNumberOfParticles() const
G4int GetNumberOfHoles() const

◆ operator!=()

G4bool G4HETCHe3::operator!= ( const G4HETCHe3 & right) const
delete

◆ operator=()

const G4HETCHe3 & G4HETCHe3::operator= ( const G4HETCHe3 & right)
delete

◆ operator==()

G4bool G4HETCHe3::operator== ( const G4HETCHe3 & right) const
delete

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