1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef GEOMETRY_FWRECO_GEOMETRY_RECORD_H
#define GEOMETRY_FWRECO_GEOMETRY_RECORD_H
#include "FWCore/Framework/interface/DependentRecordImplementation.h"
#include "Geometry/Records/interface/GlobalTrackingGeometryRecord.h"
#include "Geometry/Records/interface/CaloGeometryRecord.h"
#include "Geometry/Records/interface/MTDDigiGeometryRecord.h"
class FWRecoGeometryRecord
: public edm::eventsetup::DependentRecordImplementation<
FWRecoGeometryRecord,
edm::mpl::Vector<MuonGeometryRecord, GlobalTrackingGeometryRecord, MTDDigiGeometryRecord, CaloGeometryRecord> > {
};
#endif // GEOMETRY_FWRECO_GEOMETRY_RECORD_H
|