CMS 3D CMS Logo

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

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