Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:02:30

0001 /*
0002  * Payload definition(s): DpId Map for RPCObCond Payload 
0003  *
0004  *  $Date: 2009/11/16 12:53:47 $
0005  *  $Revision: 1.3 $
0006  *  \author D. Pagano - Dip. Fis. Nucl. e Teo. & INFN Pavia
0007  */
0008 
0009 #ifndef RPCObPVSSmap_h
0010 #define RPCObPVSSmap_h
0011 #include "CondFormats/Serialization/interface/Serializable.h"
0012 
0013 #include <vector>
0014 #include <string>
0015 
0016 class RPCObPVSSmap {
0017 public:
0018   struct Item {
0019     int since;
0020     int dpid;
0021     int region;
0022     int ring;
0023     int station;
0024     int sector;
0025     int layer;
0026     int subsector;
0027     int suptype;
0028 
0029     COND_SERIALIZABLE;
0030   };
0031   RPCObPVSSmap() {}
0032   virtual ~RPCObPVSSmap() {}
0033   std::vector<Item> ObIDMap_rpc;
0034 
0035   COND_SERIALIZABLE;
0036 };
0037 
0038 #endif