From 38651f10c542c26d32a673b4f495985ecfcb40be Mon Sep 17 00:00:00 2001 From: Andrea Bocci Date: Sat, 8 Aug 2020 19:08:24 +0200 Subject: [PATCH] Remove use of boost::mpl::vector for dependent records (#527) Update dependent records declarations to use edm::mpl::Vector instead of boost::mpl::vector, following #30874. --- .../interface/SiPixelGainCalibrationForHLTGPURcd.h | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/CalibTracker/Records/interface/SiPixelGainCalibrationForHLTGPURcd.h b/CalibTracker/Records/interface/SiPixelGainCalibrationForHLTGPURcd.h index 56301421f325c..ad8f0a4032588 100644 --- a/CalibTracker/Records/interface/SiPixelGainCalibrationForHLTGPURcd.h +++ b/CalibTracker/Records/interface/SiPixelGainCalibrationForHLTGPURcd.h @@ -1,17 +1,14 @@ #ifndef CalibTracker_Records_SiPixelGainCalibrationForHLTGPURcd_h #define CalibTracker_Records_SiPixelGainCalibrationForHLTGPURcd_h -#include "FWCore/Framework/interface/EventSetupRecordImplementation.h" -#include "FWCore/Framework/interface/DependentRecordImplementation.h" - #include "CondFormats/DataRecord/interface/SiPixelGainCalibrationForHLTRcd.h" +#include "FWCore/Framework/interface/DependentRecordImplementation.h" +#include "FWCore/Framework/interface/EventSetupRecordImplementation.h" #include "Geometry/Records/interface/TrackerDigiGeometryRecord.h" -#include "boost/mpl/vector.hpp" - class SiPixelGainCalibrationForHLTGPURcd : public edm::eventsetup::DependentRecordImplementation< SiPixelGainCalibrationForHLTGPURcd, - boost::mpl::vector > {}; + edm::mpl::Vector> {}; -#endif +#endif // CalibTracker_Records_SiPixelGainCalibrationForHLTGPURcd_h