Import Geant4 0.1.0 source tree
This commit is contained in:
@@ -5,8 +5,8 @@
|
||||
// based on the Program) you indicate your acceptance of this statement,
|
||||
// and all its terms.
|
||||
//
|
||||
// $Id: G4ionIonisation.hh,v 2.1 1998/12/08 17:10:23 urban Exp $
|
||||
// GEANT4 tag $Name: geant4-00 $
|
||||
// $Id: G4ionIonisation.hh,v 1.2 1999/04/15 16:03:54 urban Exp $
|
||||
// GEANT4 tag $Name: geant4-00-01 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
@@ -28,16 +28,17 @@
|
||||
#include "G4ios.hh"
|
||||
#include "globals.hh"
|
||||
#include "Randomize.hh"
|
||||
#include "G4hEnergyLoss.hh"
|
||||
#include "G4VContinuousDiscreteProcess.hh"
|
||||
#include "globals.hh"
|
||||
#include "G4Track.hh"
|
||||
#include "G4Step.hh"
|
||||
#include "G4ParticleDefinition.hh"
|
||||
#include "G4Electron.hh"
|
||||
#include "G4PhysicsLogVector.hh"
|
||||
#include "G4PhysicsLinearVector.hh"
|
||||
|
||||
|
||||
class G4ionIonisation : public G4hEnergyLoss
|
||||
class G4ionIonisation : public G4VContinuousDiscreteProcess
|
||||
|
||||
{
|
||||
public:
|
||||
@@ -50,11 +51,19 @@ class G4ionIonisation : public G4hEnergyLoss
|
||||
|
||||
void PrintInfoDefinition();
|
||||
|
||||
G4double GetContinuousStepLimit(
|
||||
const G4Track& track,
|
||||
G4double previousStepSize,
|
||||
G4double currentMinimumStep,
|
||||
G4double& currentSafety) ;
|
||||
|
||||
G4double GetMeanFreePath(
|
||||
const G4Track& track,
|
||||
G4double previousStepSize,
|
||||
G4ForceCondition* condition ) ;
|
||||
|
||||
G4VParticleChange* AlongStepDoIt(const G4Track& track ,const G4Step& Step) ;
|
||||
|
||||
G4VParticleChange *PostStepDoIt(const G4Track& track,
|
||||
const G4Step& Step ) ;
|
||||
|
||||
@@ -65,6 +74,12 @@ class G4ionIonisation : public G4hEnergyLoss
|
||||
G4double KineticEnergy,
|
||||
G4double AtomicNumber);
|
||||
|
||||
G4double GetConstraints(const G4DynamicParticle *aParticle,
|
||||
G4Material *aMaterial);
|
||||
|
||||
G4double ComputedEdx(const G4DynamicParticle *aParticle,
|
||||
G4Material *aMaterial);
|
||||
|
||||
private:
|
||||
|
||||
// hide assignment operator
|
||||
@@ -74,6 +89,8 @@ class G4ionIonisation : public G4hEnergyLoss
|
||||
private:
|
||||
// private data members ...............................
|
||||
|
||||
G4double ParticleMass,Charge ;
|
||||
G4double dEdx,MinKineticEnergy ;
|
||||
G4double* DeltaCutInKineticEnergy ;
|
||||
G4double DeltaCutInKineticEnergyNow ;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user