133 lines
3.8 KiB
C++
133 lines
3.8 KiB
C++
//
|
|
// ********************************************************************
|
|
// * License and Disclaimer *
|
|
// * *
|
|
// * The Geant4 software is copyright of the Copyright Holders of *
|
|
// * the Geant4 Collaboration. It is provided under the terms and *
|
|
// * conditions of the Geant4 Software License, included in the file *
|
|
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
|
// * include a list of copyright holders. *
|
|
// * *
|
|
// * 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. Please see the license in the file LICENSE and URL above *
|
|
// * for the full disclaimer and the limitation of liability. *
|
|
// * *
|
|
// * This code implementation is the result of the scientific and *
|
|
// * technical work of the GEANT4 collaboration. *
|
|
// * By using, copying, modifying or distributing the software (or *
|
|
// * any work based on the software) you agree to acknowledge its *
|
|
// * use in resulting scientific publications, and indicate your *
|
|
// * acceptance of all terms of the Geant4 Software license. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: F02PhysicsList.hh,v 1.5 2007/05/23 13:40:14 tnikitin Exp $
|
|
// GEANT4 tag $Name: geant4-09-01 $
|
|
//
|
|
|
|
#ifndef F02PhysicsList_h
|
|
#define F02PhysicsList_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 F02StepCut;
|
|
|
|
class F02DetectorConstruction;
|
|
class F02PhysicsListMessenger;
|
|
|
|
|
|
class F02PhysicsList: public G4VUserPhysicsList
|
|
{
|
|
public:
|
|
F02PhysicsList( F02DetectorConstruction*);
|
|
~F02PhysicsList();
|
|
|
|
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 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;
|
|
|
|
F02StepCut* theeminusStepCut ;
|
|
F02StepCut* theeplusStepCut ;
|
|
|
|
G4double cutForGamma;
|
|
G4double cutForElectron;
|
|
|
|
F02DetectorConstruction* pDet;
|
|
F02PhysicsListMessenger* physicsListMessenger;
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|