CMS 3D CMS Logo

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