source: trunk/examples/extended/field/field02/include/F02PhysicsList.hh@ 1343

Last change on this file since 1343 was 1337, checked in by garnier, 15 years ago

tag geant4.9.4 beta 1 + modifs locales

File size: 3.7 KB
Line 
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//
27// $Id: F02PhysicsList.hh,v 1.6 2010/04/08 14:11:06 gcosmo Exp $
28// GEANT4 tag $Name: geant4-09-04-beta-01 $
29//
30
31#ifndef F02PhysicsList_h
32#define F02PhysicsList_h 1
33
34#include "G4VUserPhysicsList.hh"
35#include "globals.hh"
36
37class G4PhotoElectricEffect;
38class G4ComptonScattering;
39class G4GammaConversion;
40
41class G4PAIonisation ;
42class G4ForwardXrayTR ;
43class G4eIonisation;
44class G4eBremsstrahlung;
45class G4eplusAnnihilation;
46
47class G4MuIonisation;
48class G4MuBremsstrahlung;
49class G4MuPairProduction;
50
51class G4hIonisation;
52class G4hIonisationPlus;
53
54class F02StepCut;
55
56class F02DetectorConstruction;
57class F02PhysicsListMessenger;
58
59
60class F02PhysicsList: public G4VUserPhysicsList
61{
62 public:
63 F02PhysicsList( F02DetectorConstruction*);
64 ~F02PhysicsList();
65
66 protected:
67 // Construct particle and physics
68 void ConstructParticle();
69 void ConstructProcess();
70
71 void SetCuts();
72
73 protected:
74 // these methods Construct particles
75 void ConstructBosons();
76 void ConstructLeptons();
77 void ConstructMesons();
78 void ConstructBarions();
79
80 protected:
81
82 // these methods Construct physics processes and register them
83
84 // void AddParameterisation();
85 void ConstructGeneral();
86 void ConstructEM();
87
88 public:
89
90 void SetGammaCut(G4double);
91 void SetElectronCut(G4double);
92
93 void SetMaxStep(G4double);
94
95 public:
96
97 G4double MaxChargedStep;
98
99 private:
100
101 G4PhotoElectricEffect* thePhotoElectricEffect;
102 G4ComptonScattering* theComptonScattering;
103 G4GammaConversion* theGammaConversion;
104
105 G4eIonisation* theeminusIonisation;
106 G4eBremsstrahlung* theeminusBremsstrahlung;
107
108 G4PAIonisation* fPAIonisation ;
109 G4ForwardXrayTR* fForwardXrayTR ;
110
111 G4eIonisation* theeplusIonisation;
112 G4eBremsstrahlung* theeplusBremsstrahlung;
113 G4eplusAnnihilation* theeplusAnnihilation;
114
115 F02StepCut* theeminusStepCut ;
116 F02StepCut* theeplusStepCut ;
117
118 G4double cutForGamma;
119 G4double cutForElectron;
120
121 F02DetectorConstruction* pDet;
122 F02PhysicsListMessenger* physicsListMessenger;
123};
124
125#endif
126
127
128
Note: See TracBrowser for help on using the repository browser.