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 // G4tgbMaterialMgr << 26 // >> 27 // $Id: G4tgbMaterialMgr.hh,v 1.5 2010-10-13 07:56:55 gcosmo Exp $ >> 28 // GEANT4 tag $Name: geant4-09-04-patch-01 $ >> 29 // >> 30 // >> 31 // class G4tgbMaterialMgr 27 // 32 // 28 // Class description: 33 // Class description: 29 // 34 // 30 // Singleton class to manage the building of t 35 // Singleton class to manage the building of transient materials, 31 // as well as the construction of the correspo 36 // as well as the construction of the corresponding G4Material's. 32 37 33 // Author: P.Arce, CIEMAT (November 2007) << 38 // History: 34 // ------------------------------------------- << 39 // - Created. P.Arce, CIEMAT (November 2007) 35 #ifndef G4tgbMaterialMgr_hh << 40 // ------------------------------------------------------------------------- 36 #define G4tgbMaterialMgr_hh 1 << 41 >> 42 #ifndef G4tgbMaterialMgr_h >> 43 #define G4tgbMaterialMgr_h 37 44 38 #include "globals.hh" 45 #include "globals.hh" 39 46 40 #include "G4tgbIsotope.hh" 47 #include "G4tgbIsotope.hh" 41 #include "G4tgbElement.hh" 48 #include "G4tgbElement.hh" 42 #include "G4tgbMaterial.hh" 49 #include "G4tgbMaterial.hh" 43 50 44 #include "G4tgrIsotope.hh" 51 #include "G4tgrIsotope.hh" 45 #include "G4tgrElement.hh" 52 #include "G4tgrElement.hh" 46 #include "G4tgrElement.hh" 53 #include "G4tgrElement.hh" 47 #include "G4tgrMaterial.hh" 54 #include "G4tgrMaterial.hh" 48 55 49 #include "G4Isotope.hh" 56 #include "G4Isotope.hh" 50 #include "G4Element.hh" 57 #include "G4Element.hh" 51 #include "G4Material.hh" 58 #include "G4Material.hh" 52 59 53 using G4mstgbisot = std::map<G4String, G4tgbIs << 60 typedef std::map< G4String, G4tgbIsotope* > G4mstgbisot; 54 using G4mstgbelem = std::map<G4String, G4tgbEl << 61 typedef std::map< G4String, G4tgbElement* > G4mstgbelem; 55 using G4mstgbmate = std::map<G4String, G4tgbMa << 62 typedef std::map< G4String, G4tgbMaterial* > G4mstgbmate; 56 using G4msg4isot = std::map<G4String, G4Isotop << 63 typedef std::map< G4String, G4Isotope* > G4msg4isot; 57 using G4msg4elem = std::map<G4String, G4Elemen << 64 typedef std::map< G4String, G4Element* > G4msg4elem; 58 using G4msg4mate = std::map<G4String, G4Materi << 65 typedef std::map< G4String, G4Material* > G4msg4mate; 59 66 60 class G4tgbMaterialMgr << 67 class G4tgbMaterialMgr 61 { 68 { 62 public: << 69 public: // with description 63 70 64 ~G4tgbMaterialMgr(); 71 ~G4tgbMaterialMgr(); 65 << 72 66 static G4tgbMaterialMgr* GetInstance(); 73 static G4tgbMaterialMgr* GetInstance(); 67 // Get only instance (it it does not exi 74 // Get only instance (it it does not exists, create it) 68 75 69 void CopyIsotopes(); 76 void CopyIsotopes(); 70 // Copy the G4tgrIsotopes into G4tgbIsot 77 // Copy the G4tgrIsotopes into G4tgbIsotopes 71 void CopyElements(); 78 void CopyElements(); 72 // Copy the G4tgrElements into G4tgbElem 79 // Copy the G4tgrElements into G4tgbElements 73 void CopyMaterials(); 80 void CopyMaterials(); 74 // Copy the G4tgrMaterials into G4tgbMat 81 // Copy the G4tgrMaterials into G4tgbMaterials 75 82 76 G4Isotope* FindOrBuildG4Isotope(const G4St << 83 G4Isotope* FindOrBuildG4Isotope(const G4String & name); 77 // Look for a G4Isotope that has to exis 84 // Look for a G4Isotope that has to exists 78 // (if not found create it from the corr 85 // (if not found create it from the corresponding G4tgbIsotope) 79 G4Isotope* FindBuiltG4Isotope(const G4Stri << 86 G4Isotope* FindBuiltG4Isotope(const G4String & name) const; 80 // Look for a G4Isotope and if not found << 87 // Look for a G4Isotope and if not found return 0 81 G4tgbIsotope* FindG4tgbIsotope(const G4Str 88 G4tgbIsotope* FindG4tgbIsotope(const G4String& name, 82 G4bool bMus << 89 G4bool bMustExist = 0) const; 83 // Look for a G4Isotope and if not found << 90 // Look for a G4Isotope and if not found return 0 84 91 85 G4Element* FindOrBuildG4Element(const G4St << 92 G4Element* FindOrBuildG4Element(const G4String & name, 86 G4bool bMu << 93 G4bool bMustExist = 1); 87 // Look for a G4Element that has to exis 94 // Look for a G4Element that has to exists by default 88 // (if not found create it from the corr 95 // (if not found create it from the corresponding G4tgbElement) 89 G4Element* FindBuiltG4Element(const G4Stri 96 G4Element* FindBuiltG4Element(const G4String& name) const; 90 // Look for a G4Element and if not found << 97 // Look for a G4Element and if not found return 0 91 G4tgbElement* FindG4tgbElement(const G4Str 98 G4tgbElement* FindG4tgbElement(const G4String& name, 92 G4bool bMus << 99 G4bool bMustExist = 0) const; 93 // Look for a G4Element and if not found << 100 // Look for a G4Element and if not found return 0 94 101 95 G4Material* FindOrBuildG4Material(const G4 102 G4Material* FindOrBuildG4Material(const G4String& name, 96 G4bool b << 103 G4bool bMustExist = 1); 97 // Look for a G4Material that has to exi << 104 // Look for a G4Material that has to exists by default 98 // (if not found create it from the corr << 105 // (if not found create it from the corresponding G4tgbMaterial) 99 G4Material* FindBuiltG4Material(const G4St 106 G4Material* FindBuiltG4Material(const G4String& name) const; 100 // Look for a G4Material and if not foun << 107 // Look for a G4Material and if not found return 0 101 G4tgbMaterial* FindG4tgbMaterial(const G4S 108 G4tgbMaterial* FindG4tgbMaterial(const G4String& name, 102 G4bool bM << 109 G4bool bMustExist = 0) const; 103 // Look for a G4tgbMaterial and if not f << 110 // Look for a G4tgbMaterial and if not found return 0 104 111 105 const G4msg4isot GetG4IsotopeList() const << 112 const G4msg4isot GetG4IsotopeList() const { return theG4Isotopes; } 106 const G4msg4elem GetG4ElementList() const << 113 const G4msg4elem GetG4ElementList() const { return theG4Elements; } 107 const G4msg4mate GetG4MaterialList() const 114 const G4msg4mate GetG4MaterialList() const { return theG4Materials; } 108 115 109 private: << 116 private: 110 117 111 G4tgbMaterialMgr(); 118 G4tgbMaterialMgr(); 112 // Private Constructor 119 // Private Constructor >> 120 >> 121 private: 113 122 114 private: << 123 static G4tgbMaterialMgr* theInstance; 115 << 116 static G4ThreadLocal G4tgbMaterialMgr* the << 117 124 118 G4mstgbisot theG4tgbIsotopes; 125 G4mstgbisot theG4tgbIsotopes; 119 // List of all tgbIsotopes created 126 // List of all tgbIsotopes created 120 G4mstgbelem theG4tgbElements; 127 G4mstgbelem theG4tgbElements; 121 // List of all tgbElements created 128 // List of all tgbElements created 122 G4mstgbmate theG4tgbMaterials; 129 G4mstgbmate theG4tgbMaterials; 123 // List of all G4tgbMaterials created 130 // List of all G4tgbMaterials created 124 G4msg4isot theG4Isotopes; << 131 G4msg4isot theG4Isotopes; 125 // Container of all G4Isotopes created 132 // Container of all G4Isotopes created 126 G4msg4elem theG4Elements; << 133 G4msg4elem theG4Elements; 127 // Container of all G4Elements created 134 // Container of all G4Elements created 128 G4msg4mate theG4Materials; << 135 G4msg4mate theG4Materials; 129 // Container of all G4Materials created 136 // Container of all G4Materials created 130 }; 137 }; 131 138 132 #endif 139 #endif 133 140