CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EcalTPGFineGrainStripEE.h
Go to the documentation of this file.
1 #ifndef EcalTPGFineGrainStripEE_h
2 #define EcalTPGFineGrainStripEE_h
3 
4 #include <map>
5 #include <boost/cstdint.hpp>
6 
8 {
9  public:
12 
13  struct Item
14  {
15  uint32_t threshold ;
16  uint32_t lut ;
17  };
18 
19  const std::map<uint32_t, Item> & getMap() const { return map_; }
20  void setValue(const uint32_t & id, const Item & value) ;
21 
22  private:
23  std::map<uint32_t, Item> map_ ;
24 
25 };
26 
27 typedef std::map<uint32_t, EcalTPGFineGrainStripEE::Item> EcalTPGFineGrainStripEEMap;
28 typedef std::map<uint32_t, EcalTPGFineGrainStripEE::Item>::const_iterator EcalTPGFineGrainStripEEMapIterator;
29 
30 #endif
std::map< uint32_t, EcalTPGFineGrainStripEE::Item > EcalTPGFineGrainStripEEMap
void setValue(const uint32_t &id, const Item &value)
std::map< uint32_t, EcalTPGFineGrainStripEE::Item >::const_iterator EcalTPGFineGrainStripEEMapIterator
const std::map< uint32_t, Item > & getMap() const
std::map< uint32_t, Item > map_