// // ******************************************************************** // * 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: G4ModelColourMap.hh,v 1.2 2006/06/29 21:30:22 gunter Exp $ // GEANT4 tag $Name: $ // // Generic variable->G4Colour map, where "variable" is the template // parameter. // // Jane Tinslay March 2006 #ifndef G4MODELCOLOURMAP_HH #define G4MODELCOLOURMAP_HH #include "G4Colour.hh" #include "G4String.hh" #include template class G4ModelColourMap { public: // With description G4ModelColourMap(); virtual ~G4ModelColourMap(); // Configuration functions void Set(const T&, const G4Colour&); void Set(const T&, const G4String&); G4Colour& operator[](const T& quantity); // Access functions bool GetColour(const T&, G4Colour&) const; void Print(std::ostream& ostr) const; private: // Data member std::map fMap; }; template G4Colour& G4ModelColourMap::operator[](const T& quantity) {return fMap[quantity];} template G4ModelColourMap::G4ModelColourMap() {} template G4ModelColourMap::~G4ModelColourMap() {} template void G4ModelColourMap::Set(const T& quantity, const G4String& colour) { G4Colour myColour; // Will not setup the map if colour key does not exist if (!G4Colour::GetColour(colour, myColour)) { std::ostringstream o; o << "G4Colour with key "< void G4ModelColourMap::Set(const T& quantity, const G4Colour& colour) { fMap[quantity] = colour; } template bool G4ModelColourMap::GetColour(const T& quantity, G4Colour& colour) const { typename std::map::const_iterator iter = fMap.find(quantity); if (iter != fMap.end()) { colour = iter->second; return true; } return false; } template void G4ModelColourMap::Print(std::ostream& ostr) const { typename std::map::const_iterator iter = fMap.begin(); while (iter != fMap.end()) { ostr<< iter->first <<" : "<< iter->second <