/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondTools/RunInfo/interface/FillInfoPopConSourceHandler.h
25 строк
739 B
Cms Build
Clang-Format
11 май 2019, 12:07
11 май 2019, 12:07
699822e
Код
Авторство
О чём код?
#ifndef FILLINFOPOPCONSOURCEHANDLER_H #define FILLINFOPOPCONSOURCEHANDLER_H #include <string> #include "CondCore/PopCon/interface/PopConSourceHandler.h" #include "CondFormats/RunInfo/interface/FillInfo.h" #include "FWCore/ParameterSet/interface/ParameterSetfwd.h" class FillInfoPopConSourceHandler : public popcon::PopConSourceHandler<FillInfo> { public: FillInfoPopConSourceHandler(const edm::ParameterSet& pset); ~FillInfoPopConSourceHandler() override; void getNewObjects() override; std::string id() const override; private: bool m_debug; unsigned short m_firstFill, m_lastFill; std::string m_name; //for reading from relational database source std::string m_connectionString, m_dipSchema, m_authpath; }; #endif