source: trunk/source/processes/electromagnetic/lowenergy/include/G4LowEnergyPhotoElectric.hh@ 1036

Last change on this file since 1036 was 1007, checked in by garnier, 17 years ago

update to geant4.9.2

File size: 4.6 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: G4LowEnergyPhotoElectric.hh,v 1.28 2006/06/29 19:36:03 gunter Exp $
28// GEANT4 tag $Name: geant4-09-02 $
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 G4LOWENERGYPHOTOELECTRIC_HH
50#define G4LOWENERGYPHOTOELECTRIC_HH 1
51
52#include "globals.hh"
53#include "G4VDiscreteProcess.hh"
54#include "G4AtomicDeexcitation.hh"
55
56class G4Track;
57class G4Step;
58class G4ParticleDefinition;
59class G4VParticleChange;
60class G4VEMDataSet;
61class G4VCrossSectionHandler;
62class G4VRangeTest;
63class G4VPhotoElectricAngularDistribution;
64
65class G4LowEnergyPhotoElectric : public G4VDiscreteProcess {
66
67public:
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(G4VPhotoElectricAngularDistribution* 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
96protected:
97
98 G4double GetMeanFreePath(const G4Track& aTrack,
99 G4double previousStepSize,
100 G4ForceCondition* condition);
101
102private:
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 G4VEMDataSet* meanFreePathTable;
112
113 G4VCrossSectionHandler* crossSectionHandler;
114 G4VCrossSectionHandler* shellCrossSectionHandler;
115
116 G4VRangeTest* rangeTest;
117
118 const G4double intrinsicLowEnergyLimit; // intrinsic validity range
119 const G4double intrinsicHighEnergyLimit;
120
121 G4double cutForLowEnergySecondaryPhotons;
122 G4double cutForLowEnergySecondaryElectrons;
123
124 G4AtomicDeexcitation deexcitationManager;
125
126 G4VPhotoElectricAngularDistribution* ElectronAngularGenerator;
127 G4String generatorName;
128};
129
130#endif
131
132
133
Note: See TracBrowser for help on using the repository browser.