/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/RecoMuonObjects/interface/DYTThrObject.h
23 строки
454 B
Oksana Shadura
Add header guards for DYTThrObject.h and Serializable.h
03 мар 2020, 19:24
03 мар 2020, 19:24
a7f78dc
Код
Авторство
О чём код?
#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