/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/SiPixelObjects/interface/SiPixelFedCablingMap.h
60 строк
2 KB
Patrick Gartung
Alca packages: cleanup use of GCC11Compatibility.h
16 мар 2020, 23:12
16 мар 2020, 23:12
ef976ac
Код
Авторство
О чём код?
#ifndef EventFilter_SiPixelRawToDigi_SiPixelFedCablingMap_H #define EventFilter_SiPixelRawToDigi_SiPixelFedCablingMap_H #include "CondFormats/Serialization/interface/Serializable.h" #include "CondFormats/SiPixelObjects/interface/SiPixelFedCabling.h" #include "CondFormats/SiPixelObjects/interface/PixelROC.h" #include <string> #include <map> #include <memory> #if !defined(__CINT__) && !defined(__MAKECINT__) && !defined(__REFLEX__) #define NO_DICT #endif class SiPixelFedCablingTree; class SiPixelFedCablingMap : public SiPixelFedCabling { public: SiPixelFedCablingMap(const SiPixelFedCablingTree* cab); SiPixelFedCablingMap(const std::string& version = "") : theVersion(version) {} void initializeRocs(); ~SiPixelFedCablingMap() override {} #ifdef NO_DICT std::unique_ptr<SiPixelFedCablingTree> cablingTree() const; #endif std::string version() const override { return theVersion; } const sipixelobjects::PixelROC* findItem(const sipixelobjects::CablingPathToDetUnit& path) const final; std::vector<sipixelobjects::CablingPathToDetUnit> pathToDetUnit(uint32_t rawDetId) const final; bool pathToDetUnitHasDetUnit(uint32_t rawDetId, unsigned int fedId) const final; std::unordered_map<uint32_t, unsigned int> det2fedMap() const final; std::map<uint32_t, std::vector<sipixelobjects::CablingPathToDetUnit> > det2PathMap() const final; std::vector<unsigned int> fedIds() const; struct Key { unsigned int fed, link, roc; bool operator<(const Key& other) const; COND_SERIALIZABLE; }; private: std::string theVersion; typedef std::map<Key, sipixelobjects::PixelROC> Map; Map theMap; COND_SERIALIZABLE; }; #endif