Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 /*
0002  * Payload definition(s): Gas Map (RPCObGasmap)
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 RPCObGasmap_h
0010 #define RPCObGasmap_h
0011 #include "CondFormats/Serialization/interface/Serializable.h"
0012 
0013 #include <vector>
0014 #include <string>
0015 
0016 class RPCObGasmap {
0017 public:
0018   struct GasMap_Item {
0019     int dpid;
0020     int region;
0021     int ring;
0022     int station;
0023     int sector;
0024     int layer;
0025     int subsector;
0026     int suptype;
0027 
0028     COND_SERIALIZABLE;
0029   };
0030   RPCObGasmap() {}
0031   virtual ~RPCObGasmap() {}
0032   std::vector<GasMap_Item> ObGasMap_rpc;
0033 
0034   COND_SERIALIZABLE;
0035 };
0036 
0037 #endif