1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef CSCChamberIndex_h
#define CSCChamberIndex_h
#include "CondFormats/Serialization/interface/Serializable.h"
#include "CondFormats/CSCObjects/interface/CSCMapItem.h"
#include <vector>
class CSCChamberIndex {
public:
CSCChamberIndex();
~CSCChamberIndex();
const CSCMapItem::MapItem& item(int key) const;
typedef std::vector<CSCMapItem::MapItem> CSCVector;
CSCVector ch_index;
COND_SERIALIZABLE;
};
#endif
|