// // ******************************************************************** // * 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. * // ******************************************************************** // // // GEANT4 tag $Name: geant4-09-01 $ // // // GEANT4 physics class: G4ElectroNuclearCrossSection -- header file // M.V. Kossov, ITEP(Moscow), 24-OCT-01 // The last update: M.V. Kossov, CERN/ITEP (Moscow) 25-Sept-03 // #ifndef G4ElectroNuclearCrossSection_h #define G4ElectroNuclearCrossSection_h 1 #include "G4VCrossSectionDataSet.hh" #include "G4DynamicParticle.hh" #include "G4Element.hh" #include "G4ParticleTable.hh" #include "G4NucleiProperties.hh" #include "G4NucleiPropertiesTable.hh" #include #include "Randomize.hh" #include "G4Electron.hh" #include "G4Positron.hh" class G4ElectroNuclearCrossSection : public G4VCrossSectionDataSet { public: G4ElectroNuclearCrossSection(); ~G4ElectroNuclearCrossSection(); G4bool IsApplicable(const G4DynamicParticle* aParticle, const G4Element* ) { return IsZAApplicable(aParticle, 0., 0.); } G4bool IsZAApplicable(const G4DynamicParticle* aParticle, G4double /*ZZ*/, G4double /*AA*/) { G4bool result = false; if( aParticle->GetDefinition()==G4Electron::ElectronDefinition()) result = true; if( aParticle->GetDefinition()==G4Positron::PositronDefinition()) result = true; return result; } G4double GetCrossSection(const G4DynamicParticle* aParticle, const G4Element* anElement, G4double T=0.); G4double GetIsoZACrossSection(const G4DynamicParticle* aParticle, G4double ZZ, G4double AA, G4double T=0.); G4double GetEquivalentPhotonEnergy(); G4double GetVirtualFactor(G4double nu, G4double Q2); G4double GetEquivalentPhotonQ2(G4double nu); void BuildPhysicsTable(const G4ParticleDefinition&) {} void DumpPhysicsTable(const G4ParticleDefinition&) {} private: G4int GetFunctions(G4double a, G4double* x, G4double* y, G4double* z); //G4double LinearFit(G4double X, G4int N, const G4double* XN, const G4double* YN); G4double ThresholdEnergy(G4int Z, G4int N); G4double HighEnergyJ1(G4double lE); G4double HighEnergyJ2(G4double lE); G4double HighEnergyJ3(G4double lE); G4double SolveTheEquation(G4double f); G4double Fun(G4double x); G4double DFun(G4double x); // Body private: static G4int lastN; // The last N of calculated nucleus static G4int lastZ; // The last Z of calculated nucleus static G4int lastF; // Last used in the cross section TheFirstBin static G4double* lastJ1; // Pointer to the last array of the J1 function static G4double* lastJ2; // Pointer to the last array of the J2 function static G4double* lastJ3; // Pointer to the last array of the J3 function static G4int lastL; // Last used in the cross section TheLastBin static G4double lastE; // Last used in the cross section Energy static G4double lastTH; // Last value of the Energy Threshold static G4double lastSig; // Last value of the Cross Section static G4double lastG; // Last value of gamma=lnE-ln(me) static G4double lastH; // Last value of the High energy A-dependence static std::vector J1; // Vector of pointers to the J1 tabulated functions static std::vector J2; // Vector of pointers to the J2 tabulated functions static std::vector J3; // Vector of pointers to the J3 tabulated functions }; // Gives the threshold energy for different nuclei (min of p- and n-threshold) inline G4double G4ElectroNuclearCrossSection::ThresholdEnergy(G4int Z, G4int N) { // CHIPS - Direct GEANT //static const G4double mNeut = G4QPDGCode(2112).GetMass(); //static const G4double mProt = G4QPDGCode(2212).GetMass(); static const G4double mNeut = G4NucleiProperties::GetNuclearMass(1,0); static const G4double mProt = G4NucleiProperties::GetNuclearMass(1,1); // --------- static const G4double infEn = 9.e27; G4int A=Z+N; if(A<1) return infEn; else if(A==1) return 134.9766; // Pi0 threshold for the nucleon // CHIPS - Direct GEANT //G4double mT= G4QPDGCode(111).GetNuclMass(Z,N,0); G4double mT= 0.; if(G4NucleiPropertiesTable::IsInTable(Z,A)) mT=G4NucleiProperties::GetNuclearMass(A,Z); else return 0.; // If it is not in the Table of Stable Nuclei, then the Threshold=0 // --------- G4double mP= infEn; //if(Z) mP= G4QPDGCode(111).GetNuclMass(Z-1,N,0); if(Z&&G4NucleiPropertiesTable::IsInTable(Z-1,A-1)) mP=G4NucleiProperties::GetNuclearMass(A-1,Z-1); else return infEn; G4double mN= infEn; //if(N) mN= G4QPDGCode(111).GetNuclMass(Z,N-1,0); if(N&&G4NucleiPropertiesTable::IsInTable(Z,A-1)) mN=G4NucleiProperties::GetNuclearMass(A-1,Z); else return infEn; G4double dP= mP+mProt-mT; G4double dN= mN+mNeut-mT; if(dP