CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_0/src/CondFormats/Calibration/interface/Pedestals.h

Go to the documentation of this file.
00001 #ifndef PEDESTALS_H
00002 #define PEDESTALS_H
00003 #include<vector>
00004 class Pedestals {
00005 public:
00006   struct Item {
00007     Item(){}
00008     ~Item(){}
00009     float m_mean;
00010     float m_variance;
00011   };
00012   Pedestals();
00013   virtual ~Pedestals(){}
00014   typedef std::vector<Item>::const_iterator ItemIterator;
00015   std::vector<Item>  m_pedestals;
00016 };
00017 #endif