Geant4  10.02.p01
G4ScreeningMottCrossSection.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 // G4ScreeningMottCrossSection.hh
27 //-------------------------------------------------------------------
28 //
29 // GEANT4 Class header file
30 //
31 // File name: G4ScreeningMottCrossSection
32 //
33 // Author: Cristina Consolandi
34 //
35 // Creation date: 20.10.2011
36 //
37 // Modifications:
38 // 27-05-2012 Added Analytic Fitting to the Mott Cross Section by means of G4MottCoefficients class.
39 //
40 //
41 // Class Description:
42 // Computation of electron Coulomb Scattering Cross Section.
43 // Suitable for high energy electrons and light target materials.
44 //
45 // Reference:
46 // M.J. Boschini et al.
47 // "Non Ionizing Energy Loss induced by Electrons in the Space Environment"
48 // Proc. of the 13th International Conference on Particle Physics and Advanced Technology
49 // (13th ICPPAT, Como 3-7/10/2011), World Scientific (Singapore).
50 // Available at: http://arxiv.org/abs/1111.4042v4
51 //
52 // 1) Mott Differential Cross Section Approximation:
53 // For Target material up to Z=92 (U):
54 // As described in http://arxiv.org/abs/1111.4042v4
55 // par. 2.1 , eq. (16)-(17)
56 // Else (Z>92):
57 // W. A. McKinley and H. Fashbach, Phys. Rev. 74, (1948) 1759.
58 // 2) Screening coefficient:
59 // vomn G. Moliere, Z. Naturforsh A2 (1947), 133-145; A3 (1948), 78.
60 // 3) Nuclear Form Factor:
61 // A.V. Butkevich et al. Nucl. Instr. and Meth. in Phys. Res. A 488 (2002), 282-294.
62 //
63 // ----------------------------------------------------------------------------------------
64 
65 //
66 #ifndef G4ScreeningMottCrossSection_h
67 #define G4ScreeningMottCrossSection_h 1
68 
69 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
70 
71 
72 #include "G4MottCoefficients.hh"
73 #include "globals.hh"
74 #include "G4Material.hh"
75 #include "G4Element.hh"
76 #include "G4ElementVector.hh"
77 #include "G4NistManager.hh"
78 #include "G4ThreeVector.hh"
79 #include "G4Pow.hh"
80 #include "G4LossTableManager.hh"
81 
82 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
83 
84 static const G4int DIM = 750;
85 
87 
89 {
90 
91 public:
92 
94 
96 
97  void Initialise(const G4ParticleDefinition*, G4double cosThetaLim);
98 
101 
102 
103 
104  inline void SetupParticle(const G4ParticleDefinition*);
105  void SetupKinematic(G4double kinEnergy ,G4double Z);
106 
109 
110  inline G4double GetMom2CM()const;
111  inline G4double GetMom2Lab()const;
112  inline G4double GetTrec() const;
113  inline G4double GetScreeningCoefficient() const;
114  inline G4double GetTotalCross() const;
115 
116 
117 
123 
124 
125 private:
126 
129 
130 
134 
136 
137  //cost - min - max
139  G4double cosThetaMax;// def -1.0
140 
143 
144 
145  //energy cut
148 
149  // projectile........................
151 
154 
155  //lab of incedent particle
159 
160  //relative system with nucleus
167 
168 
169  // target nucleus
176 
177  //constants
181 
182  //angle
183  static G4double dangle[DIM];
184  static G4double tet[DIM];
186 };
187 
188 
189 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
190 
192 {
193  particle = p;
194  mass = particle->GetPDGMass();
195  spin = particle->GetPDGSpin();
196  if(0.0 != spin) { spin = 0.5; }
197  tkin = 0.0;
198 }
199 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
200 
201 
203 {
204  return mom2;
205 }
206 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
207 
208 
210 {
211  return momLab2;
212 }
213 
214 
215 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
216 
218 {
219  return Trec;
220 }
221 
222 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
223 
225 {
226  return As;
227 }
228 
229 
230 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
231 
233 {
234  return TotalCross;
235 }
236 
237 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
238 
239 #endif
240 
241 
static const G4int DIM
const G4ParticleDefinition * particle
CLHEP::Hep3Vector G4ThreeVector
void Initialise(const G4ParticleDefinition *, G4double cosThetaLim)
Definition: G4Pow.hh:56
void SetupParticle(const G4ParticleDefinition *)
G4ScreeningMottCrossSection & operator=(const G4ScreeningMottCrossSection &right)
int G4int
Definition: G4Types.hh:78
G4double GetPDGMass() const
G4double GetPDGSpin() const
double G4double
Definition: G4Types.hh:76
void SetupKinematic(G4double kinEnergy, G4double Z)