CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ESPedestals.h
Go to the documentation of this file.
1 #ifndef ESPedestals_h
2 #define ESPedestals_h
3 
4 
6 
7 struct ESPedestal {
8  struct Zero { float z1; float z2;};
9 
10  static Zero zero;
11 
12  float mean;
13  float rms;
14 
15  public:
16 
17  float getMean() const {
18  return mean;
19  }
20 
21  float getRms() const {
22  return rms;
23  }
24 };
25 
29 
30 #endif
static Zero zero
Definition: ESPedestals.h:10
ESPedestalsMap ESPedestals
Definition: ESPedestals.h:28
float getRms() const
Definition: ESPedestals.h:21
ESPedestalsMap::const_iterator ESPedestalsMapIterator
Definition: ESPedestals.h:27
float mean
Definition: ESPedestals.h:12
std::vector< Item >::const_iterator const_iterator
float rms
Definition: ESPedestals.h:13
ESCondObjectContainer< ESPedestal > ESPedestalsMap
Definition: ESPedestals.h:26
float getMean() const
Definition: ESPedestals.h:17