Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Em10PhysicsList.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 //
26 /// \file electromagnetic/TestEm10/include/Em10PhysicsList.hh
27 /// \brief Definition of the Em10PhysicsList class
28 //
29 //
30 // $Id: Em10PhysicsList.hh 66241 2012-12-13 18:34:42Z gunter $
31 //
32 
33 #ifndef Em10PhysicsList_h
34 #define Em10PhysicsList_h 1
35 
36 #include "G4VUserPhysicsList.hh"
37 #include "G4VModularPhysicsList.hh"
38 #include "globals.hh"
39 
40 class G4ForwardXrayTR ;
41 class Em10StepCut;
44 class G4ProductionCuts;
45 
46 
47 class Em10PhysicsList: public G4VModularPhysicsList // G4VUserPhysicsList
48 {
49 public:
51 
53 
54  // Construct particle and physics
55  void ConstructParticle();
56  void ConstructProcess();
57 
58  void SetCuts();
59 
60 private:
61  // these methods Construct particles
62  void ConstructBosons();
63  void ConstructLeptons();
64  void ConstructMesons();
65  void ConstructBarions();
66 
67  // these methods Construct physics processes and register them
68 
69  void AddParameterisation();
70  void ConstructGeneral();
71  void ConstructEM();
72 
73 public:
74 
75  void SetGammaCut(G4double);
77 
78  void SetRegGammaCut(G4double cut){fGammaCut = cut;};
79  void SetRegElectronCut(G4double cut){fElectronCut = cut;};
80  void SetRegPositronCut(G4double cut){fPositronCut = cut;};
81 
82  void SetRadiatorCuts();
83  void SetDetectorCuts();
84 
85  void SetMaxStep(G4double);
86  void SetXTRModel(G4String m) {fXTRModel = m; G4cout<<fXTRModel<<G4endl;};
87 
88 private:
89 
90  G4double MaxChargedStep;
91 
92  G4ForwardXrayTR* fForwardXrayTR ;
93 
94  Em10StepCut* theeminusStepCut ;
95  Em10StepCut* theeplusStepCut ;
96 
97  G4double cutForGamma;
98  G4double cutForElectron, cutForPositron;
99 
101 
102  Em10PhysicsListMessenger* physicsListMessenger;
103 
104  G4ProductionCuts* fRadiatorCuts;
105  G4ProductionCuts* fDetectorCuts;
106  G4double fElectronCut, fGammaCut, fPositronCut;
107  G4String fXTRModel;
108 };
109 
110 #endif
111 
112 
113 
void SetMaxStep(G4double)
G4GLOB_DLL std::ostream G4cout
void SetGammaCut(G4double)
void SetRegPositronCut(G4double cut)
void SetElectronCut(G4double)
Em10PhysicsList(Em10DetectorConstruction *)
#define G4endl
Definition: G4ios.hh:61
void SetRegElectronCut(G4double cut)
double G4double
Definition: G4Types.hh:76
void SetRegGammaCut(G4double cut)
void SetXTRModel(G4String m)