CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RPCObFebmap.h
Go to the documentation of this file.
1 /*
2  * Payload definition(s): Feb thresholds, temperatures, voltages and noises (RPCObFebmap)
3  *
4  * $Date: 2009/11/16 12:59:31 $
5  * $Revision: 1.4 $
6  * \author D. Pagano - Dip. Fis. Nucl. e Teo. & INFN Pavia
7  */
8 
9 
10 #ifndef RPCObFebmap_h
11 #define RPCObFebmap_h
12 #include <vector>
13 
14 
15 class RPCObFebmap {
16  public:
17  struct Feb_Item {
18  int dpid;
19  float thr1;
20  float thr2;
21  float thr3;
22  float thr4;
23  float vmon1;
24  float vmon2;
25  float vmon3;
26  float vmon4;
27  float temp1;
28  float temp2;
29  int day;
30  int time;
31  int noise1;
32  int noise2;
33  int noise3;
34  int noise4;
35  };
37  virtual ~RPCObFebmap(){}
38  std::vector<Feb_Item> ObFebMap_rpc;
39  };
40 
41 #endif
42 
std::vector< Feb_Item > ObFebMap_rpc
Definition: RPCObFebmap.h:38
virtual ~RPCObFebmap()
Definition: RPCObFebmap.h:37