1
2
3
4
5
6
7
8
9
10
|
#ifndef HcalFrontEndMapRcd_H
#define HcalFrontEndMapRcd_H
#include "FWCore/Framework/interface/EventSetupRecordImplementation.h"
#include "Geometry/Records/interface/HcalRecNumberingRecord.h"
#include "Geometry/Records/interface/IdealGeometryRecord.h"
class HcalFrontEndMapRcd : public edm::eventsetup::DependentRecordImplementation<
HcalFrontEndMapRcd,
edm::mpl::Vector<HcalRecNumberingRecord, IdealGeometryRecord> > {};
#endif
|