CMS 3D CMS Logo

ESPedestals.h
Go to the documentation of this file.
1 #ifndef ESPedestals_h
2 #define ESPedestals_h
3 
4 
6 
8 
9 struct ESPedestal {
10  struct Zero { float z1; float z2;};
11 
12  static const Zero zero;
13 
14  float mean;
15  float rms;
16 
17  public:
18 
19  float getMean() const {
20  return mean;
21  }
22 
23  float getRms() const {
24  return rms;
25  }
26 
28 };
29 
33 
34 #endif
ESPedestalsMap ESPedestals
Definition: ESPedestals.h:32
float getRms() const
Definition: ESPedestals.h:23
ESPedestalsMap::const_iterator ESPedestalsMapIterator
Definition: ESPedestals.h:31
float mean
Definition: ESPedestals.h:14
static const Zero zero
Definition: ESPedestals.h:12
#define COND_SERIALIZABLE
Definition: Serializable.h:38
std::vector< Item >::const_iterator const_iterator
float rms
Definition: ESPedestals.h:15
ESCondObjectContainer< ESPedestal > ESPedestalsMap
Definition: ESPedestals.h:30
float getMean() const
Definition: ESPedestals.h:19