forked from cms-sw/cmssw
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove use of boost::mpl::vector for dependent records (cms-patatrack…
…#527) Update dependent records declarations to use edm::mpl::Vector instead of boost::mpl::vector, following cms-sw#30874.
- Loading branch information
Showing
1 changed file
with
4 additions
and
7 deletions.
There are no files selected for viewing
11 changes: 4 additions & 7 deletions
11
CalibTracker/Records/interface/SiPixelGainCalibrationForHLTGPURcd.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |