File indexing completed on 2024-04-06 12:01:59
0001 #ifndef CSCChamberIndex_h
0002 #define CSCChamberIndex_h
0003
0004 #include "CondFormats/Serialization/interface/Serializable.h"
0005
0006 #include "CondFormats/CSCObjects/interface/CSCMapItem.h"
0007 #include <vector>
0008
0009 class CSCChamberIndex {
0010 public:
0011 CSCChamberIndex();
0012 ~CSCChamberIndex();
0013
0014 const CSCMapItem::MapItem& item(int key) const;
0015
0016 typedef std::vector<CSCMapItem::MapItem> CSCVector;
0017 CSCVector ch_index;
0018
0019 COND_SERIALIZABLE;
0020 };
0021
0022 #endif