CMS 3D CMS Logo

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