/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondTools/SiPixel/interface/PixelPopConCalibSourceHandler.h
40 строк
1 KB
Cms Build
Clang-Format
24 май 2019, 00:17
24 май 2019, 00:17
4d23925
Код
Авторство
О чём код?
#ifndef PIXELPOPCONCALIBSOURCEHANDLER_H #define PIXELPOPCONCALIBSOURCEHANDLER_H // Package: CondTools/SiPixel // Class: PixelPopConSourceHandler /** \class PixelPopConSourceHandler PixelPopConSourceHandler.cc CondTools/SiPixel/src/PixelPopConSourceHandler.cc Description: The PopCon source handler class to transfer pixel calibration objects from OMDS to ORCON. Implementation: <Notes on implementation> */ // // Original Author: Michael Eads // Created: 8 Feb 2008 // $Id: PixelPopConCalibSourceHandler.h,v 1.4 2010/01/21 21:11:45 meads Exp $ // // #include <string> #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "CondFormats/SiPixelObjects/interface/SiPixelCalibConfiguration.h" #include "CondTools/SiPixel/interface/PixelPopConSourceHandler.h" // class definition class PixelPopConCalibSourceHandler : public PixelPopConSourceHandler<SiPixelCalibConfiguration> { public: // specific implementations of getNewObjects void getNewObjects_coral() override; void getNewObjects_file() override; ~PixelPopConCalibSourceHandler() override; PixelPopConCalibSourceHandler(edm::ParameterSet const &); std::string id() const override; private: }; #endif