Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // 26 // >> 27 // $Id: G4DopplerProfile.hh 66241 2012-12-13 18:34:42Z gunter $ 27 // 28 // 28 // Author: Maria Grazia Pia (Maria.Grazia.Pia@ 29 // Author: Maria Grazia Pia (Maria.Grazia.Pia@cern.ch) 29 // 30 // 30 // History: 31 // History: 31 // ----------- 32 // ----------- 32 // 6 Aug 2001 MGP Created 33 // 6 Aug 2001 MGP Created 33 // 34 // 34 // ------------------------------------------- 35 // ------------------------------------------------------------------- 35 36 36 // Class description: 37 // Class description: 37 // Low Energy Electromagnetic Physics 38 // Low Energy Electromagnetic Physics 38 // Shell data set: shell identifiers and bindi 39 // Shell data set: shell identifiers and binding energies 39 40 40 // ------------------------------------------- 41 // ------------------------------------------------------------------- 41 42 42 #ifndef G4DOPPLERPROFILE_HH 43 #ifndef G4DOPPLERPROFILE_HH 43 #define G4DOPPLERPROFILE_HH 1 44 #define G4DOPPLERPROFILE_HH 1 44 45 45 #include "globals.hh" 46 #include "globals.hh" 46 #include <vector> 47 #include <vector> 47 #include <map> 48 #include <map> 48 49 49 class G4VEMDataSet; 50 class G4VEMDataSet; 50 51 51 class G4DopplerProfile 52 class G4DopplerProfile 52 { 53 { 53 public: 54 public: 54 explicit G4DopplerProfile(G4int minZ = 1, G4 << 55 >> 56 G4DopplerProfile(G4int minZ = 1, G4int maxZ = 100); >> 57 55 ~G4DopplerProfile(); 58 ~G4DopplerProfile(); 56 59 57 size_t NumberOfProfiles(G4int Z) const; 60 size_t NumberOfProfiles(G4int Z) const; 58 61 59 const G4VEMDataSet* Profiles(G4int Z) const; 62 const G4VEMDataSet* Profiles(G4int Z) const; 60 const G4VEMDataSet* Profile(G4int Z, G4int S 63 const G4VEMDataSet* Profile(G4int Z, G4int ShellIndex) const; 61 64 62 void PrintData() const; << 65 void PrintData() const; 63 66 64 // Random select a momentum value based on D 67 // Random select a momentum value based on Doppler profiles 65 G4double RandomSelectMomentum(G4int Z, G4int 68 G4double RandomSelectMomentum(G4int Z, G4int shellIndex) const; 66 69 67 private: 70 private: >> 71 68 // Hide copy constructor and assignment oper 72 // Hide copy constructor and assignment operator 69 G4DopplerProfile& operator=(const G4DopplerP << 73 G4DopplerProfile& operator=(const G4DopplerProfile& right); 70 G4DopplerProfile(const G4DopplerProfile&) = << 74 G4DopplerProfile(const G4DopplerProfile&); 71 void LoadBiggsP(const G4String& fileName); << 72 void LoadProfile(const G4String& fileName, G << 73 75 74 std::map<G4int,G4VEMDataSet*,std::less<G4int 76 std::map<G4int,G4VEMDataSet*,std::less<G4int> > profileMap; 75 std::vector<G4int> nShells; 77 std::vector<G4int> nShells; 76 std::vector<G4double> biggsP; << 77 78 78 G4int zMin; 79 G4int zMin; 79 G4int zMax; 80 G4int zMax; 80 81 81 size_t nBiggs = 31; << 82 size_t nBiggs; >> 83 >> 84 std::vector<G4double> biggsP; >> 85 >> 86 void LoadBiggsP(const G4String& fileName); >> 87 void LoadProfile(const G4String& fileName, G4int Z); >> 88 82 }; 89 }; 83 90 84 #endif 91 #endif 85 92 86 93 87 94 88 95 89 96 90 97 91 98 92 99 93 100 94 101