Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 // G4tgbMaterialMgr 27 // 28 // Class description: 29 // 30 // Singleton class to manage the building of t 31 // as well as the construction of the correspo 32 33 // Author: P.Arce, CIEMAT (November 2007) 34 // ------------------------------------------- 35 #ifndef G4tgbMaterialMgr_hh 36 #define G4tgbMaterialMgr_hh 1 37 38 #include "globals.hh" 39 40 #include "G4tgbIsotope.hh" 41 #include "G4tgbElement.hh" 42 #include "G4tgbMaterial.hh" 43 44 #include "G4tgrIsotope.hh" 45 #include "G4tgrElement.hh" 46 #include "G4tgrElement.hh" 47 #include "G4tgrMaterial.hh" 48 49 #include "G4Isotope.hh" 50 #include "G4Element.hh" 51 #include "G4Material.hh" 52 53 using G4mstgbisot = std::map<G4String, G4tgbIs 54 using G4mstgbelem = std::map<G4String, G4tgbEl 55 using G4mstgbmate = std::map<G4String, G4tgbMa 56 using G4msg4isot = std::map<G4String, G4Isotop 57 using G4msg4elem = std::map<G4String, G4Elemen 58 using G4msg4mate = std::map<G4String, G4Materi 59 60 class G4tgbMaterialMgr 61 { 62 public: 63 64 ~G4tgbMaterialMgr(); 65 66 static G4tgbMaterialMgr* GetInstance(); 67 // Get only instance (it it does not exi 68 69 void CopyIsotopes(); 70 // Copy the G4tgrIsotopes into G4tgbIsot 71 void CopyElements(); 72 // Copy the G4tgrElements into G4tgbElem 73 void CopyMaterials(); 74 // Copy the G4tgrMaterials into G4tgbMat 75 76 G4Isotope* FindOrBuildG4Isotope(const G4St 77 // Look for a G4Isotope that has to exis 78 // (if not found create it from the corr 79 G4Isotope* FindBuiltG4Isotope(const G4Stri 80 // Look for a G4Isotope and if not found 81 G4tgbIsotope* FindG4tgbIsotope(const G4Str 82 G4bool bMus 83 // Look for a G4Isotope and if not found 84 85 G4Element* FindOrBuildG4Element(const G4St 86 G4bool bMu 87 // Look for a G4Element that has to exis 88 // (if not found create it from the corr 89 G4Element* FindBuiltG4Element(const G4Stri 90 // Look for a G4Element and if not found 91 G4tgbElement* FindG4tgbElement(const G4Str 92 G4bool bMus 93 // Look for a G4Element and if not found 94 95 G4Material* FindOrBuildG4Material(const G4 96 G4bool b 97 // Look for a G4Material that has to exi 98 // (if not found create it from the corr 99 G4Material* FindBuiltG4Material(const G4St 100 // Look for a G4Material and if not foun 101 G4tgbMaterial* FindG4tgbMaterial(const G4S 102 G4bool bM 103 // Look for a G4tgbMaterial and if not f 104 105 const G4msg4isot GetG4IsotopeList() const 106 const G4msg4elem GetG4ElementList() const 107 const G4msg4mate GetG4MaterialList() const 108 109 private: 110 111 G4tgbMaterialMgr(); 112 // Private Constructor 113 114 private: 115 116 static G4ThreadLocal G4tgbMaterialMgr* the 117 118 G4mstgbisot theG4tgbIsotopes; 119 // List of all tgbIsotopes created 120 G4mstgbelem theG4tgbElements; 121 // List of all tgbElements created 122 G4mstgbmate theG4tgbMaterials; 123 // List of all G4tgbMaterials created 124 G4msg4isot theG4Isotopes; 125 // Container of all G4Isotopes created 126 G4msg4elem theG4Elements; 127 // Container of all G4Elements created 128 G4msg4mate theG4Materials; 129 // Container of all G4Materials created 130 }; 131 132 #endif 133