Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:02:30

0001 /*
0002  * Payload definition(s): UXC Temperature, Pressure and Humidity (RPCObUXC)
0003  *
0004  *  $Date: 2009/11/16 13:04:37 $
0005  *  $Revision: 1.3 $
0006  *  \author D. Pagano - Dip. Fis. Nucl. e Teo. & INFN Pavia
0007  */
0008 
0009 #ifndef RPCObUXC_h
0010 #define RPCObUXC_h
0011 #include "CondFormats/Serialization/interface/Serializable.h"
0012 
0013 #include <vector>
0014 
0015 class RPCObUXC {
0016 public:
0017   struct Item {
0018     float temperature;
0019     float pressure;
0020     float dewpoint;
0021     int unixtime;
0022 
0023     COND_SERIALIZABLE;
0024   };
0025   RPCObUXC() {}
0026   virtual ~RPCObUXC() {}
0027   std::vector<Item> ObUXC_rpc;
0028 
0029   COND_SERIALIZABLE;
0030 };
0031 
0032 #endif