118 lines
2.6 KiB
C++
118 lines
2.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: Em8PhysicsList.hh,v 1.3 2000/06/27 13:29:46 gcosmo Exp $
|
|
// GEANT4 tag $Name: geant4-03-00 $
|
|
//
|
|
|
|
#ifndef Em8PhysicsList_h
|
|
#define Em8PhysicsList_h 1
|
|
|
|
#include "G4VUserPhysicsList.hh"
|
|
#include "globals.hh"
|
|
|
|
class G4PhotoElectricEffect;
|
|
class G4ComptonScattering;
|
|
class G4GammaConversion;
|
|
|
|
class G4MultipleScattering;
|
|
|
|
class G4PAIonisation ;
|
|
class G4ForwardXrayTR ;
|
|
class G4eIonisation;
|
|
class G4eBremsstrahlung;
|
|
class G4eplusAnnihilation;
|
|
|
|
class G4MuIonisation;
|
|
class G4MuBremsstrahlung;
|
|
class G4MuPairProduction;
|
|
|
|
class G4hIonisation;
|
|
class G4hIonisationPlus;
|
|
|
|
class Em8StepCut;
|
|
|
|
class Em8DetectorConstruction;
|
|
class Em8PhysicsListMessenger;
|
|
|
|
|
|
class Em8PhysicsList: public G4VUserPhysicsList
|
|
{
|
|
public:
|
|
Em8PhysicsList( Em8DetectorConstruction*);
|
|
~Em8PhysicsList();
|
|
|
|
protected:
|
|
// Construct particle and physics
|
|
void ConstructParticle();
|
|
void ConstructProcess();
|
|
|
|
void SetCuts();
|
|
|
|
protected:
|
|
// these methods Construct particles
|
|
void ConstructBosons();
|
|
void ConstructLeptons();
|
|
void ConstructMesons();
|
|
void ConstructBarions();
|
|
|
|
protected:
|
|
|
|
// these methods Construct physics processes and register them
|
|
|
|
void AddParameterisation();
|
|
void ConstructGeneral();
|
|
void ConstructEM();
|
|
|
|
public:
|
|
|
|
void SetGammaCut(G4double);
|
|
void SetElectronCut(G4double);
|
|
void SetProtonCut(G4double);
|
|
void SetCutsByEnergy(G4double);
|
|
void GetRange(G4double);
|
|
|
|
void SetMaxStep(G4double);
|
|
|
|
public:
|
|
|
|
G4double MaxChargedStep;
|
|
|
|
private:
|
|
|
|
G4PhotoElectricEffect* thePhotoElectricEffect;
|
|
G4ComptonScattering* theComptonScattering;
|
|
G4GammaConversion* theGammaConversion;
|
|
|
|
G4MultipleScattering* theeminusMultipleScattering;
|
|
G4eIonisation* theeminusIonisation;
|
|
G4eBremsstrahlung* theeminusBremsstrahlung;
|
|
|
|
G4PAIonisation* fPAIonisation ;
|
|
G4ForwardXrayTR* fForwardXrayTR ;
|
|
|
|
G4MultipleScattering* theeplusMultipleScattering;
|
|
G4eIonisation* theeplusIonisation;
|
|
G4eBremsstrahlung* theeplusBremsstrahlung;
|
|
G4eplusAnnihilation* theeplusAnnihilation;
|
|
|
|
Em8StepCut* theeminusStepCut ;
|
|
Em8StepCut* theeplusStepCut ;
|
|
|
|
G4double cutForGamma;
|
|
G4double cutForElectron;
|
|
G4double cutForProton;
|
|
|
|
Em8DetectorConstruction* pDet;
|
|
Em8PhysicsListMessenger* physicsListMessenger;
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|