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: G4ShellData.hh,v 1.3 2003/06/16 16:59:48 gunter Exp $ >> 25 // GEANT4 tag $Name: geant4-08-00 $ 27 // 26 // 28 // Author: Maria Grazia Pia (Maria.Grazia.Pia@ 27 // Author: Maria Grazia Pia (Maria.Grazia.Pia@cern.ch) 29 // 28 // 30 // History: 29 // History: 31 // ----------- 30 // ----------- 32 // 6 Aug 2001 MGP Created 31 // 6 Aug 2001 MGP Created 33 // 32 // 34 // ------------------------------------------- 33 // ------------------------------------------------------------------- 35 34 36 // Class description: 35 // Class description: 37 // Low Energy Electromagnetic Physics 36 // Low Energy Electromagnetic Physics 38 // Shell data set: shell identifiers and bindi 37 // Shell data set: shell identifiers and binding energies 39 38 40 // ------------------------------------------- 39 // ------------------------------------------------------------------- 41 40 42 #ifndef G4SHELLDATA_HH 41 #ifndef G4SHELLDATA_HH 43 #define G4SHELLDATA_HH 1 42 #define G4SHELLDATA_HH 1 44 43 45 #include "globals.hh" 44 #include "globals.hh" 46 #include <vector> 45 #include <vector> 47 #include <map> 46 #include <map> 48 47 49 class G4DataVector; 48 class G4DataVector; 50 49 51 class G4ShellData 50 class G4ShellData 52 { 51 { 53 public: 52 public: 54 explicit G4ShellData(G4int minZ = 1, G4int m << 53 >> 54 G4ShellData(G4int minZ = 1, G4int maxZ = 99); >> 55 55 ~G4ShellData(); 56 ~G4ShellData(); 56 57 57 std::size_t NumberOfShells(G4int Z) const; << 58 size_t NumberOfShells(G4int Z) const; >> 59 58 G4int ShellId(G4int Z, G4int shellIndex) con 60 G4int ShellId(G4int Z, G4int shellIndex) const; 59 G4double ShellOccupancyProbability(G4int Z, << 61 60 const std::vector<G4double>& ShellIdVector(G << 62 const G4DataVector& ShellIdVector(G4int Z) const; >> 63 61 G4double BindingEnergy(G4int Z, G4int shellI 64 G4double BindingEnergy(G4int Z, G4int shellIndex) const; 62 void SetOccupancyData() { occupancyData = tr << 65 63 void LoadData(const G4String& fileName); 66 void LoadData(const G4String& fileName); >> 67 64 void PrintData() const; 68 void PrintData() const; 65 69 66 // Randomly select a shell based on shell oc << 70 private: 67 G4int SelectRandomShell(G4int Z) const; << 68 71 69 // Hide copy constructor and assignment oper 72 // Hide copy constructor and assignment operator 70 G4ShellData& operator=(const G4ShellData& ri << 73 G4ShellData& operator=(const G4ShellData& right); 71 G4ShellData(const G4ShellData&) = delete; << 74 G4ShellData(const G4ShellData&); 72 75 73 private: << 76 G4int zMin; 74 const std::vector<G4double>& ShellVector(G4i << 77 G4int zMax; 75 78 76 std::map<G4int,std::vector<G4double>*,std::l << 79 std::map<G4int,G4DataVector*,std::less<G4int> > idMap; 77 std::map<G4int,G4DataVector*,std::less<G4int 80 std::map<G4int,G4DataVector*,std::less<G4int> > bindingMap; 78 std::vector<G4int> nShells; 81 std::vector<G4int> nShells; 79 std::map<G4int,std::vector<G4double>*,std::l << 80 82 81 G4int zMin; << 82 G4int zMax; << 83 G4bool occupancyData; << 84 }; 83 }; 85 84 86 #endif 85 #endif 87 86 88 87 89 88 90 89 91 90 92 91 93 92 94 93 95 94 96 95