Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4LowEnergyPhotoElectric.hh
Go to the documentation of this file.
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$
28 // GEANT4 tag $Name: geant4-09-01-ref-00 $
29 //
30 // Author: A. Forti
31 // Maria Grazia Pia (Maria.Grazia.Pia@cern.ch)
32 //
33 // History:
34 // -----------
35 // 02 Mar 1999 A. Forti 1st implementation
36 // 12 Aug 2001 MGP Major revision according to a design iteration
37 // 16 Sept 2001 E. Guardincerri Added fluorescence generation
38 // 31 May 2002 V.Ivanchenko Add cut on Auger electrons
39 // 10 May 2004 P. Rodrigues Changes to accommodate new angular generators
40 //
41 // -------------------------------------------------------------------
42 
43 // Class description:
44 // Low Energy Electromagnetic process, Photoelectric effect
45 // Further documentation available from http://www.ge.infn.it/geant4/lowE
46 
47 // -------------------------------------------------------------------
48 
49 #ifndef G4RDLOWENERGYPHOTOELECTRIC_HH
50 #define G4RDLOWENERGYPHOTOELECTRIC_HH 1
51 
52 #include "globals.hh"
53 #include "G4VDiscreteProcess.hh"
55 
56 class G4Track;
57 class G4Step;
59 class G4VParticleChange;
60 class G4RDVEMDataSet;
62 class G4RDVRangeTest;
64 
66 
67 public:
68 
69  G4LowEnergyPhotoElectric(const G4String& processName ="LowEnPhotoElec");
70 
72 
74 
76 
77  G4VParticleChange* PostStepDoIt(const G4Track& aTrack, const G4Step& aStep);
78 
80 
82 
83  void ActivateAuger(G4bool);
84 
86 
87  void SetAngularGenerator(const G4String& name);
88 
89 
90  // For testing purpose only
92  G4double previousStepSize,
94  { return GetMeanFreePath(aTrack, previousStepSize, condition); }
95 
96 protected:
97 
98  G4double GetMeanFreePath(const G4Track& aTrack,
99  G4double previousStepSize,
101 
102 private:
103 
104  // Hide copy constructor and assignment operator as private
107 
108  G4double lowEnergyLimit; // low energy limit applied to the process
109  G4double highEnergyLimit; // high energy limit applied to the process
110 
111  G4RDVEMDataSet* meanFreePathTable;
112 
113  G4RDVCrossSectionHandler* crossSectionHandler;
114  G4RDVCrossSectionHandler* shellCrossSectionHandler;
115 
116  G4RDVRangeTest* rangeTest;
117 
118  const G4double intrinsicLowEnergyLimit; // intrinsic validity range
119  const G4double intrinsicHighEnergyLimit;
120 
121  G4double cutForLowEnergySecondaryPhotons;
122  G4double cutForLowEnergySecondaryElectrons;
123 
124  G4RDAtomicDeexcitation deexcitationManager;
125 
126  G4RDVPhotoElectricAngularDistribution* ElectronAngularGenerator;
127  G4String generatorName;
128 };
129 
130 #endif
131 
132 
133 
G4double condition(const G4ErrorSymMatrix &m)
G4bool IsApplicable(const G4ParticleDefinition &)
void BuildPhysicsTable(const G4ParticleDefinition &photon)
const XML_Char * name
G4double DumpMeanFreePath(const G4Track &aTrack, G4double previousStepSize, G4ForceCondition *condition)
void SetAngularGenerator(G4RDVPhotoElectricAngularDistribution *distribution)
bool G4bool
Definition: G4Types.hh:79
G4LowEnergyPhotoElectric(const G4String &processName="LowEnPhotoElec")
G4double GetMeanFreePath(const G4Track &aTrack, G4double previousStepSize, G4ForceCondition *condition)
Definition: G4Step.hh:76
G4VParticleChange * PostStepDoIt(const G4Track &aTrack, const G4Step &aStep)
double G4double
Definition: G4Types.hh:76
G4ForceCondition