G4eIonisationParameters.hh

Go to the documentation of this file.
00001 //
00002 // ********************************************************************
00003 // * License and Disclaimer                                           *
00004 // *                                                                  *
00005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
00006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
00007 // * conditions of the Geant4 Software License,  included in the file *
00008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
00009 // * include a list of copyright holders.                             *
00010 // *                                                                  *
00011 // * Neither the authors of this software system, nor their employing *
00012 // * institutes,nor the agencies providing financial support for this *
00013 // * work  make  any representation or  warranty, express or implied, *
00014 // * regarding  this  software system or assume any liability for its *
00015 // * use.  Please see the license in the file  LICENSE  and URL above *
00016 // * for the full disclaimer and the limitation of liability.         *
00017 // *                                                                  *
00018 // * This  code  implementation is the result of  the  scientific and *
00019 // * technical work of the GEANT4 collaboration.                      *
00020 // * By using,  copying,  modifying or  distributing the software (or *
00021 // * any work based  on the software)  you  agree  to acknowledge its *
00022 // * use  in  resulting  scientific  publications,  and indicate your *
00023 // * acceptance of all terms of the Geant4 Software license.          *
00024 // ********************************************************************
00025 //
00026 //
00027 // $Id$
00028 //
00029 // Author: Maria Grazia Pia (Maria.Grazia.Pia@cern.ch)
00030 //         V. Ivanchenko 
00031 //         Values of the parameters from A. Forti's fit
00032 //
00033 // History:
00034 // -----------
00035 // 31 Jul 2001   MGP        Created
00036 // 12.09.01 V.Ivanchenko    Add param and interpolation of parametersVI  
00037 // 10.10.2001 MGP           Revision to improve code quality and 
00038 //                          consistency with design
00039 // 29.11.01  V.Ivanchenko    Parametrisation is updated
00040 //
00041 // -------------------------------------------------------------------
00042 
00043 // Class description:
00044 // Low Energy Electromagnetic Physics
00045 // Set of parameters for LowEnergyIonisation described spectrum 
00046 // of delta-electrons retrieved from EEDL database.
00047 // Further documentation available from http://www.ge.infn.it/geant4/lowE
00048 
00049 // -------------------------------------------------------------------
00050 
00051 #ifndef G4IONISATIONPARAMETERS_HH
00052 #define G4IONISATIONPARAMETERS_HH 1
00053 
00054 #include "globals.hh"
00055 #include "G4DataVector.hh"
00056 #include <map>
00057 
00058 class G4VDataSetAlgorithm;
00059 class G4VEMDataSet;
00060 
00061 class G4eIonisationParameters {
00062  
00063 public:
00064 
00065   G4eIonisationParameters(G4int minZ = 1, G4int maxZ = 99);
00066 
00067   ~G4eIonisationParameters();
00068  
00069   G4double Parameter(G4int Z, G4int shellIndex, 
00070                      G4int parameterIndex, G4double e) const;
00071 
00072   G4double Excitation(G4int Z, G4double e) const;
00073   
00074   void PrintData() const;
00075 
00076 private:
00077 
00078   // Hide copy constructor and assignment operator 
00079   G4eIonisationParameters(const G4eIonisationParameters&);
00080   G4eIonisationParameters & operator=(const G4eIonisationParameters &right);
00081 
00082   void LoadData();
00083 
00084   G4int zMin;
00085   G4int zMax;
00086 
00087   G4DataVector activeZ;
00088 
00089   // Parameters of the energy spectra
00090   std::map<G4int,G4VEMDataSet*,std::less<G4int> > param;
00091   std::map<G4int,G4VEMDataSet*,std::less<G4int> > excit;
00092 
00093   size_t length;
00094 };
00095  
00096 #endif

Generated on Mon May 27 17:48:06 2013 for Geant4 by  doxygen 1.4.7