CMS 3D CMS Logo

RPCObUXC.h
Go to the documentation of this file.
1 /*
2  * Payload definition(s): UXC Temperature, Pressure and Humidity (RPCObUXC)
3  *
4  * $Date: 2009/11/16 13:04:37 $
5  * $Revision: 1.3 $
6  * \author D. Pagano - Dip. Fis. Nucl. e Teo. & INFN Pavia
7  */
8 
9 #ifndef RPCObUXC_h
10 #define RPCObUXC_h
12 
13 #include <vector>
14 
15 class RPCObUXC {
16 public:
17  struct Item {
18  float temperature;
19  float pressure;
20  float dewpoint;
21  int unixtime;
22 
24  };
25  RPCObUXC() {}
26  virtual ~RPCObUXC() {}
27  std::vector<Item> ObUXC_rpc;
28 
30 };
31 
32 #endif
RPCObUXC()
Definition: RPCObUXC.h:25
virtual ~RPCObUXC()
Definition: RPCObUXC.h:26
float temperature
Definition: RPCObUXC.h:18
float pressure
Definition: RPCObUXC.h:19
#define COND_SERIALIZABLE
Definition: Serializable.h:39
std::vector< Item > ObUXC_rpc
Definition: RPCObUXC.h:27
float dewpoint
Definition: RPCObUXC.h:20