File indexing completed on 2024-04-06 12:11:46
0001 #ifndef GEOMETRY_FWRECO_GEOMETRY_RECORD_H
0002 #define GEOMETRY_FWRECO_GEOMETRY_RECORD_H
0003
0004 #include "FWCore/Framework/interface/DependentRecordImplementation.h"
0005 #include "Geometry/Records/interface/GlobalTrackingGeometryRecord.h"
0006 #include "Geometry/Records/interface/CaloGeometryRecord.h"
0007 #include "Geometry/Records/interface/MTDDigiGeometryRecord.h"
0008
0009 class FWRecoGeometryRecord
0010 : public edm::eventsetup::DependentRecordImplementation<
0011 FWRecoGeometryRecord,
0012 edm::mpl::Vector<MuonGeometryRecord, GlobalTrackingGeometryRecord, MTDDigiGeometryRecord, CaloGeometryRecord> > {
0013 };
0014
0015 #endif