Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 // 23 // >> 24 // $Id: G4eIonisationParameters.hh,v 1.6 2001/11/29 19:01:45 vnivanch Exp $ >> 25 // GEANT4 tag $Name: geant4-04-01 $ 27 // 26 // 28 // Author: Maria Grazia Pia (Maria.Grazia.Pia@ 27 // Author: Maria Grazia Pia (Maria.Grazia.Pia@cern.ch) 29 // V. Ivanchenko 28 // V. Ivanchenko 30 // Values of the parameters from A. Fo 29 // Values of the parameters from A. Forti's fit 31 // 30 // 32 // History: 31 // History: 33 // ----------- 32 // ----------- 34 // 31 Jul 2001 MGP Created 33 // 31 Jul 2001 MGP Created 35 // 12.09.01 V.Ivanchenko Add param and inte 34 // 12.09.01 V.Ivanchenko Add param and interpolation of parametersVI 36 // 10.10.2001 MGP Revision to improv 35 // 10.10.2001 MGP Revision to improve code quality and 37 // consistency with d 36 // consistency with design 38 // 29.11.01 V.Ivanchenko Parametrisation i 37 // 29.11.01 V.Ivanchenko Parametrisation is updated 39 // 38 // 40 // ------------------------------------------- 39 // ------------------------------------------------------------------- 41 40 42 // Class description: 41 // Class description: 43 // Low Energy Electromagnetic Physics 42 // Low Energy Electromagnetic Physics 44 // Set of parameters for LowEnergyIonisation d 43 // Set of parameters for LowEnergyIonisation described spectrum 45 // of delta-electrons retrieved from EEDL data 44 // of delta-electrons retrieved from EEDL database. >> 45 // Further documentation available from http://www.ge.infn.it/geant4/lowE >> 46 46 // ------------------------------------------- 47 // ------------------------------------------------------------------- 47 48 48 #ifndef G4IONISATIONPARAMETERS_HH 49 #ifndef G4IONISATIONPARAMETERS_HH 49 #define G4IONISATIONPARAMETERS_HH 1 50 #define G4IONISATIONPARAMETERS_HH 1 50 51 51 #include "globals.hh" 52 #include "globals.hh" 52 #include "G4DataVector.hh" 53 #include "G4DataVector.hh" 53 #include <map> << 54 #include "g4std/map" 54 55 55 class G4VDataSetAlgorithm; 56 class G4VDataSetAlgorithm; 56 class G4VEMDataSet; 57 class G4VEMDataSet; 57 58 58 class G4eIonisationParameters { 59 class G4eIonisationParameters { 59 60 60 public: 61 public: 61 explicit G4eIonisationParameters(); << 62 >> 63 G4eIonisationParameters(G4int minZ = 1, G4int maxZ = 99); 62 64 63 ~G4eIonisationParameters(); 65 ~G4eIonisationParameters(); 64 66 65 G4double Parameter(G4int Z, G4int shellIndex 67 G4double Parameter(G4int Z, G4int shellIndex, 66 G4int parameterIndex, G4double e) con 68 G4int parameterIndex, G4double e) const; >> 69 67 G4double Excitation(G4int Z, G4double e) con 70 G4double Excitation(G4int Z, G4double e) const; >> 71 68 void PrintData() const; 72 void PrintData() const; 69 73 70 G4eIonisationParameters(const G4eIonisationP << 71 G4eIonisationParameters & operator=(const G4 << 72 << 73 private: 74 private: >> 75 >> 76 // Hide copy constructor and assignment operator >> 77 G4eIonisationParameters(const G4eIonisationParameters&); >> 78 G4eIonisationParameters & operator=(const G4eIonisationParameters &right); >> 79 74 void LoadData(); 80 void LoadData(); 75 81 >> 82 G4int zMin; >> 83 G4int zMax; >> 84 76 G4DataVector activeZ; 85 G4DataVector activeZ; >> 86 77 // Parameters of the energy spectra 87 // Parameters of the energy spectra 78 std::map<G4int,G4VEMDataSet*,std::less<G4int << 88 G4std::map<G4int,G4VEMDataSet*,G4std::less<G4int> > param; 79 std::map<G4int,G4VEMDataSet*,std::less<G4int << 89 G4std::map<G4int,G4VEMDataSet*,G4std::less<G4int> > excit; 80 90 81 size_t length = 24; << 91 size_t length; 82 }; 92 }; 83 93 84 #endif 94 #endif 85 95