Geant4  10.02.p02
G4WentzelVIRelXSection.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 // $Id: G4WentzelVIRelXSection.hh 94676 2015-12-02 09:51:20Z gunter $
27 //
28 // -------------------------------------------------------------------
29 //
30 //
31 // GEANT4 Class header file
32 //
33 //
34 // File name: G4WentzelVIRelXSection
35 //
36 // Authors: V.Ivanchenko
37 //
38 // Creation date: 08.06.2012 from G4WentzelOKandVIxSection
39 //
40 // Modifications:
41 //
42 //
43 // Class Description:
44 //
45 // Implementation of the computation of total and transport cross sections,
46 // sample scattering angle for the single scattering case.
47 // to be used by single and multiple scattering models. References:
48 // 1) G.Wentzel, Z. Phys. 40 (1927) 590.
49 // 2) J.M. Fernandez-Varea et al., NIM B73 (1993) 447.
50 //
51 // -------------------------------------------------------------------
52 //
53 
54 #ifndef G4WentzelVIRelXSection_h
55 #define G4WentzelVIRelXSection_h 1
56 
57 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
58 
59 #include "globals.hh"
60 #include "G4Material.hh"
61 #include "G4Element.hh"
62 #include "G4ElementVector.hh"
63 #include "G4NistManager.hh"
64 #include "G4ThreeVector.hh"
65 #include "G4Pow.hh"
66 
68 
69 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
70 
72 {
73 
74 public:
75 
76  G4WentzelVIRelXSection(G4bool combined = true);
77 
78  virtual ~G4WentzelVIRelXSection();
79 
80  void Initialise(const G4ParticleDefinition*, G4double CosThetaLim);
81 
83 
84  // return cos(ThetaMax) for msc and cos(thetaMin) for single scattering
85  // cut = DBL_MAX means no scattering off electrons
87 
89 
91  G4double CosThetaMax,
92  G4double elecRatio);
93 
94  inline G4double ComputeNuclearCrossSection(G4double CosThetaMin,
95  G4double CosThetaMax);
96 
98  G4double CosThetaMax);
99 
100  inline G4double SetupKinematic(G4double kinEnergy,
101  const G4Material* mat,
102  G4double cut,
103  G4double tmass);
104 
105  inline G4double GetMomentumSquare() const;
106 
107  inline G4double GetCosThetaNuc() const;
108 
109  inline G4double GetCosThetaElec() const;
110 
111 private:
112 
114 
115  // hide assignment operator
118 
123 
126 
128 
130 
131  // integer parameters
134 
136 
137  // single scattering parameters
143 
144  // projectile
146 
159 
160  // target
171 
172  static G4double ScreenRSquare[100];
173  static G4double FormFactor[100];
174 };
175 
176 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
177 
178 inline G4double
180  const G4Material* mat,
181  G4double cut,
182  G4double tmass)
183 {
184  if(kinEnergy != tkin || mat != currentMaterial ||
185  ecut != cut || tmass != targetMass) {
186 
187  currentMaterial = mat;
188  ecut = cut;
189  tkin = kinEnergy;
190  G4double momLab2 = tkin*(tkin + 2.0*mass);
191 
192  G4double etot = tkin + mass;
193  G4double ptot = std::sqrt(momLab2);
194  G4double m12 = mass*mass;
195 
196  targetMass = tmass;
197 
198  // relativistic reduced mass from publucation
199  // A.P. Martynenko, R.N. Faustov, Teoret. mat. Fiz. 64 (1985) 179
200 
201  //incident particle & target nucleus
202  G4double Ecm = std::sqrt(m12 + targetMass*targetMass + 2.0*etot*targetMass);
203  G4double mu_rel = mass*targetMass/Ecm;
204  G4double momCM = ptot*targetMass/Ecm;
205  // relative system
206  mom2 = momCM*momCM;
207  invbeta2 = 1.0 + mu_rel*mu_rel/mom2;
208 
209  factB = spin/invbeta2;
210  factD = std::sqrt(mom2)/tmass;
211  if(isCombined) {
212  G4double cost = 1.-factorA2*mat->GetIonisation()->GetInvA23()/mom2;
213  if(cost > cosTetMaxNuc) { cosTetMaxNuc = cost; }
214  }
215  }
216  return cosTetMaxNuc;
217 
218 }
219 
220 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
221 
223 {
224  return mom2;
225 }
226 
227 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
228 
230 {
231  return cosTetMaxNuc;
232 }
233 
234 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
235 
237 {
238  return cosTetMaxElec;
239 }
240 
241 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
242 
243 inline G4double
245  G4double cosTMax)
246 {
247  G4double xsec = 0.0;
248  if(cosTMax < cosTMin) {
249  xsec = targetZ*kinFactor*(cosTMin - cosTMax)/
250  ((1.0 - cosTMin + screenZ)*(1.0 - cosTMax + screenZ));
251  }
252  return xsec;
253 }
254 
255 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
256 
257 inline G4double
259  G4double cosTMax)
260 {
261  G4double xsec = 0.0;
262  G4double cost1 = std::max(cosTMin,cosTetMaxElec);
263  G4double cost2 = std::max(cosTMax,cosTetMaxElec);
264  if(cost1 > cost2) {
265  xsec = kinFactor*(cost1 - cost2)/
266  ((1.0 - cost1 + screenZ)*(1.0 - cost2 + screenZ));
267  }
268  return xsec;
269 }
270 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
271 
272 #endif
273 
G4IonisParamMat * GetIonisation() const
Definition: G4Material.hh:226
G4double ComputeNuclearCrossSection(G4double CosThetaMin, G4double CosThetaMax)
static G4double ScreenRSquare[100]
G4WentzelVIRelXSection(G4bool combined=true)
const G4ParticleDefinition * theElectron
CLHEP::Hep3Vector G4ThreeVector
Definition: G4Pow.hh:56
G4double ComputeTransportCrossSectionPerAtom(G4double CosThetaMax)
int G4int
Definition: G4Types.hh:78
G4WentzelVIRelXSection & operator=(const G4WentzelVIRelXSection &right)
const G4ParticleDefinition * theProton
void SetupParticle(const G4ParticleDefinition *)
G4double GetMomentumSquare() const
G4double SetupKinematic(G4double kinEnergy, const G4Material *mat, G4double cut, G4double tmass)
G4double SetupTarget(G4int Z, G4double cut)
bool G4bool
Definition: G4Types.hh:79
G4double GetInvA23() const
const G4ParticleDefinition * particle
static G4double FormFactor[100]
void ComputeMaxElectronScattering(G4double cut)
T max(const T t1, const T t2)
brief Return the largest of the two arguments
const G4Material * currentMaterial
G4double ComputeElectronCrossSection(G4double CosThetaMin, G4double CosThetaMax)
void Initialise(const G4ParticleDefinition *, G4double CosThetaLim)
double G4double
Definition: G4Types.hh:76
G4ThreeVector & SampleSingleScattering(G4double CosThetaMin, G4double CosThetaMax, G4double elecRatio)
const G4ParticleDefinition * thePositron