Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4eBremsstrahlungRelModel.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: G4eBremsstrahlungRelModel.hh 75582 2013-11-04 12:13:01Z gcosmo $
27 //
28 // -------------------------------------------------------------------
29 //
30 // GEANT4 Class header file
31 //
32 //
33 // File name: G4eBremsstrahlungRelModel
34 // extention of standard G4eBremsstrahlungModel
35 //
36 // Author: Andreas Schaelicke
37 //
38 // Creation date: 28.03.2008
39 //
40 // Modifications:
41 //
42 //
43 // Class Description:
44 //
45 // Implementation of energy loss for gamma emission by electrons and
46 // positrons including an improved version of the LPM effect
47 
48 // -------------------------------------------------------------------
49 //
50 
51 #ifndef G4eBremsstrahlungRelModel_h
52 #define G4eBremsstrahlungRelModel_h 1
53 
54 #include "G4VEmModel.hh"
55 #include "G4NistManager.hh"
56 #include "G4Exp.hh"
57 #include "G4Log.hh"
58 
60 class G4PhysicsVector;
61 
63 {
64 
65 public:
66 
68  const G4String& nam = "eBremLPM");
69 
71 
72  virtual void Initialise(const G4ParticleDefinition*, const G4DataVector&);
73 
74  virtual void InitialiseLocal(const G4ParticleDefinition*,
75  G4VEmModel* masterModel);
76 
78  const G4ParticleDefinition*,
79  G4double kineticEnergy,
80  G4double cutEnergy);
81 
83  G4double tkin,
84  G4double Z, G4double,
85  G4double cutEnergy,
86  G4double maxEnergy = DBL_MAX);
87 
88  virtual void SampleSecondaries(std::vector<G4DynamicParticle*>*,
89  const G4MaterialCutsCouple*,
90  const G4DynamicParticle*,
91  G4double cutEnergy,
92  G4double maxEnergy);
93 
94  virtual void SetupForMaterial(const G4ParticleDefinition*,
95  const G4Material*,G4double);
96 
97  virtual G4double MinPrimaryEnergy(const G4Material*,
98  const G4ParticleDefinition*,
99  G4double cut);
100 
101  inline void SetLPMconstant(G4double val);
102  inline G4double LPMconstant() const;
103 
104  inline void SetLowestKinEnergy(G4double);
105  inline G4double LowestKinEnergy() const;
106 
107 
108 protected:
109 
110  virtual G4double ComputeDXSectionPerAtom(G4double gammaEnergy);
111 
112  // * fast inline functions *
113  inline void SetCurrentElement(const G4double);
114 
115 private:
116 
117  void InitialiseConstants();
118 
119  void CalcLPMFunctions(G4double gammaEnergy);
120 
121  G4double ComputeBremLoss(G4double cutEnergy);
122 
123  G4double ComputeXSectionPerAtom(G4double cutEnergy);
124 
125  G4double ComputeRelDXSectionPerAtom(G4double gammaEnergy);
126 
127  void SetParticle(const G4ParticleDefinition* p);
128 
129  inline G4double Phi1(G4double,G4double);
130  inline G4double Phi1M2(G4double,G4double);
131  inline G4double Psi1(G4double,G4double);
132  inline G4double Psi1M2(G4double,G4double);
133 
134  // hide assignment operator
137 
138 protected:
139 
144 
146 
147  // cash
154 
156 
157 private:
158 
159  static const G4double xgi[8], wgi[8];
160  static const G4double Fel_light[5];
161  static const G4double Finel_light[5];
162 
163  // consts
164  G4double lowestKinEnergy;
165  G4double fMigdalConstant;
166  G4double fLPMconstant;
167  G4double energyThresholdLPM;
168  G4double facFel, facFinel;
169  G4double preS1,logTwo;
170 
171  // cash
172  G4double z13, z23, lnZ;
173  G4double Fel, Finel, fCoulomb, fMax;
174 
175  // LPM effect
176  G4double lpmEnergy;
177  G4PhysicsVector *fXiLPM, *fPhiLPM, *fGLPM;
178  G4double xiLPM, phiLPM, gLPM;
179 
180  // critical gamma energies
181  G4double klpm, kp;
182 
183  // flags
184  G4bool use_completescreening;
185  G4bool isInitialised;
186 };
187 
188 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
189 
191 {
192  if(Z != currentZ) {
193  currentZ = Z;
194 
195  G4int iz = G4int(Z);
196  z13 = nist->GetZ13(iz);
197  z23 = z13*z13;
198  lnZ = nist->GetLOGZ(iz);
199 
200  if (iz <= 4) {
201  Fel = Fel_light[iz];
202  Finel = Finel_light[iz] ;
203  }
204  else {
205  Fel = facFel - lnZ/3. ;
206  Finel = facFinel - 2.*lnZ/3. ;
207  }
208 
209  fCoulomb = GetCurrentElement()->GetfCoulomb();
210  fMax = Fel-fCoulomb + Finel/currentZ + (1.+1./currentZ)/12.;
211  }
212 }
213 
214 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
215 
216 
217 inline G4double G4eBremsstrahlungRelModel::Phi1(G4double gg, G4double)
218 {
219  // Thomas-Fermi FF from Tsai, eq.(3.38) for Z>=5
220  return 20.863 - 2.*G4Log(1. + sqr(0.55846*gg) )
221  - 4.*( 1. - 0.6*G4Exp(-0.9*gg) - 0.4*G4Exp(-1.5*gg) );
222 }
223 
224 inline G4double G4eBremsstrahlungRelModel::Phi1M2(G4double gg, G4double)
225 {
226  // Thomas-Fermi FF from Tsai, eq. (3.39) for Z>=5
227  // return Phi1(gg,Z) -
228  return 2./(3.*(1. + 6.5*gg +6.*gg*gg) );
229 }
230 
231 inline G4double G4eBremsstrahlungRelModel::Psi1(G4double eps, G4double)
232 {
233  // Thomas-Fermi FF from Tsai, eq.(3.40) for Z>=5
234  return 28.340 - 2.*G4Log(1. + sqr(3.621*eps) )
235  - 4.*( 1. - 0.7*G4Exp(-8*eps) - 0.3*G4Exp(-29.*eps) );
236 }
237 
238 inline G4double G4eBremsstrahlungRelModel::Psi1M2(G4double eps, G4double)
239 {
240  // Thomas-Fermi FF from Tsai, eq. (3.41) for Z>=5
241  return 2./(3.*(1. + 40.*eps +400.*eps*eps) );
242 }
243 
244 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
245 
246 inline
248 {
249  fLPMconstant = val;
250 }
251 
252 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
253 
254 inline
256 {
257  return fLPMconstant;
258 }
259 
261 {
262  lowestKinEnergy = val;
263 }
264 
265 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
266 
268 {
269  return lowestKinEnergy;
270 }
271 
272 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
273 
274 
275 #endif
virtual G4double ComputeDEDXPerVolume(const G4Material *, const G4ParticleDefinition *, G4double kineticEnergy, G4double cutEnergy)
const char * p
Definition: xmltok.h:285
G4double GetZ13(G4double Z)
virtual G4double ComputeCrossSectionPerAtom(const G4ParticleDefinition *, G4double tkin, G4double Z, G4double, G4double cutEnergy, G4double maxEnergy=DBL_MAX)
G4double GetfCoulomb() const
Definition: G4Element.hh:190
int G4int
Definition: G4Types.hh:78
virtual void SetupForMaterial(const G4ParticleDefinition *, const G4Material *, G4double)
const G4ParticleDefinition * particle
bool G4bool
Definition: G4Types.hh:79
G4double iz
Definition: TRTMaterials.hh:39
G4eBremsstrahlungRelModel(const G4ParticleDefinition *p=0, const G4String &nam="eBremLPM")
G4double G4Log(G4double x)
Definition: G4Log.hh:227
G4double G4Exp(G4double initial_x)
Exponential Function double precision.
Definition: G4Exp.hh:180
virtual void SampleSecondaries(std::vector< G4DynamicParticle * > *, const G4MaterialCutsCouple *, const G4DynamicParticle *, G4double cutEnergy, G4double maxEnergy)
virtual G4double MinPrimaryEnergy(const G4Material *, const G4ParticleDefinition *, G4double cut)
virtual G4double ComputeDXSectionPerAtom(G4double gammaEnergy)
G4double GetLOGZ(G4int Z)
G4ParticleChangeForLoss * fParticleChange
virtual void Initialise(const G4ParticleDefinition *, const G4DataVector &)
T sqr(const T &x)
Definition: templates.hh:145
double G4double
Definition: G4Types.hh:76
#define DBL_MAX
Definition: templates.hh:83
virtual void InitialiseLocal(const G4ParticleDefinition *, G4VEmModel *masterModel)
const G4Element * GetCurrentElement() const
Definition: G4VEmModel.hh:440