File indexing completed on 2024-04-06 12:03:21
0001 #ifndef PIXELPOPCONCALIBSOURCEHANDLER_H
0002 #define PIXELPOPCONCALIBSOURCEHANDLER_H
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021 #include <string>
0022
0023 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0024 #include "CondFormats/SiPixelObjects/interface/SiPixelCalibConfiguration.h"
0025 #include "CondTools/SiPixel/interface/PixelPopConSourceHandler.h"
0026
0027
0028 class PixelPopConCalibSourceHandler : public PixelPopConSourceHandler<SiPixelCalibConfiguration> {
0029 public:
0030
0031 void getNewObjects_coral() override;
0032 void getNewObjects_file() override;
0033 ~PixelPopConCalibSourceHandler() override;
0034 PixelPopConCalibSourceHandler(edm::ParameterSet const &);
0035 std::string id() const override;
0036
0037 private:
0038 };
0039
0040 #endif