Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
F01PhysicsList.hh
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
28 //
29 //
30 // $Id$
31 //
32 
33 #ifndef F01PhysicsList_h
34 #define F01PhysicsList_h 1
35 
36 #include "G4VUserPhysicsList.hh"
37 #include "globals.hh"
38 
41 class G4GammaConversion;
42 
43 class G4PAIonisation ;
44 class G4ForwardXrayTR ;
45 class G4eIonisation;
46 class G4eBremsstrahlung;
48 
49 class G4MuIonisation;
50 class G4MuBremsstrahlung;
51 class G4MuPairProduction;
52 
53 class G4hIonisation;
54 class G4hIonisationPlus;
55 
56 class F01StepCut;
57 
60 
61 
63 {
64  public:
67 
68  protected:
69  // Construct particle and physics
70  void ConstructParticle();
71  void ConstructProcess();
72 
73  void SetCuts();
74 
75  protected:
76  // these methods Construct particles
77  void ConstructBosons();
78  void ConstructLeptons();
79  void ConstructMesons();
80  void ConstructBarions();
81 
82  protected:
83 
84  // these methods Construct physics processes and register them
85 
86  // void AddParameterisation();
87  void ConstructGeneral();
88  void ConstructEM();
89 
90  public:
91 
92  void SetGammaCut(G4double);
94 
95  void SetMaxStep(G4double);
96 
97  public:
98 
100 
101  private:
102 
103  G4PhotoElectricEffect* thePhotoElectricEffect;
104  G4ComptonScattering* theComptonScattering;
105  G4GammaConversion* theGammaConversion;
106 
107  G4eIonisation* theeminusIonisation;
108  G4eBremsstrahlung* theeminusBremsstrahlung;
109 
110  G4PAIonisation* fPAIonisation ;
111  G4ForwardXrayTR* fForwardXrayTR ;
112 
113  G4eIonisation* theeplusIonisation;
114  G4eBremsstrahlung* theeplusBremsstrahlung;
115  G4eplusAnnihilation* theeplusAnnihilation;
116 
117  F01StepCut* theeminusStepCut ;
118  F01StepCut* theeplusStepCut ;
119 
120  G4double cutForGamma;
121  G4double cutForElectron;
122 
124  F01PhysicsListMessenger* physicsListMessenger;
125 };
126 
127 #endif
128 
129 
130