CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/CondFormats/RPCObjects/interface/RPCObUXC.h

Go to the documentation of this file.
00001 /*
00002  * Payload definition(s): UXC Temperature, Pressure and Humidity (RPCObUXC)
00003  *
00004  *  $Date: 2009/12/14 12:44:42 $
00005  *  $Revision: 1.4 $
00006  *  \author D. Pagano - Dip. Fis. Nucl. e Teo. & INFN Pavia
00007  */
00008 
00009 #ifndef RPCObUXC_h
00010 #define RPCObUXC_h
00011 #include <vector>
00012 
00013 class RPCObUXC {
00014     public:
00015       struct Item {
00016         float temperature;
00017         float pressure;
00018         float dewpoint;
00019         int unixtime;
00020       };
00021     RPCObUXC(){}
00022     virtual ~RPCObUXC(){}
00023     std::vector<Item>  ObUXC_rpc;
00024    };
00025 
00026 #endif
00027