160 lines
4.6 KiB
C++
160 lines
4.6 KiB
C++
// 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: G4MultipleScattering.hh,v 1.6.6.1 1999/12/07 20:50:50 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-00 $
|
|
//
|
|
// $Id:
|
|
// --------------------------------------------------------------
|
|
// GEANT 4 class header file
|
|
//
|
|
// For information related to this code contact:
|
|
// CERN, IT Division, ASD Group
|
|
// History: based on object model of
|
|
// 2nd December 1995, G.Cosmo
|
|
// --------- G4MultipleScattering physics process --------
|
|
// by Laszlo Urban, October 1997
|
|
// **************************************************************
|
|
// UNIVERSAL: for arbitrary single charged particle
|
|
// 09/12/98: charge can be != +- 1 !!!! L.Urban
|
|
// 30/09/99: nuclear size effect correction L.Urban
|
|
// --------------------------------------------------------------
|
|
// 22/10/98: cleanup , L.Urban
|
|
|
|
#ifndef G4MultipleScattering_h
|
|
#define G4MultipleScattering_h 1
|
|
|
|
#include "G4ios.hh"
|
|
#include "globals.hh"
|
|
#include "Randomize.hh"
|
|
#include "G4EnergyLossTables.hh"
|
|
#include "G4Electron.hh"
|
|
#include "G4Positron.hh"
|
|
#include "G4MuonPlus.hh"
|
|
#include "G4PionPlus.hh"
|
|
#include "G4Proton.hh"
|
|
#include "G4PhysicsLogVector.hh"
|
|
#include "G4GPILSelection.hh"
|
|
#include "G4VContinuousDiscreteProcess.hh"
|
|
#include "G4Step.hh"
|
|
#include "G4Track.hh"
|
|
#include "G4Material.hh"
|
|
#include "G4ParticleChangeForMSC.hh"
|
|
#include "G4UnitsTable.hh"
|
|
|
|
class G4MultipleScattering : public G4VContinuousDiscreteProcess
|
|
|
|
{
|
|
public:
|
|
|
|
G4MultipleScattering(const G4String& processName="msc") ;
|
|
|
|
~G4MultipleScattering() ;
|
|
|
|
G4bool IsApplicable ( const G4ParticleDefinition& ) ;
|
|
|
|
void SetPhysicsTableBining(G4double lowE,G4double highE,G4int nBins);
|
|
|
|
void BuildPhysicsTable(const G4ParticleDefinition& aParticleType) ;
|
|
|
|
void PrintInfoDefinition();
|
|
|
|
G4double GetContinuousStepLimit(const G4Track& aTrack,
|
|
G4double previousStepSize,
|
|
G4double currentMinimumStep,
|
|
G4double& currentSafety) ;
|
|
|
|
G4double GetMeanFreePath(const G4Track& aTrack,
|
|
G4double previousStepSize,
|
|
G4ForceCondition* condition) ;
|
|
|
|
G4VParticleChange* AlongStepDoIt(const G4Track& aTrack,const G4Step& aStep);
|
|
|
|
G4VParticleChange* PostStepDoIt(const G4Track& aTrack,const G4Step& aStep) ;
|
|
|
|
G4double GetLambda(G4double KineticEnergy,G4Material* material);
|
|
|
|
void SetScatteringParameter(G4double value)
|
|
{ scatteringparameter = value ; } ;
|
|
void SetTuning(G4double value) { tuning = value ; };
|
|
void SetCpar (G4double value) { cpar = value ; };
|
|
void SetTlimitmsc (G4double value) { Tlimit = value ; };
|
|
void SetLateralDisplacementFlag(G4bool flag) {fLatDisplFlag = flag;};
|
|
|
|
void SetNuclCorrPar(G4double val) { NuclCorrPar = val; } ;
|
|
void SetFactPar(G4double val) { FactPar = val ; } ;
|
|
|
|
protected:
|
|
|
|
G4double ComputeTransportCrossSection(
|
|
const G4ParticleDefinition& aParticleType,
|
|
G4double KineticEnergy,
|
|
G4double AtomicNumber,
|
|
G4double AtomicWeight) ;
|
|
|
|
G4double TrueToGeomTransformation(const G4DynamicParticle* aParticle,
|
|
G4Material* aMaterial,
|
|
G4double truePathLength) ;
|
|
|
|
private:
|
|
|
|
// hide assignment operator as private
|
|
G4MultipleScattering & operator = (const G4MultipleScattering &right) ;
|
|
G4MultipleScattering ( const G4MultipleScattering &) ;
|
|
|
|
|
|
// data members ...................................................
|
|
private:
|
|
|
|
G4PhysicsTable* theTransportMeanFreePathTable ;
|
|
|
|
G4double fTransportMeanFreePath ;
|
|
G4double range,alpha1 ;
|
|
G4int stepFlag ;
|
|
|
|
G4double biglambda ;
|
|
|
|
G4double LowestKineticEnergy ;
|
|
G4double HighestKineticEnergy ;
|
|
G4int TotBin ;
|
|
|
|
const G4Electron* theElectron ;
|
|
const G4Positron* thePositron ;
|
|
|
|
G4Material* lastMaterial;
|
|
G4double lastKineticEnergy;
|
|
G4int materialIndex ;
|
|
|
|
G4double tLast ;
|
|
G4double zLast ;
|
|
|
|
G4double Tlimit ;
|
|
|
|
// model parameters
|
|
G4double scatteringparameter;
|
|
G4double tuning;
|
|
G4double cpar;
|
|
|
|
// with/without lateral displacement
|
|
G4bool fLatDisplFlag ;
|
|
|
|
// nuclear size effect correction
|
|
G4double NuclCorrPar ;
|
|
G4double FactPar ;
|
|
|
|
//New ParticleChange
|
|
G4ParticleChangeForMSC fParticleChange ;
|
|
|
|
};
|
|
|
|
#include "G4MultipleScattering.icc"
|
|
|
|
#endif
|
|
|
|
|
|
|