00001 // 00002 // ******************************************************************** 00003 // * License and Disclaimer * 00004 // * * 00005 // * The Geant4 software is copyright of the Copyright Holders of * 00006 // * the Geant4 Collaboration. It is provided under the terms and * 00007 // * conditions of the Geant4 Software License, included in the file * 00008 // * LICENSE and available at http://cern.ch/geant4/license . These * 00009 // * include a list of copyright holders. * 00010 // * * 00011 // * Neither the authors of this software system, nor their employing * 00012 // * institutes,nor the agencies providing financial support for this * 00013 // * work make any representation or warranty, express or implied, * 00014 // * regarding this software system or assume any liability for its * 00015 // * use. Please see the license in the file LICENSE and URL above * 00016 // * for the full disclaimer and the limitation of liability. * 00017 // * * 00018 // * This code implementation is the result of the scientific and * 00019 // * technical work of the GEANT4 collaboration. * 00020 // * By using, copying, modifying or distributing the software (or * 00021 // * any work based on the software) you agree to acknowledge its * 00022 // * use in resulting scientific publications, and indicate your * 00023 // * acceptance of all terms of the Geant4 Software license. * 00024 // ******************************************************************** 00025 // 00026 // 00027 // $Id$ 00028 00029 #include "G4AttDefStore.hh" 00030 00031 #include "G4AttDef.hh" 00032 00033 namespace G4AttDefStore { 00034 00035 std::map<G4String,std::map<G4String,G4AttDef>*> m_defsmaps; 00036 00037 std::map<G4String,G4AttDef>* 00038 GetInstance(G4String storeKey, G4bool& isNew) 00039 { 00040 // Allocate the new map if not existing already 00041 // and return it to the caller 00042 // 00043 std::map<G4String,G4AttDef>* definitions; 00044 std::map<G4String,std::map<G4String,G4AttDef>*>::iterator iDefinitions = 00045 m_defsmaps.find(storeKey); 00046 00047 if (iDefinitions == m_defsmaps.end()) 00048 { 00049 isNew = true; 00050 definitions = new std::map<G4String,G4AttDef>; 00051 m_defsmaps[storeKey] = definitions; 00052 } 00053 else 00054 { 00055 isNew = false; 00056 definitions = iDefinitions->second; 00057 } 00058 return definitions; 00059 } 00060 00061 G4bool GetStoreKey 00062 (const std::map<G4String,G4AttDef>* definitions, G4String& key) 00063 { 00064 std::map<G4String,std::map<G4String,G4AttDef>*>::const_iterator i; 00065 for (i = m_defsmaps.begin(); i != m_defsmaps.end(); ++i) 00066 { 00067 if (i->second == definitions) 00068 { 00069 key = i->first; 00070 return true; 00071 } 00072 } 00073 00074 return false; 00075 } 00076 00077 } // End namespace G4AttDefStore.