/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondCore/PopCon/test/stubs/ExSourceHandler.h
32 строки
772 B
Cms Build
Clang-Format
29 май 2019, 08:24
29 май 2019, 08:24
5c96c3b
Код
Авторство
О чём код?
#ifndef POPCON_EX_PEDESTALS_SRC_H #define POPCON_EX_PEDESTALS_SRC_H #include <vector> #include <string> #include <iostream> #include <typeinfo> #include "CondCore/PopCon/interface/PopConSourceHandler.h" #include "CondFormats/Calibration/interface/Pedestals.h" #include "FWCore/ParameterSet/interface/ParameterSetfwd.h" #include <string> namespace popcon { class ExPedestalSource : public popcon::PopConSourceHandler<Pedestals> { public: void getNewObjects(); std::string id() const { return m_name; } ~ExPedestalSource(); ExPedestalSource(const edm::ParameterSet& pset); private: std::string m_name; long long m_since; long long m_increment; long long m_number; }; } // namespace popcon #endif // POPCON_EX_PEDESTALS_SRC_H