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

#include <G4HETCProton.hh>

Inheritance diagram for G4HETCProton:
G4HETCChargedFragment G4HETCFragment G4VPreCompoundFragment

Public Member Functions

 G4HETCProton ()
 
 ~G4HETCProton ()
 
- 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 41 of file G4HETCProton.hh.

Constructor & Destructor Documentation

G4HETCProton::G4HETCProton ( )

Definition at line 37 of file G4HETCProton.cc.

38  : G4HETCChargedFragment(G4Proton::Proton(), &theProtonCoulombBarrier)
39 {}
static G4Proton * Proton()
Definition: G4Proton.cc:93
G4HETCProton::~G4HETCProton ( )

Definition at line 41 of file G4HETCProton.cc.

42 {}

Member Function Documentation

G4double G4HETCProton::GetAlpha ( )
protectedvirtual

Implements G4HETCFragment.

Definition at line 44 of file G4HETCProton.cc.

References G4VPreCompoundFragment::GetRestZ().

45 {
46  G4int aZ = GetRestZ();
47  G4double C = 0.0;
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;
57 }
int G4int
Definition: G4Types.hh:78
G4int GetRestZ() const
double G4double
Definition: G4Types.hh:76
G4double G4HETCProton::GetBeta ( )
protectedvirtual

Implements G4HETCFragment.

Definition at line 59 of file G4HETCProton.cc.

References G4VPreCompoundFragment::GetCoulombBarrier().

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

Implements G4HETCFragment.

Definition at line 64 of file G4HETCProton.cc.

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

Implements G4HETCFragment.

Definition at line 70 of file G4HETCProton.cc.

References 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 
75  G4int TargetZ = GetRestZ();
76  G4int TargetA = GetRestA();
77  G4double r = G4double(TargetZ)/G4double(TargetA);
78 
79  G4int P = aFragment.GetNumberOfParticles();
80  G4int H = aFragment.GetNumberOfHoles();
81 
82  G4double result = 0.0;
83  if (P > 0)
84  {
85  result = (H*r + Pa)/P/r;
86  }
87 
88  return std::max(0.0,result);
89 }
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: