CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EcalTPGStripStatus.h
Go to the documentation of this file.
1 #ifndef EcalTPGStripStatus_h
2 #define EcalTPGStripStatus_h
3 
5 
6 #include <map>
7 #include <boost/cstdint.hpp>
8 
10 {
11  public:
14 
15  // map<stripId, status>
16  const std::map<uint32_t, uint16_t> & getMap() const { return map_; }
17  void setValue(const uint32_t & id, const uint16_t & val) ;
18 
19  private:
20  std::map<uint32_t, uint16_t> map_ ;
21 
22 
24 };
25 
26 typedef std::map<uint32_t, uint16_t> EcalTPGStripStatusMap;
27 typedef std::map<uint32_t, uint16_t>::const_iterator EcalTPGStripStatusMapIterator;
28 
29 #endif
std::map< uint32_t, uint16_t > map_
const std::map< uint32_t, uint16_t > & getMap() const
#define COND_SERIALIZABLE
Definition: Serializable.h:30
std::map< uint32_t, uint16_t > EcalTPGStripStatusMap
void setValue(const uint32_t &id, const uint16_t &val)
std::map< uint32_t, uint16_t >::const_iterator EcalTPGStripStatusMapIterator