/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DQM/SiPixelMonitorClient/src/SiPixelLayoutParser.cc
24 строки
666 B
Marcel Andre Schneider
Add assertions to stubbed out code paths.
05 фев 2020, 17:39
05 фев 2020, 17:39
2517c51
Код
Авторство
О чём код?
#include "DQM/SiPixelMonitorClient/interface/SiPixelLayoutParser.h" #include "FWCore/MessageLogger/interface/MessageLogger.h" #include <iostream> #include <cassert> using namespace std; // // -- Constructor // SiPixelLayoutParser::SiPixelLayoutParser() { edm::LogInfo("SiPixelLayoutParser") << " Creating SiPixelLayoutParser " << "\n"; cout << " Creating SiPixelLayoutParser " << endl; } // // -- Get list of Layouts for ME groups // bool SiPixelLayoutParser::getAllLayouts(map<string, vector<string>> &layouts) { // TODO: implement parser based on property_tree. assert(!"No longer implemented."); return false; }