Geant4
9.6.p02
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
geant4_9_6_p02
examples
advanced
eRosita
physics
include
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
"
54
#include "
G4RDAtomicDeexcitation.hh
"
55
56
class
G4Track
;
57
class
G4Step
;
58
class
G4ParticleDefinition
;
59
class
G4VParticleChange
;
60
class
G4RDVEMDataSet
;
61
class
G4RDVCrossSectionHandler
;
62
class
G4RDVRangeTest
;
63
class
G4RDVPhotoElectricAngularDistribution
;
64
65
class
G4LowEnergyPhotoElectric
:
public
G4VDiscreteProcess
{
66
67
public
:
68
69
G4LowEnergyPhotoElectric
(
const
G4String
& processName =
"LowEnPhotoElec"
);
70
71
~G4LowEnergyPhotoElectric
();
72
73
G4bool
IsApplicable
(
const
G4ParticleDefinition
&);
74
75
void
BuildPhysicsTable
(
const
G4ParticleDefinition
&
photon
);
76
77
G4VParticleChange
*
PostStepDoIt
(
const
G4Track
& aTrack,
const
G4Step
& aStep);
78
79
void
SetCutForLowEnSecPhotons
(
G4double
);
80
81
void
SetCutForLowEnSecElectrons
(
G4double
);
82
83
void
ActivateAuger
(
G4bool
);
84
85
void
SetAngularGenerator
(
G4RDVPhotoElectricAngularDistribution
* distribution);
86
87
void
SetAngularGenerator
(
const
G4String
&
name
);
88
89
90
// For testing purpose only
91
G4double
DumpMeanFreePath
(
const
G4Track
& aTrack,
92
G4double
previousStepSize,
93
G4ForceCondition
*
condition
)
94
{
return
GetMeanFreePath
(aTrack, previousStepSize, condition); }
95
96
protected
:
97
98
G4double
GetMeanFreePath
(
const
G4Track
& aTrack,
99
G4double
previousStepSize,
100
G4ForceCondition
*
condition
);
101
102
private
:
103
104
// Hide copy constructor and assignment operator as private
105
G4LowEnergyPhotoElectric
& operator=(
const
G4LowEnergyPhotoElectric
&
right
);
106
G4LowEnergyPhotoElectric
(
const
G4LowEnergyPhotoElectric
& );
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
Generated on Sat May 25 2013 14:32:08 for Geant4 by
1.8.4