// // ******************************************************************** // * 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: G4PenelopeBremsstrahlungFS.hh,v 1.1 2010-12-20 14:11:13 pandola Exp $ // GEANT4 tag $Name: not supported by cvs2svn $ // // Author: Luciano Pandola // // History: // ----------- // 20 Oct 2010 L. Pandola 1st implementation. // 02 May 2011 L. Pandola Remove dependency on CLHEP::HepMatrix // 24 May 2011 L. Pandola Renamed (make default Penelope) // // ------------------------------------------------------------------- // // Class description: // Helper class for the calculation of final state (energy and angular // distribution) for bremsstrahlung, Penelope Model, version 2008 // ------------------------------------------------------------------- #ifndef G4PENELOPEBREMSSTRAHLUNGFS_HH #define G4PENELOPEBREMSSTRAHLUNGFS_HH 1 #include "globals.hh" #include "G4DataVector.hh" #include class G4PhysicsFreeVector; class G4PhysicsLogVector; class G4Material; class G4PhysicsTable; class G4PenelopeBremsstrahlungFS { public: G4PenelopeBremsstrahlungFS(); ~G4PenelopeBremsstrahlungFS(); G4double GetEffectiveZSquared(const G4Material* mat); void ClearTables(); size_t GetNBinsX(){return nBinsX;}; //utilities G4double GetMomentumIntegral(G4double* y, G4double up,G4int momOrder); G4PhysicsTable* GetScaledXSTable(const G4Material*,G4double cut); G4double SampleGammaEnergy(G4double energy,const G4Material*, G4double cut); private: //assignment operator G4PenelopeBremsstrahlungFS & operator=(const G4PenelopeBremsstrahlungFS &right); //copy constructor G4PenelopeBremsstrahlungFS(const G4PenelopeBremsstrahlungFS&); //Differential cross section tables //Table contains G4PhysicsVectors of log(XS(E,x)) vs. log(E) for a grid of 32 values in //x (= reduced photon energy) std::map< std::pair , G4PhysicsTable*> *theReducedXSTable; void BuildScaledXSTable(const G4Material* material,G4double cut); std::map *theEffectiveZSq; //Element data table static const size_t nBinsE = 57; static const size_t nBinsX = 32; //x and E grids used in the data tables G4double theXGrid[nBinsX]; G4double theEGrid[nBinsE]; void ReadDataFile(G4int Z); //Map of element data vs. Z. //This is conceptually an array [57][33] with 57 energy //points and 32 points in x. The 33-th column gives the total XS vs. E. //It is implemented as a one-dimensional array of dimension //57*33=1881 elements. data[e][x] --> theElementData[e*(nBinsX+1)+x] std::map *theElementData; //Tables for energy sampling void InitializeEnergySampling(const G4Material*,G4double cut); //Table contains G4PhysicsVectors of integral_XS(E,x) vs. x for a grid of //57 values in energy std::map< std::pair , G4PhysicsTable*> *theSamplingTable; std::map< std::pair , G4PhysicsFreeVector* > *thePBcut; }; #endif