// // ******************************************************************** // * 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: G4eIonisationParameters.hh,v 1.8 2006/06/29 19:37:38 gunter Exp $ // GEANT4 tag $Name: geant4-09-04-ref-00 $ // // Author: Maria Grazia Pia (Maria.Grazia.Pia@cern.ch) // V. Ivanchenko // Values of the parameters from A. Forti's fit // // History: // ----------- // 31 Jul 2001 MGP Created // 12.09.01 V.Ivanchenko Add param and interpolation of parametersVI // 10.10.2001 MGP Revision to improve code quality and // consistency with design // 29.11.01 V.Ivanchenko Parametrisation is updated // // ------------------------------------------------------------------- // Class description: // Low Energy Electromagnetic Physics // Set of parameters for LowEnergyIonisation described spectrum // of delta-electrons retrieved from EEDL database. // Further documentation available from http://www.ge.infn.it/geant4/lowE // ------------------------------------------------------------------- #ifndef G4IONISATIONPARAMETERS_HH #define G4IONISATIONPARAMETERS_HH 1 #include "globals.hh" #include "G4DataVector.hh" #include class G4VDataSetAlgorithm; class G4VEMDataSet; class G4eIonisationParameters { public: G4eIonisationParameters(G4int minZ = 1, G4int maxZ = 99); ~G4eIonisationParameters(); G4double Parameter(G4int Z, G4int shellIndex, G4int parameterIndex, G4double e) const; G4double Excitation(G4int Z, G4double e) const; void PrintData() const; private: // Hide copy constructor and assignment operator G4eIonisationParameters(const G4eIonisationParameters&); G4eIonisationParameters & operator=(const G4eIonisationParameters &right); void LoadData(); G4int zMin; G4int zMax; G4DataVector activeZ; // Parameters of the energy spectra std::map > param; std::map > excit; size_t length; }; #endif