/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/SiPixelObjects/interface/SiPixelFEDChannelContainer.h
48 строк
2 KB
Cms Build
Clang-Format
11 июн 2019, 11:29
11 июн 2019, 11:29
e9d3fcc
Код
Авторство
О чём код?
#ifndef CondFormats_SiPixelObjects_SiPixelFEDChannelContainer_h #define CondFormats_SiPixelObjects_SiPixelFEDChannelContainer_h #include "CondFormats/Serialization/interface/Serializable.h" #include "DataFormats/DetId/interface/DetId.h" #include "DataFormats/SiPixelDetId/interface/PixelFEDChannel.h" // N.B. a DataFormat is serialized here (need for dedicated serialization rules, see CondFormats/External/interface/PixelFEDChannel.h) #include <map> #include <string> #include <vector> class SiPixelFEDChannelContainer { public: typedef std::map<DetId, std::vector<PixelFEDChannel> > SiPixelFEDChannelCollection; typedef std::unordered_map<std::string, SiPixelFEDChannelCollection> SiPixelBadFEDChannelsScenarioMap; SiPixelFEDChannelContainer() {} SiPixelFEDChannelContainer(const SiPixelFEDChannelContainer &rhs) { m_scenarioMap = rhs.getScenarioMap(); }; virtual ~SiPixelFEDChannelContainer() {} void setScenario(const std::string &theScenarioId, const SiPixelFEDChannelCollection &theBadFEDChannels); const SiPixelBadFEDChannelsScenarioMap &getScenarioMap() const { return m_scenarioMap; } SiPixelFEDChannelCollection getSiPixelBadFedChannels(const std::string &ScenarioId) const; const SiPixelFEDChannelCollection &getSiPixelBadFedChannels(const std::string &ScenarioId); const std::vector<PixelFEDChannel> &getSiPixelBadFedChannelsInDetId(const std::string &theScenarioId, DetId theDetId); std::unique_ptr<PixelFEDChannelCollection> getDetSetBadPixelFedChannels(const std::string &ScenarioId) const; double size() const { return m_scenarioMap.size(); } std::vector<std::string> getScenarioList() const; void printAll() const; //dumping values on output stream void print(std::ostream &os) const; private: SiPixelBadFEDChannelsScenarioMap m_scenarioMap; COND_SERIALIZABLE; }; std::ostream &operator<<(std::ostream &, SiPixelFEDChannelContainer FEDChannels); #endif //CondFormats_SiPixelObjects_SiPixelFEDChannelContainer_h