/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
TrackingTools/TrackAssociator/interface/DetIdInfo.h
23 строки
582 B
Cms Build
Clang-Format
17 июн 2019, 12:15
17 июн 2019, 12:15
514e187
Код
Авторство
О чём код?
#ifndef TrackAssociator_DetIdInfo_h #define TrackAssociator_DetIdInfo_h /** * * Description: * Helper class to get human readable informationa about given DetId * */ #include "DataFormats/DetId/interface/DetId.h" #include <set> #include <vector> class TrackerTopology; class DetIdInfo { public: static std::string info(const DetId &, const TrackerTopology *tTopo); static std::string info(const std::set<DetId> &, const TrackerTopology *tTopo); static std::string info(const std::vector<DetId> &, const TrackerTopology *tTopo); }; #endif