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

#include <G4hBetheBlochModel.hh>

Inheritance diagram for G4hBetheBlochModel:
G4VLowEnergyModel

Public Member Functions

 G4hBetheBlochModel (const G4String &name)
 
 ~G4hBetheBlochModel ()
 
G4double TheValue (const G4DynamicParticle *particle, const G4Material *material)
 
G4double TheValue (const G4ParticleDefinition *aParticle, const G4Material *material, G4double kineticEnergy)
 
G4double HighEnergyLimit (const G4ParticleDefinition *aParticle, const G4Material *material) const
 
G4double LowEnergyLimit (const G4ParticleDefinition *aParticle, const G4Material *material) const
 
G4double HighEnergyLimit (const G4ParticleDefinition *aParticle) const
 
G4double LowEnergyLimit (const G4ParticleDefinition *aParticle) const
 
G4bool IsInCharge (const G4DynamicParticle *particle, const G4Material *material) const
 
G4bool IsInCharge (const G4ParticleDefinition *aParticle, const G4Material *material) const
 
- Public Member Functions inherited from G4VLowEnergyModel
 G4VLowEnergyModel (const G4String &name)
 
virtual ~G4VLowEnergyModel ()
 

Detailed Description

Definition at line 59 of file G4hBetheBlochModel.hh.

Constructor & Destructor Documentation

G4hBetheBlochModel::G4hBetheBlochModel ( const G4String name)

Definition at line 63 of file G4hBetheBlochModel.cc.

64  : G4VLowEnergyModel(name),
65  lowEnergyLimit(1.*MeV),
66  highEnergyLimit(100.*GeV),
67  twoln10(2.*std::log(10.)),
68  bg2lim(0.0169),
69  taulim(8.4146e-3)
70 {;}
G4VLowEnergyModel(const G4String &name)
G4hBetheBlochModel::~G4hBetheBlochModel ( )

Definition at line 74 of file G4hBetheBlochModel.cc.

75 {;}

Member Function Documentation

G4double G4hBetheBlochModel::HighEnergyLimit ( const G4ParticleDefinition aParticle,
const G4Material material 
) const
virtual

Implements G4VLowEnergyModel.

Definition at line 104 of file G4hBetheBlochModel.cc.

107 {
108  return highEnergyLimit ;
109 }
G4double G4hBetheBlochModel::HighEnergyLimit ( const G4ParticleDefinition aParticle) const
virtual

Implements G4VLowEnergyModel.

Definition at line 124 of file G4hBetheBlochModel.cc.

126 {
127  return highEnergyLimit ;
128 }
G4bool G4hBetheBlochModel::IsInCharge ( const G4DynamicParticle particle,
const G4Material material 
) const
virtual

Implements G4VLowEnergyModel.

Definition at line 140 of file G4hBetheBlochModel.cc.

142 {
143  return true ;
144 }
G4bool G4hBetheBlochModel::IsInCharge ( const G4ParticleDefinition aParticle,
const G4Material material 
) const
virtual

Implements G4VLowEnergyModel.

Definition at line 148 of file G4hBetheBlochModel.cc.

150 {
151  return true ;
152 }
G4double G4hBetheBlochModel::LowEnergyLimit ( const G4ParticleDefinition aParticle,
const G4Material material 
) const
virtual

Implements G4VLowEnergyModel.

Definition at line 113 of file G4hBetheBlochModel.cc.

References G4Material::GetIonisation(), G4ParticleDefinition::GetPDGMass(), and G4IonisParamMat::GetTaul().

116 {
117  G4double taul = (material->GetIonisation()->GetTaul())*
118  (aParticle->GetPDGMass()) ;
119  return taul ;
120 }
G4IonisParamMat * GetIonisation() const
Definition: G4Material.hh:224
G4double GetTaul() const
G4double GetPDGMass() const
double G4double
Definition: G4Types.hh:76
G4double G4hBetheBlochModel::LowEnergyLimit ( const G4ParticleDefinition aParticle) const
virtual

Implements G4VLowEnergyModel.

Definition at line 132 of file G4hBetheBlochModel.cc.

134 {
135  return lowEnergyLimit ;
136 }
G4double G4hBetheBlochModel::TheValue ( const G4DynamicParticle particle,
const G4Material material 
)
virtual

Implements G4VLowEnergyModel.

Definition at line 79 of file G4hBetheBlochModel.cc.

References energy(), G4DynamicParticle::GetKineticEnergy(), and G4DynamicParticle::GetMass().

81 {
82  G4double energy = particle->GetKineticEnergy() ;
83  G4double particleMass = particle->GetMass() ;
84 
85  G4double eloss = BetheBlochFormula(material,energy,particleMass) ;
86 
87  return eloss ;
88 }
G4double GetKineticEnergy() const
double precision function energy(A, Z)
Definition: dpm25nuc6.f:4106
G4double GetMass() const
double G4double
Definition: G4Types.hh:76
G4double G4hBetheBlochModel::TheValue ( const G4ParticleDefinition aParticle,
const G4Material material,
G4double  kineticEnergy 
)
virtual

Implements G4VLowEnergyModel.

Definition at line 92 of file G4hBetheBlochModel.cc.

References G4ParticleDefinition::GetPDGMass().

95 {
96  G4double particleMass = aParticle->GetPDGMass() ;
97  G4double eloss = BetheBlochFormula(material,kineticEnergy,particleMass) ;
98 
99  return eloss ;
100 }
G4double GetPDGMass() const
double G4double
Definition: G4Types.hh:76

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