/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQM/SiPixelMonitorClient/interface/SiPixelLayoutParser.h
27 строк
473 B
Marcel Andre Schneider
Stub out xml stuff in SiPixelMonitorClient.
05 фев 2020, 17:39
05 фев 2020, 17:39
2f9fd60
Код
Авторство
О чём код?
#ifndef SiPixelLayoutParser_H #define SiPixelLayoutParser_H /** \class SiPixelLayoutParser * * * Class that handles the SiPixel Quality Tests * * \author Suchandra Dutta */ #include <fstream> #include <map> #include <string> #include <vector> class SiPixelLayoutParser { public: // Constructor SiPixelLayoutParser(); // Get list of Layouts for ME groups bool getAllLayouts(std::map<std::string, std::vector<std::string>> &me_names); private: }; #endif