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

#include <G4PreCompoundProton.hh>

+ Inheritance diagram for G4PreCompoundProton:

Public Member Functions

 G4PreCompoundProton ()
 
 ~G4PreCompoundProton () override=default
 
 G4PreCompoundProton (const G4PreCompoundProton &right)=delete
 
const G4PreCompoundProtonoperator= (const G4PreCompoundProton &right)=delete
 
G4bool operator== (const G4PreCompoundProton &right) const =delete
 
G4bool operator!= (const G4PreCompoundProton &right) const =delete
 
- Public Member Functions inherited from G4PreCompoundNucleon
 G4PreCompoundNucleon (const G4ParticleDefinition *, G4VCoulombBarrier *p=nullptr)
 
 ~G4PreCompoundNucleon () override=default
 
 G4PreCompoundNucleon (const G4PreCompoundNucleon &right)=delete
 
const G4PreCompoundNucleonoperator= (const G4PreCompoundNucleon &right)=delete
 
G4bool operator== (const G4PreCompoundNucleon &right) const =delete
 
G4bool operator!= (const G4PreCompoundNucleon &right) const =delete
 
- Public Member Functions inherited from G4PreCompoundFragment
 G4PreCompoundFragment (const G4ParticleDefinition *, G4VCoulombBarrier *aCoulombBarrier)
 
 ~G4PreCompoundFragment () override=default
 
G4double CalcEmissionProbability (const G4Fragment &aFragment) override
 
G4double SampleKineticEnergy (const G4Fragment &aFragment) override
 
 G4PreCompoundFragment (const G4PreCompoundFragment &right)=delete
 
const G4PreCompoundFragmentoperator= (const G4PreCompoundFragment &right)=delete
 
G4bool operator== (const G4PreCompoundFragment &right) const =delete
 
G4bool operator!= (const G4PreCompoundFragment &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 GetRj (G4int NumberParticles, G4int NumberCharged) const override
 
G4double GetAlpha () const override
 
- Protected Member Functions inherited from G4PreCompoundNucleon
G4double ProbabilityDistributionFunction (G4double eKin, const G4Fragment &) override
 
- Protected Member Functions inherited from G4PreCompoundFragment
G4double CrossSection (G4double ekin) 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 40 of file G4PreCompoundProton.hh.

Constructor & Destructor Documentation

◆ G4PreCompoundProton() [1/2]

G4PreCompoundProton::G4PreCompoundProton ( )

Definition at line 48 of file G4PreCompoundProton.cc.

50{}
G4PreCompoundNucleon(const G4ParticleDefinition *, G4VCoulombBarrier *p=nullptr)
static G4Proton * Proton()
Definition G4Proton.cc:90

◆ ~G4PreCompoundProton()

G4PreCompoundProton::~G4PreCompoundProton ( )
overridedefault

◆ G4PreCompoundProton() [2/2]

G4PreCompoundProton::G4PreCompoundProton ( const G4PreCompoundProton & right)
delete

Member Function Documentation

◆ GetAlpha()

G4double G4PreCompoundProton::GetAlpha ( ) const
overrideprotectedvirtual

Implements G4VPreCompoundFragment.

Definition at line 61 of file G4PreCompoundProton.cc.

62{
63 G4double C = 0.0;
64 if (theResZ >= 70)
65 {
66 C = 0.10;
67 }
68 else
69 {
70 C = ((((0.15417e-06*theResZ) - 0.29875e-04)*theResZ
71 + 0.21071e-02)*theResZ - 0.66612e-01)*theResZ + 0.98375;
72 }
73 return 1.0 + C;
74}
G4double C(G4double temp)
double G4double
Definition G4Types.hh:83

◆ GetRj()

G4double G4PreCompoundProton::GetRj ( G4int NumberParticles,
G4int NumberCharged ) const
overrideprotectedvirtual

Implements G4PreCompoundNucleon.

Definition at line 52 of file G4PreCompoundProton.cc.

53{
54 G4double rj = 0.0;
55 if(nParticles > 0) {
56 rj = static_cast<G4double>(nCharged)/static_cast<G4double>(nParticles);
57 }
58 return rj;
59}

◆ operator!=()

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

◆ operator=()

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

◆ operator==()

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

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