1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef GEOMETRY_RECORDS_MUON_GEOMETRY_RCD_H
#define GEOMETRY_RECORDS_MUON_GEOMETRY_RCD_H
#include "FWCore/Framework/interface/DependentRecordImplementation.h"
#include "Geometry/Records/interface/DDSpecParRegistryRcd.h"
#include "Geometry/Records/interface/MuonNumberingRcd.h"
#include "Geometry/Records/interface/DTRecoGeometryRcd.h"
#include "CondFormats/AlignmentRecord/interface/GlobalPositionRcd.h"
#include "CondFormats/AlignmentRecord/interface/DTAlignmentRcd.h"
#include "CondFormats/AlignmentRecord/interface/DTAlignmentErrorRcd.h"
#include "CondFormats/AlignmentRecord/interface/DTAlignmentErrorExtendedRcd.h"
#include "FWCore/Utilities/interface/mplVector.h"
class MuonGeometryRcd
: public edm::eventsetup::DependentRecordImplementation<MuonGeometryRcd,
edm::mpl::Vector<MuonNumberingRcd,
DDSpecParRegistryRcd,
GlobalPositionRcd,
DTAlignmentRcd,
DTAlignmentErrorRcd,
DTAlignmentErrorExtendedRcd,
DTRecoGeometryRcd>> {};
#endif
|