source: trunk/examples/extended/field/field01/include/F01PhysicsList.hh @ 1337

Last change on this file since 1337 was 1337, checked in by garnier, 14 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: F01PhysicsList.hh,v 1.6 2010/04/08 14:09:44 gcosmo Exp $
28// GEANT4 tag $Name: geant4-09-04-beta-01 $
29//
30
31#ifndef F01PhysicsList_h
32#define F01PhysicsList_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 F01StepCut;
55
56class F01DetectorConstruction;
57class F01PhysicsListMessenger;
58
59
60class F01PhysicsList: public G4VUserPhysicsList
61{
62  public:
63    F01PhysicsList( F01DetectorConstruction*);
64   ~F01PhysicsList();
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    F01StepCut* theeminusStepCut ;
116    F01StepCut* theeplusStepCut ;
117
118    G4double cutForGamma;
119    G4double cutForElectron;
120
121    F01DetectorConstruction* pDet;
122    F01PhysicsListMessenger* physicsListMessenger;
123};
124
125#endif
126
127
128
Note: See TracBrowser for help on using the repository browser.