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

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.

00064   : G4VLowEnergyModel(name), 
00065     lowEnergyLimit(1.*MeV),
00066     highEnergyLimit(100.*GeV),
00067     twoln10(2.*std::log(10.)),
00068     bg2lim(0.0169), 
00069     taulim(8.4146e-3)
00070 {;}

G4hBetheBlochModel::~G4hBetheBlochModel (  ) 

Definition at line 74 of file G4hBetheBlochModel.cc.

00075 {;}


Member Function Documentation

G4double G4hBetheBlochModel::HighEnergyLimit ( const G4ParticleDefinition aParticle  )  const [virtual]

Implements G4VLowEnergyModel.

Definition at line 124 of file G4hBetheBlochModel.cc.

00126 {
00127   return highEnergyLimit ;
00128 }

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

Implements G4VLowEnergyModel.

Definition at line 104 of file G4hBetheBlochModel.cc.

00107 {
00108   return highEnergyLimit ;
00109 }

G4bool G4hBetheBlochModel::IsInCharge ( const G4ParticleDefinition aParticle,
const G4Material material 
) const [virtual]

Implements G4VLowEnergyModel.

Definition at line 148 of file G4hBetheBlochModel.cc.

00150 {
00151   return true ;
00152 }

G4bool G4hBetheBlochModel::IsInCharge ( const G4DynamicParticle particle,
const G4Material material 
) const [virtual]

Implements G4VLowEnergyModel.

Definition at line 140 of file G4hBetheBlochModel.cc.

00142 {
00143   return true ;
00144 }

G4double G4hBetheBlochModel::LowEnergyLimit ( const G4ParticleDefinition aParticle  )  const [virtual]

Implements G4VLowEnergyModel.

Definition at line 132 of file G4hBetheBlochModel.cc.

00134 {
00135   return lowEnergyLimit ;
00136 }

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().

00116 {
00117   G4double taul = (material->GetIonisation()->GetTaul())*
00118                   (aParticle->GetPDGMass()) ;
00119   return taul ;
00120 }

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().

00095 {
00096   G4double particleMass = aParticle->GetPDGMass() ;
00097   G4double eloss  = BetheBlochFormula(material,kineticEnergy,particleMass) ;
00098 
00099   return eloss ;
00100 }

G4double G4hBetheBlochModel::TheValue ( const G4DynamicParticle particle,
const G4Material material 
) [virtual]

Implements G4VLowEnergyModel.

Definition at line 79 of file G4hBetheBlochModel.cc.

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

00081 {
00082   G4double energy = particle->GetKineticEnergy() ;
00083   G4double particleMass = particle->GetMass() ;
00084 
00085   G4double eloss  = BetheBlochFormula(material,energy,particleMass) ;
00086 
00087   return eloss ;
00088 }


The documentation for this class was generated from the following files:
Generated on Mon May 27 17:52:09 2013 for Geant4 by  doxygen 1.4.7