1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef CondFormats_RecoMuonObjects_DYTThrObject_h
#define CondFormats_RecoMuonObjects_DYTThrObject_h
#include "DataFormats/DetId/interface/DetId.h"
#include <vector>
#include "CondFormats/Serialization/interface/Serializable.h"
class DYTThrObject {
public:
struct DytThrStruct {
DetId id;
double thr;
COND_SERIALIZABLE;
};
DYTThrObject() {}
~DYTThrObject() {}
std::vector<DytThrStruct> thrsVec;
COND_SERIALIZABLE;
};
#endif
|