CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CSCPedestals.h
Go to the documentation of this file.
1 #ifndef CSCPedestals_h
2 #define CSCPedestals_h
3 
5 #include <vector>
6 #include <map>
7 
9  public:
10  CSCPedestals();
11  ~CSCPedestals();
12 
13  struct Item{
14  float ped;
15  float rms;
16  };
17 
18  const Item & item(const CSCDetId & cscId, int strip) const;
19 
20  typedef std::map< int,std::vector<Item> > PedestalMap;
22 };
23 
24 #endif
PedestalMap pedestals
Definition: CSCPedestals.h:21
const Item & item(const CSCDetId &cscId, int strip) const
Definition: CSCPedestals.cc:8
std::map< int, std::vector< Item > > PedestalMap
Definition: CSCPedestals.h:20