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

Last change on this file since 1285 was 1230, checked in by garnier, 15 years ago

update to geant4.9.3

File size: 3.8 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.5 2007/05/23 13:40:14 tnikitin Exp $
28// GEANT4 tag $Name: geant4-09-03-cand-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 G4MultipleScattering;
42
43class G4PAIonisation ;
44class G4ForwardXrayTR ;
45class G4eIonisation;
46class G4eBremsstrahlung;
47class G4eplusAnnihilation;
48
49class G4MuIonisation;
50class G4MuBremsstrahlung;
51class G4MuPairProduction;
52
53class G4hIonisation;
54class G4hIonisationPlus;
55
56class F02StepCut;
57
58class F02DetectorConstruction;
59class F02PhysicsListMessenger;
60
61
62class F02PhysicsList: public G4VUserPhysicsList
63{
64  public:
65    F02PhysicsList( F02DetectorConstruction*);
66   ~F02PhysicsList();
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);
93    void SetElectronCut(G4double);
94
95    void SetMaxStep(G4double);
96
97  public:   
98
99    G4double MaxChargedStep;
100
101  private:
102
103    G4PhotoElectricEffect* thePhotoElectricEffect;
104    G4ComptonScattering*   theComptonScattering;
105    G4GammaConversion*     theGammaConversion;
106   
107    G4MultipleScattering*  theeminusMultipleScattering;
108    G4eIonisation*         theeminusIonisation;
109    G4eBremsstrahlung*     theeminusBremsstrahlung;
110
111    G4PAIonisation*        fPAIonisation ;
112    G4ForwardXrayTR*       fForwardXrayTR ;
113   
114    G4MultipleScattering*  theeplusMultipleScattering;
115    G4eIonisation*         theeplusIonisation;
116    G4eBremsstrahlung*     theeplusBremsstrahlung;
117    G4eplusAnnihilation*   theeplusAnnihilation;
118
119    F02StepCut* theeminusStepCut ;
120    F02StepCut* theeplusStepCut ;
121
122    G4double cutForGamma;
123    G4double cutForElectron;
124
125    F02DetectorConstruction* pDet;
126    F02PhysicsListMessenger* physicsListMessenger;
127};
128
129#endif
130
131
132
Note: See TracBrowser for help on using the repository browser.