CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_13_patch3/src/CondFormats/RPCObjects/interface/RPCObGasMix.h

Go to the documentation of this file.
00001 /*
00002  * Payload definition(s): Chamber Gas Mix (RPCObGasMix)
00003  *
00004  *  $Date: 2009/12/14 16:00:11 $
00005  *  $Revision: 1.2 $
00006  *  \author D. Pagano - Dip. Fis. Nucl. e Teo. & INFN Pavia
00007  */
00008 
00009 #ifndef RPCObGasMix_h
00010 #define RPCObGasMix_h
00011 #include <vector>
00012 
00013 class RPCObGasMix {
00014     public:
00015       struct Item {
00016         int unixtime;
00017         float gas1; // IC4H10
00018         float gas2; // C2H2F4
00019         float gas3; // SF6
00020       };
00021     RPCObGasMix(){}
00022     virtual ~RPCObGasMix(){}
00023     std::vector<Item>  ObGasMix_rpc;
00024    };
00025 
00026 #endif
00027