/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQM/SiStripMonitorClient/interface/SiStripConfigParser.h
34 строки
680 B
Marcel Andre Schneider
Implement SiStripConfigParser.
05 фев 2020, 17:39
05 фев 2020, 17:39
2de4a60
Код
Авторство
О чём код?
#ifndef SiStripConfigParser_H #define SiStripConfigParser_H /** \class SiStripConfigParser * * * Class that handles the SiStrip Quality Tests * * \author Suchandra Dutta */ #include <vector> #include <fstream> #include <string> #include <map> #include <boost/property_tree/xml_parser.hpp> #include <boost/property_tree/ptree.hpp> class SiStripConfigParser { public: // Constructor SiStripConfigParser(); void getDocument(std::string filepath); // get List of MEs for TrackerMap bool getMENamesForSummary(std::map<std::string, std::string>& me_names); bool getFrequencyForSummary(int& u_freq); private: boost::property_tree::ptree config_; }; #endif