1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef PTrackerParametersRcd_H
#define PTrackerParametersRcd_H
#include "FWCore/Framework/interface/EventSetupRecordImplementation.h"
#include "FWCore/Framework/interface/DependentRecordImplementation.h"
#include "Geometry/Records/interface/IdealGeometryRecord.h"
#include "FWCore/Utilities/interface/mplVector.h"
class PTrackerParametersRcd
: public edm::eventsetup::DependentRecordImplementation<PTrackerParametersRcd,
edm::mpl::Vector<IdealGeometryRecord> > {};
#endif // PTrackerParameters_H
|