/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/GEMObjects/interface/GEMDeadStrips.h
27 строк
554 B
Cms Build
Clang-Format
20 май 2019, 13:02
20 май 2019, 13:02
4a10e79
Код
Авторство
О чём код?
#ifndef CondFormats_GEMObjects_GEMDeadStrips_h #define CondFormats_GEMObjects_GEMDeadStrips_h #include "CondFormats/Serialization/interface/Serializable.h" #include <vector> #include <iostream> class GEMDeadStrips { public: struct DeadItem { int rawId; int strip; COND_SERIALIZABLE; }; GEMDeadStrips() {} ~GEMDeadStrips() {} std::vector<DeadItem> const& getDeadVec() const { return deadVec_; } void fillDeadVec(DeadItem m) { deadVec_.push_back(m); } private: std::vector<DeadItem> deadVec_; COND_SERIALIZABLE; }; #endif