Skip to content

Commit

Permalink
Remove use of boost::mpl::vector for dependent records (#527)
Browse files Browse the repository at this point in the history
Update dependent records declarations to use edm::mpl::Vector instead of boost::mpl::vector, following cms-sw#30874.
  • Loading branch information
fwyzard committed Oct 20, 2020
1 parent ad0b3cb commit c76f505
Showing 1 changed file with 4 additions and 7 deletions.
@@ -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<SiPixelGainCalibrationForHLTRcd, TrackerDigiGeometryRecord> > {};
edm::mpl::Vector<SiPixelGainCalibrationForHLTRcd, TrackerDigiGeometryRecord>> {};

#endif
#endif // CalibTracker_Records_SiPixelGainCalibrationForHLTGPURcd_h

0 comments on commit c76f505

Please sign in to comment.