218 lines
7.9 KiB
C++
218 lines
7.9 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: G4VhEnergyLoss.hh,v 1.17 2003/01/22 14:03:53 vnivanch Exp $
|
|
// GEANT4 tag $Name: geant4-05-02-patch-01 $
|
|
//
|
|
// ------------- G4VhEnergyLoss physics process --------------------------------
|
|
// by Laszlo Urban, 30 May 1997
|
|
//
|
|
// It calculates the continuous energy loss for charged hadrons.
|
|
// Processes giving contribution to the continuous loss :
|
|
// ionisation (= cont.ion.loss + delta ray production)
|
|
// can be added more easily ..........
|
|
// This class creates static proton/antiproton dE/dx and range tables ,
|
|
// which tables can be used by other processes.
|
|
// The energy loss for other charged hadrons is calculated from the p/pbar
|
|
// tables with scaled kinetic energy.
|
|
//
|
|
// -----------------------------------------------------------------------------
|
|
// 7/10/98 some bugs fixed + some cleanup , L.Urban
|
|
// 22/10/98 cleanup , L.Urban
|
|
// 02/02/99 several bugs fixed, L.Urban
|
|
// 10/02/00 modifications , new e.m. structure, L.Urban
|
|
// 10/09/01 bugfix in subcutoff delta generation, L.Urban
|
|
// 29-10-01 all static functions no more inlined (mma)
|
|
// 08-11-01 BuildDEDXTable not static,Charge local variable, L.Urban
|
|
// 15-01-03 Migrade to cut per region (V.Ivanchenko)
|
|
//
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
#ifndef G4VhEnergyLoss_h
|
|
#define G4VhEnergyLoss_h 1
|
|
|
|
#include "G4ios.hh"
|
|
#include "globals.hh"
|
|
#include "Randomize.hh"
|
|
#include "G4VEnergyLoss.hh"
|
|
#include "G4Material.hh"
|
|
#include "G4Element.hh"
|
|
#include "G4Proton.hh"
|
|
#include "G4AntiProton.hh"
|
|
#include "G4Electron.hh"
|
|
#include "G4VParticleChange.hh"
|
|
#include "G4Track.hh"
|
|
#include "G4Step.hh"
|
|
#include "G4PhysicsLogVector.hh"
|
|
#include "G4PhysicsLinearVector.hh"
|
|
#include "G4MaterialCutsCouple.hh"
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
class G4VhEnergyLoss : public G4VEnergyLoss
|
|
|
|
{
|
|
public:
|
|
|
|
G4VhEnergyLoss(const G4String& );
|
|
|
|
virtual ~G4VhEnergyLoss();
|
|
|
|
G4bool IsApplicable(const G4ParticleDefinition&);
|
|
|
|
void BuildDEDXTable(const G4ParticleDefinition& aParticleType);
|
|
|
|
G4double GetContinuousStepLimit(const G4Track& track,
|
|
G4double previousStepSize,
|
|
G4double currentMinimumStep,
|
|
G4double& currentSafety);
|
|
|
|
G4VParticleChange* AlongStepDoIt(const G4Track& track, const G4Step& Step);
|
|
|
|
virtual G4double GetMeanFreePath(const G4Track& track,
|
|
G4double previousStepSize,
|
|
G4ForceCondition* condition) = 0;
|
|
|
|
virtual G4VParticleChange* PostStepDoIt(const G4Track& track,
|
|
const G4Step& Step) = 0;
|
|
|
|
private:
|
|
|
|
G4double GetConstraints(const G4DynamicParticle *aParticle,
|
|
const G4MaterialCutsCouple *couple);
|
|
|
|
G4double EnergyLossFluctuation(const G4DynamicParticle *aParticle,
|
|
const G4MaterialCutsCouple *couple,
|
|
G4double ChargeSquare,
|
|
G4double MeanLoss,
|
|
G4double Step);
|
|
|
|
//hide assignment operator
|
|
G4VhEnergyLoss(G4VhEnergyLoss &);
|
|
G4VhEnergyLoss & operator=(const G4VhEnergyLoss &right);
|
|
|
|
protected:
|
|
|
|
virtual G4double SecondaryEnergyThreshold(size_t index) = 0;
|
|
|
|
G4PhysicsTable* theLossTable;
|
|
|
|
G4double MinKineticEnergy;
|
|
|
|
private:
|
|
|
|
static G4PhysicsTable* theDEDXTable;
|
|
|
|
G4double fdEdx; // computed in GetContraints
|
|
G4double fRangeNow; // computed in GetContraints
|
|
G4double linLossLimit;
|
|
|
|
//
|
|
// static part of the cc: // With description
|
|
//
|
|
public:
|
|
|
|
static void SetNbOfProcesses(G4int nb);
|
|
// Sets number of processes giving contribution to the energy loss
|
|
|
|
static void PlusNbOfProcesses();
|
|
// Increases number of processes giving contribution to the energy loss
|
|
|
|
static void MinusNbOfProcesses();
|
|
// Decreases number of processes giving contribution to the energy loss
|
|
|
|
static G4int GetNbOfProcesses();
|
|
// Gets number of processes giving contribution to the energy loss
|
|
// ( default value = 1)
|
|
|
|
|
|
static void SetLowerBoundEloss(G4double val);
|
|
static void SetUpperBoundEloss(G4double val);
|
|
static void SetNbinEloss(G4int nb);
|
|
|
|
static G4double GetLowerBoundEloss();
|
|
static G4double GetUpperBoundEloss();
|
|
static G4int GetNbinEloss();
|
|
|
|
protected:
|
|
|
|
static G4PhysicsTable* theDEDXpTable;
|
|
static G4PhysicsTable* theDEDXpbarTable;
|
|
static G4PhysicsTable* theRangepTable;
|
|
static G4PhysicsTable* theRangepbarTable;
|
|
|
|
//inverse of the range tables
|
|
static G4PhysicsTable* theInverseRangepTable;
|
|
static G4PhysicsTable* theInverseRangepbarTable;
|
|
|
|
//lab and proper time tables
|
|
static G4PhysicsTable* theLabTimepTable;
|
|
static G4PhysicsTable* theLabTimepbarTable;
|
|
|
|
static G4PhysicsTable* theProperTimepTable;
|
|
static G4PhysicsTable* theProperTimepbarTable;
|
|
|
|
// processes inherited from G4VhEnergyLoss
|
|
// register themselves in the static array Recorder
|
|
static G4int NbOfProcesses;
|
|
static G4PhysicsTable** RecorderOfpProcess;
|
|
static G4PhysicsTable** RecorderOfpbarProcess;
|
|
static G4int CounterOfpProcess;
|
|
static G4int CounterOfpbarProcess;
|
|
|
|
|
|
private:
|
|
|
|
static G4int NbinEloss; // number of bins in table,
|
|
// calculated in BuildPhysicTable
|
|
static G4double LowerBoundEloss;
|
|
static G4double UpperBoundEloss;
|
|
static G4double RTable,LOGRTable; // LOGRTable=log(UpperBoundEloss-
|
|
// LowerBoundEloss)/NbinEloss
|
|
// RTable = exp(LOGRTable)
|
|
|
|
static G4PhysicsTable** RecorderOfProcess;
|
|
static G4int CounterOfProcess;
|
|
|
|
|
|
static G4PhysicsTable* thepRangeCoeffATable;
|
|
static G4PhysicsTable* thepRangeCoeffBTable;
|
|
static G4PhysicsTable* thepRangeCoeffCTable;
|
|
static G4PhysicsTable* thepbarRangeCoeffATable;
|
|
static G4PhysicsTable* thepbarRangeCoeffBTable;
|
|
static G4PhysicsTable* thepbarRangeCoeffCTable;
|
|
|
|
static G4double cN; // coeff to compute nb of deltas
|
|
static G4int Ndeltamax; // upper limit for nb of subcutoff
|
|
// delta rays in one step
|
|
|
|
};
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
#include "G4VhEnergyLoss.icc"
|
|
|
|
#endif
|
|
|