File indexing completed on 2024-04-06 12:01:57
0001 #ifndef PEDESTALS_H
0002 #define PEDESTALS_H
0003 #include "CondFormats/Serialization/interface/Serializable.h"
0004
0005 #include <vector>
0006 class Pedestals {
0007 public:
0008 struct Item {
0009 Item() {}
0010 ~Item() {}
0011 float m_mean;
0012 float m_variance;
0013
0014 COND_SERIALIZABLE;
0015 };
0016 Pedestals();
0017 virtual ~Pedestals() {}
0018 typedef std::vector<Item>::const_iterator ItemIterator;
0019 std::vector<Item> m_pedestals;
0020
0021 COND_SERIALIZABLE;
0022 };
0023 #endif