// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // // $Id: G4MaterialPropertiesTable.hh,v 1.20 2009/04/21 15:35:45 gcosmo Exp $ // GEANT4 tag $Name: materials-V09-02-18 $ // //////////////////////////////////////////////////////////////////////// // // class G4MaterialPropertiesTable // // Class description: // // A Material properties table is a hash table, with // key = property name, and value either G4double or // G4MaterialPropertyVector // File: G4MaterialPropertiesTable.hh // Version: 1.0 // Created: 1996-02-08 // Author: Juliet Armstrong // Updated: 2005-05-12 add SetGROUPVEL() by P. Gumplinger // 2002-11-05 add named material constants by P. Gumplinger // 1999-11-05 Migration from G4RWTPtrHashDictionary to STL // by John Allison // 1999-10-29 add method and class descriptors // 1997-03-25 by Peter Gumplinger // > cosmetics (only) // mail: gum@triumf.ca // //////////////////////////////////////////////////////////////////////// #ifndef G4MaterialPropertiesTable_h #define G4MaterialPropertiesTable_h 1 ///////////// // Includes ///////////// #include #include #include "globals.hh" #include "G4MaterialPropertyVector.hh" ///////////////////// // Class Definition ///////////////////// class G4MaterialPropertiesTable { public: // Without description G4MaterialPropertiesTable(); ~G4MaterialPropertiesTable(); public: // With description inline void AddConstProperty(const char *key, G4double PropertyValue); // Add a new property to the table by giving a key-name and value inline void AddProperty(const char *key, G4double *PhotonEnergies, G4double *PropertyValues, G4int NumEntries); // Add a new property to the table by giving a key-name and the // arrays x and y of size NumEntries. inline void AddProperty(const char *key, G4MaterialPropertyVector *opv); // Add a new property to the table by giving a key-name and an // already constructed G4MaterialPropertyVector. inline void RemoveConstProperty(const char *key); // Remove a constant property from the table. inline void RemoveProperty(const char *key); // Remove a property from the table. inline G4double GetConstProperty(const char *key); // Get the constant property from the table corresponding to the key-name inline G4bool ConstPropertyExists(const char *key); // Return true if a const property 'key' exists. inline G4MaterialPropertyVector* GetProperty(const char *key); // Get the property from the table corresponding to the key-name. inline void AddEntry(const char *key, G4double aPhotonEnergy, G4double aPropertyValue); // Add a new entry (pair of numbers) to the table for a given key. inline void RemoveEntry(const char *key, G4double aPhotonEnergy); // Remove an entry from the table for a given key and x-value. void DumpTable(); public: // without description const std::map< G4String, G4MaterialPropertyVector*, std::less >* GetPropertiesMap() const { return &MPT; } const std::map< G4String, G4double, std::less >* GetPropertiesCMap() const { return &MPTC; } // Accessors required for persistency purposes private: G4MaterialPropertyVector* SetGROUPVEL(); private: std::map > MPT; typedef std::map< G4String, G4MaterialPropertyVector*, std::less >::iterator MPTiterator; std::map< G4String, G4double, std::less > MPTC; typedef std::map< G4String, G4double, std::less >::iterator MPTCiterator; }; ///////////////////// // Inline definitions ///////////////////// #include "G4MaterialPropertiesTable.icc" #endif /* G4MaterialPropertiesTable_h */