CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EcalTPGTowerStatus.h
Go to the documentation of this file.
1 #ifndef EcalTPGTowerStatus_h
2 #define EcalTPGTowerStatus_h
3 
4 #include <map>
5 #include <boost/cstdint.hpp>
6 
8 {
9  public:
12 
13  // map<stripId, lut>
14  const std::map<uint32_t, uint16_t> & getMap() const { return map_; }
15  void setValue(const uint32_t & id, const uint16_t & val) ;
16 
17  private:
18  std::map<uint32_t, uint16_t> map_ ;
19 
20 };
21 
22 typedef std::map<uint32_t, uint16_t> EcalTPGTowerStatusMap;
23 typedef std::map<uint32_t, uint16_t>::const_iterator EcalTPGTowerStatusMapIterator;
24 
25 #endif
std::map< uint32_t, uint16_t >::const_iterator EcalTPGTowerStatusMapIterator
std::map< uint32_t, uint16_t > EcalTPGTowerStatusMap
std::map< uint32_t, uint16_t > map_
const std::map< uint32_t, uint16_t > & getMap() const
void setValue(const uint32_t &id, const uint16_t &val)