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

#include <G4HETCNeutron.hh>

+ Inheritance diagram for G4HETCNeutron:

Public Member Functions

 G4HETCNeutron ()
 
 ~G4HETCNeutron ()
 
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)
 
virtual G4double CalcEmissionProbability (const G4Fragment &aFragment)=0
 
virtual G4double GetKineticEnergy (const G4Fragment &aFragment)=0
 
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
virtual G4double K (const G4Fragment &aFragment)=0
 
virtual G4double GetSpinFactor ()=0
 
virtual G4double GetAlpha ()=0
 
virtual G4double GetBeta ()=0
 
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 41 of file G4HETCNeutron.hh.

Constructor & Destructor Documentation

◆ G4HETCNeutron()

G4HETCNeutron::G4HETCNeutron ( )

Definition at line 39 of file G4HETCNeutron.cc.

40 : G4HETCFragment(G4Neutron::Neutron(), &theNeutronCoulombBarrier)
41{}
static G4Neutron * Neutron()
Definition: G4Neutron.cc:104

◆ ~G4HETCNeutron()

G4HETCNeutron::~G4HETCNeutron ( )

Definition at line 43 of file G4HETCNeutron.cc.

44{}

Member Function Documentation

◆ GetAlpha()

G4double G4HETCNeutron::GetAlpha ( )
protectedvirtual

Implements G4HETCFragment.

Definition at line 46 of file G4HETCNeutron.cc.

47{
48 return 0.76+2.2/g4pow->Z13(GetRestA());
49}
G4double Z13(G4int Z)
Definition: G4Pow.hh:110
G4int GetRestA() const

Referenced by GetBeta().

◆ GetBeta()

G4double G4HETCNeutron::GetBeta ( )
protectedvirtual

Implements G4HETCFragment.

Definition at line 51 of file G4HETCNeutron.cc.

52{
53 return (2.12/g4pow->Z23(GetRestA())-0.05)*MeV/GetAlpha();
54}
virtual G4double GetAlpha()
G4double Z23(G4int Z)
Definition: G4Pow.hh:134

Referenced by GetKineticEnergy().

◆ GetKineticEnergy()

G4double G4HETCNeutron::GetKineticEnergy ( const G4Fragment aFragment)
virtual

Implements G4VPreCompoundFragment.

Definition at line 85 of file G4HETCNeutron.cc.

86{
87 G4int H = aFragment.GetNumberOfHoles();
88 G4int Pb = aFragment.GetNumberOfParticles();
89 G4int Nb = Pb + H;
90 G4double g0 = (6.0/pi2)*aFragment.GetA_asInt()*theParameters->GetLevelDensity();
91
92 G4double Ab = std::max(0.0,G4double(Pb*Pb+H*H+Pb-3*H)/(4.0*g0));
94
95 G4double cut = GetBeta() / (GetBeta()+Emax/G4double(Nb+1));
96 G4double x(0.0);
97 if (G4UniformRand() <= cut)
98 {
99 x = BetaRand(Nb,1);
100 }
101 else
102 {
103 x = BetaRand(Nb,2);
104 }
105
106 return Emax * (1.0 - x);
107}
double G4double
Definition: G4Types.hh:64
int G4int
Definition: G4Types.hh:66
#define G4UniformRand()
Definition: Randomize.hh:53
G4int GetNumberOfParticles() const
Definition: G4Fragment.hh:305
G4int GetNumberOfHoles() const
Definition: G4Fragment.hh:325
G4int GetA_asInt() const
Definition: G4Fragment.hh:218
G4double BetaRand(const G4int N, const G4int L) const
virtual G4double GetBeta()
G4PreCompoundParameters * theParameters
G4double GetMaximalKineticEnergy() const

◆ GetSpinFactor()

G4double G4HETCNeutron::GetSpinFactor ( )
protectedvirtual

Implements G4HETCFragment.

Definition at line 56 of file G4HETCNeutron.cc.

57{
58 // (2s+1)
59 return 2.0;
60}

◆ K()

G4double G4HETCNeutron::K ( const G4Fragment aFragment)
protectedvirtual

Implements G4HETCFragment.

Definition at line 62 of file G4HETCNeutron.cc.

63{
64 // Number of protons in emitted fragment
65 G4int Pa = GetZ();
66 // Number of neutrons in emitted fragment
67 G4int Na = GetA() - Pa;
68
69 G4int TargetZ = GetRestZ();
70 G4int TargetA = GetRestA();
71 G4double r = G4double(TargetZ)/G4double(TargetA);
72
73 G4int P = aFragment.GetNumberOfParticles();
74 G4int H = aFragment.GetNumberOfHoles();
75
76 G4double result = 0.0;
77 if (P > 0)
78 {
79 result = (H + Na/(1.0-r))/P;
80 }
81
82 return std::max(0.0,result);
83}
G4int GetRestZ() const

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