source: trunk/source/processes/electromagnetic/lowenergy/test/fluoTest/include/XrayFluoPhysicsList.hh @ 1350

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

update to last version 4.9.4

File size: 3.4 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: XrayFluoPhysicsList.hh
28// GEANT4 tag $Name: xray_fluo-V03-02-00
29//
30// Author: Elena Guardincerri (Elena.Guardincerri@ge.infn.it)
31//
32// History:
33// -----------
34//  28 Nov 2001  Elena Guardincerri   Created
35//
36// -------------------------------------------------------------------
37
38#ifndef XrayFluoPhysicsList_h
39#define XrayFluoPhysicsList_h 1
40
41#include "G4VUserPhysicsList.hh"
42#include "globals.hh"
43
44class XrayFluoPhysicsListMessenger;
45class G4LowEnergyIonisation;
46class G4LowEnergyPhotoElectric;
47class G4LowEnergyBremsstrahlung;
48class XrayFluoDetectorConstruction;
49class XrayFluoPhysicsList: public G4VUserPhysicsList
50{
51public:
52
53  XrayFluoPhysicsList(XrayFluoDetectorConstruction*);
54  virtual ~XrayFluoPhysicsList();
55 
56protected:
57
58  // Construct particle and physics
59  virtual void ConstructParticle();
60  virtual void ConstructProcess();
61 
62protected:
63
64  // these methods Construct particles
65  virtual void ConstructBosons();
66  virtual void ConstructLeptons();
67  virtual void ConstructBarions();
68  virtual void ConstructIons();
69
70protected:
71  // these methods Construct physics processes and register them
72  void ConstructEM();
73  void ConstructGeneral();
74
75public:
76 
77  void SetCuts();
78  void SetGammaCut(G4double);
79  void SetElectronCut(G4double);
80
81  void SetGammaLowLimit(G4double);
82  void SetElectronLowLimit(G4double);
83  void SetGELowLimit(G4double);
84  void SetLowEnSecPhotCut(G4double);
85  void SetLowEnSecElecCut(G4double);
86  void SetProtonCut(G4double);
87  void SetCutsByEnergy(G4double);
88 
89
90private:
91
92  G4LowEnergyIonisation*  LeIoprocess;
93  G4LowEnergyPhotoElectric* LePeprocess;
94  G4LowEnergyBremsstrahlung* LeBrprocess;
95  XrayFluoPhysicsListMessenger* physicsListMessenger;
96  G4double cutForGamma;
97  G4double cutForElectron;
98  G4double cutForProton;
99  XrayFluoDetectorConstruction* pDet;
100 
101};
102
103#endif
104
105
106
107
108
109
110
Note: See TracBrowser for help on using the repository browser.