288 lines
8.1 KiB
C++
288 lines
8.1 KiB
C++
//
|
|
// ********************************************************************
|
|
// * License and Disclaimer *
|
|
// * *
|
|
// * The Geant4 software is copyright of the Copyright Holders of *
|
|
// * the Geant4 Collaboration. It is provided under the terms and *
|
|
// * conditions of the Geant4 Software License, included in the file *
|
|
// * LICENSE and available at http://cern.ch/geant4/license . These *
|
|
// * include a list of copyright holders. *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. Please see the license in the file LICENSE and URL above *
|
|
// * for the full disclaimer and the limitation of liability. *
|
|
// * *
|
|
// * This code implementation is the result of the scientific and *
|
|
// * technical work of the GEANT4 collaboration. *
|
|
// * By using, copying, modifying or distributing the software (or *
|
|
// * any work based on the software) you agree to acknowledge its *
|
|
// * use in resulting scientific publications, and indicate your *
|
|
// * acceptance of all terms of the Geant4 Software license. *
|
|
// ********************************************************************
|
|
//
|
|
// $Id: G4PairProductionRelModel.hh,v 1.9 2010-10-26 10:35:22 vnivanch Exp $
|
|
// GEANT4 tag $Name: not supported by cvs2svn $
|
|
//
|
|
// -------------------------------------------------------------------
|
|
//
|
|
// GEANT4 Class header file
|
|
//
|
|
//
|
|
// File name: G4PairProductionRelModel
|
|
//
|
|
// Author: Andreas Schaelicke
|
|
//
|
|
// Creation date: 02.04.2009
|
|
//
|
|
// Modifications:
|
|
//
|
|
// Class Description:
|
|
//
|
|
// Implementation of gamma convertion to e+e- in the field of a nucleus
|
|
// relativistic approximation
|
|
//
|
|
|
|
// -------------------------------------------------------------------
|
|
//
|
|
|
|
#ifndef G4PairProductionRelModel_h
|
|
#define G4PairProductionRelModel_h 1
|
|
|
|
#include "G4VEmModel.hh"
|
|
#include "G4PhysicsTable.hh"
|
|
#include "G4NistManager.hh"
|
|
|
|
class G4ParticleChangeForGamma;
|
|
|
|
class G4PairProductionRelModel : public G4VEmModel
|
|
{
|
|
|
|
public:
|
|
|
|
G4PairProductionRelModel(const G4ParticleDefinition* p = 0,
|
|
const G4String& nam = "BetheHeitlerLPM");
|
|
|
|
virtual ~G4PairProductionRelModel();
|
|
|
|
virtual void Initialise(const G4ParticleDefinition*, const G4DataVector&);
|
|
|
|
virtual G4double ComputeCrossSectionPerAtom(
|
|
const G4ParticleDefinition*,
|
|
G4double kinEnergy,
|
|
G4double Z,
|
|
G4double A=0.,
|
|
G4double cut=0.,
|
|
G4double emax=DBL_MAX);
|
|
|
|
virtual void SampleSecondaries(std::vector<G4DynamicParticle*>*,
|
|
const G4MaterialCutsCouple*,
|
|
const G4DynamicParticle*,
|
|
G4double tmin,
|
|
G4double maxEnergy);
|
|
|
|
virtual void SetupForMaterial(const G4ParticleDefinition*,
|
|
const G4Material*,G4double);
|
|
|
|
// * fast inline functions *
|
|
inline void SetCurrentElement(G4double /*Z*/);
|
|
|
|
// set / get methods
|
|
inline void SetLPMconstant(G4double val);
|
|
inline G4double LPMconstant() const;
|
|
|
|
inline void SetLPMflag(G4bool);
|
|
inline G4bool LPMflag() const;
|
|
|
|
protected:
|
|
// screening functions
|
|
inline G4double Phi1(G4double delta) const;
|
|
inline G4double Phi2(G4double delta) const;
|
|
inline G4double DeltaMax() const;
|
|
inline G4double DeltaMin(G4double) const;
|
|
// lpm functions
|
|
void CalcLPMFunctions(G4double k, G4double eplus);
|
|
|
|
// obsolete
|
|
G4double ScreenFunction1(G4double ScreenVariable);
|
|
G4double ScreenFunction2(G4double ScreenVariable);
|
|
|
|
G4double ComputeXSectionPerAtom(G4double totalEnergy, G4double Z);
|
|
|
|
G4double ComputeDXSectionPerAtom(G4double eplusEnergy, G4double totalEnergy, G4double Z);
|
|
G4double ComputeRelDXSectionPerAtom(G4double eplusEnergy, G4double totalEnergy, G4double Z);
|
|
|
|
// hide assignment operator
|
|
G4PairProductionRelModel & operator=(const G4PairProductionRelModel &right);
|
|
G4PairProductionRelModel(const G4PairProductionRelModel&);
|
|
|
|
G4NistManager* nist;
|
|
|
|
G4ParticleDefinition* theGamma;
|
|
G4ParticleDefinition* theElectron;
|
|
G4ParticleDefinition* thePositron;
|
|
G4ParticleChangeForGamma* fParticleChange;
|
|
|
|
G4double fLPMconstant;
|
|
G4bool fLPMflag;
|
|
|
|
// cash
|
|
G4double z13, z23, lnZ;
|
|
G4double Fel, Finel, fCoulomb;
|
|
G4double currentZ;
|
|
|
|
// LPM effect
|
|
G4double lpmEnergy;
|
|
G4double xiLPM, phiLPM, gLPM;
|
|
|
|
// consts
|
|
G4bool use_completescreening;
|
|
|
|
static const G4double xgi[8], wgi[8];
|
|
static const G4double Fel_light[5];
|
|
static const G4double Finel_light[5];
|
|
static const G4double facFel;
|
|
static const G4double facFinel;
|
|
|
|
static const G4double preS1, logTwo;
|
|
|
|
};
|
|
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
inline
|
|
void G4PairProductionRelModel::SetLPMconstant(G4double val)
|
|
{
|
|
fLPMconstant = val;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
inline
|
|
G4double G4PairProductionRelModel::LPMconstant() const
|
|
{
|
|
return fLPMconstant;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
inline
|
|
void G4PairProductionRelModel::SetLPMflag(G4bool val)
|
|
{
|
|
fLPMflag = val;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
inline
|
|
G4bool G4PairProductionRelModel::LPMflag() const
|
|
{
|
|
return fLPMflag;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
inline void G4PairProductionRelModel::SetCurrentElement(G4double Z)
|
|
{
|
|
if(Z != currentZ) {
|
|
currentZ = Z;
|
|
|
|
G4int iz = G4int(Z);
|
|
z13 = nist->GetZ13(iz);
|
|
z23 = z13*z13;
|
|
lnZ = nist->GetLOGZ(iz);
|
|
|
|
if (iz <= 4) {
|
|
Fel = Fel_light[iz];
|
|
Finel = Finel_light[iz] ;
|
|
}
|
|
else {
|
|
Fel = facFel - lnZ/3. ;
|
|
Finel = facFinel - 2.*lnZ/3. ;
|
|
}
|
|
fCoulomb=GetCurrentElement()->GetfCoulomb();
|
|
}
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
inline G4double G4PairProductionRelModel::Phi1(G4double delta) const
|
|
{
|
|
G4double screenVal;
|
|
|
|
if (delta > 1.)
|
|
screenVal = 21.12 - 4.184*std::log(delta+0.952);
|
|
else
|
|
screenVal = 20.868 - delta*(3.242 - 0.625*delta);
|
|
|
|
return screenVal;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
inline G4double G4PairProductionRelModel::Phi2(G4double delta) const
|
|
{
|
|
G4double screenVal;
|
|
|
|
if (delta > 1.)
|
|
screenVal = 21.12 - 4.184*std::log(delta+0.952);
|
|
else
|
|
screenVal = 20.209 - delta*(1.930 + 0.086*delta);
|
|
|
|
return screenVal;
|
|
}
|
|
|
|
inline G4double G4PairProductionRelModel::ScreenFunction1(G4double ScreenVariable)
|
|
|
|
// compute the value of the screening function 3*PHI1 - PHI2
|
|
|
|
{
|
|
G4double screenVal;
|
|
|
|
if (ScreenVariable > 1.)
|
|
screenVal = 42.24 - 8.368*std::log(ScreenVariable+0.952);
|
|
else
|
|
screenVal = 42.392 - ScreenVariable*(7.796 - 1.961*ScreenVariable);
|
|
|
|
return screenVal;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
inline G4double G4PairProductionRelModel::ScreenFunction2(G4double ScreenVariable)
|
|
|
|
// compute the value of the screening function 1.5*PHI1 + 0.5*PHI2
|
|
|
|
{
|
|
G4double screenVal;
|
|
|
|
if (ScreenVariable > 1.)
|
|
screenVal = 42.24 - 8.368*std::log(ScreenVariable+0.952);
|
|
else
|
|
screenVal = 41.405 - ScreenVariable*(5.828 - 0.8945*ScreenVariable);
|
|
|
|
return screenVal;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
|
|
inline G4double G4PairProductionRelModel::DeltaMax() const
|
|
{
|
|
// k > 50 MeV
|
|
G4double FZ = 8.*(lnZ/3. + fCoulomb);
|
|
return std::exp( (42.24-FZ)/8.368 ) + 0.952;
|
|
}
|
|
|
|
inline G4double G4PairProductionRelModel::DeltaMin(G4double k) const
|
|
{
|
|
return 4.*136./z13*(electron_mass_c2/k);
|
|
}
|
|
|
|
|
|
|
|
#endif
|