/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondTools/DT/interface/DTPerformanceHandler.h
56 строк
1 KB
Cms Build
Clang-Format
11 май 2019, 12:07
11 май 2019, 12:07
699822e
Код
Авторство
О чём код?
#ifndef DTPerformanceHandler_H #define DTPerformanceHandler_H /** \class DTPerformanceHandler * * Description: * * * $Date: 2007/12/07 15:12:22 $ * $Revision: 1.2 $ * \author Paolo Ronchese INFN Padova * */ //---------------------- // Base Class Headers -- //---------------------- #include "CondCore/PopCon/interface/PopConSourceHandler.h" //------------------------------------ // Collaborating Class Declarations -- //------------------------------------ #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "CondFormats/DTObjects/interface/DTPerformance.h" //--------------- // C++ Headers -- //--------------- #include <string> // --------------------- // -- Class Interface -- // --------------------- class DTPerformanceHandler : public popcon::PopConSourceHandler<DTPerformance> { public: /** Constructor */ DTPerformanceHandler(const edm::ParameterSet& ps); /** Destructor */ ~DTPerformanceHandler() override; /** Operations */ /// void getNewObjects() override; std::string id() const override; private: std::string dataTag; std::string fileName; unsigned int runNumber; }; #endif // DTPerformanceHandler_H