CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/CondFormats/RPCObjects/interface/RPCObGasmap.h

Go to the documentation of this file.
00001 /*
00002  * Payload definition(s): Gas Map (RPCObGasmap)
00003  *
00004  *  $Date: 2009/11/16 13:01:46 $
00005  *  $Revision: 1.2 $
00006  *  \author D. Pagano - Dip. Fis. Nucl. e Teo. & INFN Pavia
00007  */
00008 
00009 #ifndef RPCObGasmap_h
00010 #define RPCObGasmap_h
00011 #include <vector>
00012 #include <string>
00013 
00014 
00015 class RPCObGasmap {
00016     public:
00017       struct GasMap_Item {
00018         int dpid;
00019         int region;
00020         int ring;
00021         int station;
00022         int sector;
00023         int layer;
00024         int subsector;
00025         int suptype;
00026     };
00027     RPCObGasmap(){}
00028     virtual ~RPCObGasmap(){}
00029     std::vector<GasMap_Item> ObGasMap_rpc;
00030    };
00031 
00032 #endif
00033