source: trunk/source/processes/electromagnetic/lowenergy/include/G4PenelopeGammaConversion.hh @ 819

Last change on this file since 819 was 819, checked in by garnier, 16 years ago

import all except CVS

File size: 3.9 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: G4PenelopeGammaConversion.hh,v 1.2 2006/06/29 19:36:25 gunter Exp $
28// GEANT4 tag $Name:  $
29//
30// Author: L. Pandola
31//         
32// History:
33// -----------
34// 02 Dec 2002   L.Pandola  1st implementation
35// -------------------------------------------------------------------
36
37// Class description:
38// Low Energy process, Photon conversion
39// Penelope model
40
41// -------------------------------------------------------------------
42
43#ifndef G4PENELOPEGAMMACONVERSION_HH
44#define G4PENELOPEGAMMACONVERSION_HH 1
45
46#include "G4VDiscreteProcess.hh"
47
48#include "globals.hh"
49#include "G4VDiscreteProcess.hh"
50class G4Track;
51class G4Step;
52class G4ParticleDefinition;
53class G4VParticleChange;
54class G4VEMDataSet;
55class G4VCrossSectionHandler;
56class G4VRangeTest;
57
58class G4PenelopeGammaConversion : public G4VDiscreteProcess {
59
60public:
61 
62  G4PenelopeGammaConversion(const G4String& processName ="PenConversion");
63 
64  ~G4PenelopeGammaConversion();
65
66  G4bool IsApplicable(const G4ParticleDefinition& photon);
67
68  void BuildPhysicsTable(const G4ParticleDefinition& photon);
69
70
71  G4VParticleChange* PostStepDoIt(const G4Track& aTrack, const G4Step& aStep);
72 
73  // For testing purpose only
74  G4double DumpMeanFreePath(const G4Track& aTrack, 
75                            G4double previousStepSize, 
76                            G4ForceCondition* condition) 
77  { return GetMeanFreePath(aTrack, previousStepSize, condition); }
78
79protected:
80 
81  G4double GetMeanFreePath(const G4Track& aTrack, 
82                           G4double previousStepSize, 
83                           G4ForceCondition* condition);
84
85private:
86
87  // Hide copy constructor and assignment operator as private
88  G4PenelopeGammaConversion& operator=(const G4PenelopeGammaConversion &right);
89  G4PenelopeGammaConversion(const G4PenelopeGammaConversion& );
90
91  G4double GetScreeningRadius(G4double Z); 
92  G4double ScreenFunction(G4double screenVariable,G4int icase); 
93  G4double CoulombCorrection(G4double ZAlpha); 
94  G4double LowEnergyCorrection(G4double ZAlpha,G4double eki); 
95 
96  G4double lowEnergyLimit;  // low energy limit  applied to the process
97  G4double highEnergyLimit; // high energy limit applied to the process
98
99  G4VEMDataSet* meanFreePathTable;
100  G4VCrossSectionHandler* crossSectionHandler;
101
102  G4VRangeTest* rangeTest;
103
104  const G4double intrinsicLowEnergyLimit; // intrinsic validity range
105  const G4double intrinsicHighEnergyLimit;
106
107  const G4double smallEnergy;
108
109};
110
111#endif
112 
113
114
115
116
117
118
119
120
Note: See TracBrowser for help on using the repository browser.