source: trunk/source/geometry/magneticfield/test/field03/include/F03PhysicsList.hh @ 1347

Last change on this file since 1347 was 1347, checked in by garnier, 13 years ago

geant4 tag 9.4

File size: 4.0 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: F03PhysicsList.hh,v 1.2 2006/06/29 18:29:35 gunter Exp $
28// GEANT4 tag $Name: geant4-09-04-ref-00 $
29//
30
31#ifndef F03PhysicsList_h
32#define F03PhysicsList_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 F03StepCut;
57
58class F03DetectorConstruction;
59class F03PhysicsListMessenger;
60
61
62class F03PhysicsList: public G4VUserPhysicsList
63{
64  public:
65    F03PhysicsList( F03DetectorConstruction*);
66   ~F03PhysicsList();
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    void SetProtonCut(G4double);
95    void SetCutsByEnergy(G4double);
96    void GetRange(G4double);
97
98    void SetMaxStep(G4double);
99
100  public:   
101
102    G4double MaxChargedStep;
103
104  private:
105
106    G4PhotoElectricEffect* thePhotoElectricEffect;
107    G4ComptonScattering*   theComptonScattering;
108    G4GammaConversion*     theGammaConversion;
109   
110    G4MultipleScattering*  theeminusMultipleScattering;
111    G4eIonisation*         theeminusIonisation;
112    G4eBremsstrahlung*     theeminusBremsstrahlung;
113
114    G4PAIonisation*        fPAIonisation ;
115    G4ForwardXrayTR*       fForwardXrayTR ;
116   
117    G4MultipleScattering*  theeplusMultipleScattering;
118    G4eIonisation*         theeplusIonisation;
119    G4eBremsstrahlung*     theeplusBremsstrahlung;
120    G4eplusAnnihilation*   theeplusAnnihilation;
121
122    F03StepCut* theeminusStepCut ;
123    F03StepCut* theeplusStepCut ;
124
125    G4double cutForGamma;
126    G4double cutForElectron;
127    G4double cutForProton;
128
129    F03DetectorConstruction* pDet;
130    F03PhysicsListMessenger* physicsListMessenger;
131};
132
133#endif
134
135
136
Note: See TracBrowser for help on using the repository browser.