CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RPCObPVSSmap.h
Go to the documentation of this file.
1 /*
2  * Payload definition(s): DpId Map for RPCObCond Payload
3  *
4  * $Date: 2009/11/16 13:03:27 $
5  * $Revision: 1.3 $
6  * \author D. Pagano - Dip. Fis. Nucl. e Teo. & INFN Pavia
7  */
8 
9 #ifndef RPCObPVSSmap_h
10 #define RPCObPVSSmap_h
11 #include <vector>
12 #include <string>
13 
14 
15 class RPCObPVSSmap {
16  public:
17  struct Item {
18  int since;
19  int dpid;
20  int region;
21  int ring;
22  int station;
23  int sector;
24  int layer;
25  int subsector;
26  int suptype;
27  };
29  virtual ~RPCObPVSSmap(){}
30  std::vector<Item> ObIDMap_rpc;
31  };
32 
33 #endif
34 
std::vector< Item > ObIDMap_rpc
Definition: RPCObPVSSmap.h:30
virtual ~RPCObPVSSmap()
Definition: RPCObPVSSmap.h:29