Geant4 10.7.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4PreCompoundIon Class Referenceabstract

#include <G4PreCompoundIon.hh>

+ Inheritance diagram for G4PreCompoundIon:

Public Member Functions

 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)
 
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 GetRj (G4int NumberParticles, G4int NumberCharged) const =0
 
virtual G4double GetBeta () const
 
virtual G4double ProbabilityDistributionFunction (G4double eKin, const G4Fragment &aFragment)
 
virtual G4double FactorialFactor (G4int N, G4int P) const =0
 
virtual G4double CoalescenceFactor (G4int A) const =0
 
- Protected Member Functions inherited from G4PreCompoundFragment
virtual G4double GetAlpha () const =0
 
virtual G4double GetBeta () const =0
 
G4double CrossSection (G4double ekin) const
 
virtual G4double ProbabilityDistributionFunction (G4double K, const G4Fragment &aFragment)=0
 
virtual G4double GetAlpha () const =0
 
virtual G4double GetBeta () const =0
 

Additional Inherited Members

- Protected Attributes inherited from G4VPreCompoundFragment
G4NuclearLevelDatafNucData
 
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 41 of file G4PreCompoundIon.hh.

Constructor & Destructor Documentation

◆ G4PreCompoundIon()

G4PreCompoundIon::G4PreCompoundIon ( const G4ParticleDefinition part,
G4VCoulombBarrier aCoulombBarrier 
)

Definition at line 47 of file G4PreCompoundIon.cc.

50 : G4PreCompoundFragment(part,aCoulombBarrier)
51{
53 fact = 0.75*CLHEP::millibarn/(CLHEP::pi*r0*r0*r0);
54}
double G4double
Definition: G4Types.hh:83
G4DeexPrecoParameters * theParameters

◆ ~G4PreCompoundIon()

G4PreCompoundIon::~G4PreCompoundIon ( )
virtual

Definition at line 56 of file G4PreCompoundIon.cc.

57{}

Member Function Documentation

◆ CoalescenceFactor()

virtual G4double G4PreCompoundIon::CoalescenceFactor ( G4int  A) const
protectedpure virtual

◆ FactorialFactor()

virtual G4double G4PreCompoundIon::FactorialFactor ( G4int  N,
G4int  P 
) const
protectedpure virtual

◆ GetBeta()

G4double G4PreCompoundIon::GetBeta ( ) const
protectedvirtual

Implements G4PreCompoundFragment.

Definition at line 101 of file G4PreCompoundIon.cc.

102{
103 return -theCoulombBarrier;
104}

◆ GetRj()

virtual G4double G4PreCompoundIon::GetRj ( G4int  NumberParticles,
G4int  NumberCharged 
) const
protectedpure virtual

◆ ProbabilityDistributionFunction()

G4double G4PreCompoundIon::ProbabilityDistributionFunction ( G4double  eKin,
const G4Fragment aFragment 
)
protectedvirtual

Implements G4PreCompoundFragment.

Definition at line 59 of file G4PreCompoundIon.cc.

62{
63 G4double efinal = eKin + theBindingEnergy;
64 if(efinal <= 0.0 ) { return 0.0; }
65
66 G4double U = aFragment.GetExcitationEnergy();
67 G4int P = aFragment.GetNumberOfParticles();
68 G4int H = aFragment.GetNumberOfHoles();
69 G4int A = GetA();
70 G4int N = P + H;
71
72 static const G4double sixoverpi2 = 6.0/CLHEP::pi2;
74 G4double g1 = sixoverpi2*fNucData->GetLevelDensity(theResZ, theResA, 0.0);
75
76 G4double gj = g1;
77
78 G4double A0 = G4double(P*P+H*H+P-3*H)/(4.0*g0);
79 G4double A1 = std::max(0.0,(A0*g0 + A*(A-2*P-1)*0.25)/g1);
80
81 G4double E0 = U - A0;
82 if (E0 <= 0.0) { return 0.0; }
83
84 G4double E1 = std::max(0.0,theMaxKinEnergy - eKin - A1);
85
86 G4double Aj = A*(A+1)/(4.0*gj);
87 G4double Ej = std::max(0.0,efinal - Aj);
88
89 G4double rj = GetRj(P, aFragment.GetNumberOfCharged());
90 G4double xs = CrossSection(eKin);
91
92 G4double pA = fact*eKin*xs*rj
94 * std::sqrt(2.0/(theReducedMass*efinal))
95 * g4calc->powN(g1*E1/(g0*E0), N-A-1)
96 * g4calc->powN(gj*Ej/(g0*E0), A-1)*gj*g1/(g0*g0*E0*theResA);
97
98 return pA;
99}
double A(double temperature)
int G4int
Definition: G4Types.hh:85
G4int GetNumberOfParticles() const
Definition: G4Fragment.hh:337
G4int GetNumberOfHoles() const
Definition: G4Fragment.hh:357
G4double GetExcitationEnergy() const
Definition: G4Fragment.hh:275
G4int GetNumberOfCharged() const
Definition: G4Fragment.hh:342
G4double GetLevelDensity(G4int Z, G4int A, G4double U)
G4double powN(G4double x, G4int n) const
Definition: G4Pow.cc:166
G4double CrossSection(G4double ekin) const
virtual G4double FactorialFactor(G4int N, G4int P) const =0
virtual G4double CoalescenceFactor(G4int A) const =0
virtual G4double GetRj(G4int NumberParticles, G4int NumberCharged) const =0
G4NuclearLevelData * fNucData

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