File indexing completed on 2024-04-06 12:02:29
0001 #ifndef CondFormats_RecoMuonObjects_DYTThrObject_h
0002 #define CondFormats_RecoMuonObjects_DYTThrObject_h
0003
0004 #include "DataFormats/DetId/interface/DetId.h"
0005 #include <vector>
0006 #include "CondFormats/Serialization/interface/Serializable.h"
0007
0008 class DYTThrObject {
0009 public:
0010 struct DytThrStruct {
0011 DetId id;
0012 double thr;
0013
0014 COND_SERIALIZABLE;
0015 };
0016
0017 DYTThrObject() {}
0018 ~DYTThrObject() {}
0019 std::vector<DytThrStruct> thrsVec;
0020
0021 COND_SERIALIZABLE;
0022 };
0023 #endif