1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef RECORDS_MTDGEOMETRYRECORD_H
#define RECORDS_MTDGEOMETRYRECORD_H
#include "FWCore/Framework/interface/EventSetupRecordImplementation.h"
#include "FWCore/Framework/interface/DependentRecordImplementation.h"
#include "Geometry/Records/interface/IdealGeometryRecord.h"
#include "Geometry/Records/interface/PFastTimeRcd.h"
#include "Geometry/Records/interface/BTLGeometryRcd.h"
#include "Geometry/Records/interface/ETLGeometryRcd.h"
#include "CondFormats/AlignmentRecord/interface/GlobalPositionRcd.h"
#include "FWCore/Utilities/interface/mplVector.h"
class MTDGeometryRecord
: public edm::eventsetup::DependentRecordImplementation<
MTDGeometryRecord,
edm::mpl::Vector<IdealGeometryRecord, BTLGeometryRcd, ETLGeometryRcd, GlobalPositionRcd, PFastTimeRcd> > {};
#endif /* RECORDS_MTDGEOMETRYRECORD_H */
|