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