MuonGeometryRecord

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
#ifndef Records_MuonGeometryRecord_h
#define Records_MuonGeometryRecord_h

/** \class MuonGeometryRecord
 *  The Muon DetUnit geometry.
 *
 *  \author N. Amapane - CERN
 */

#include "FWCore/Framework/interface/EventSetupRecordImplementation.h"
#include "FWCore/Framework/interface/DependentRecordImplementation.h"
#include "Geometry/Records/interface/IdealGeometryRecord.h"
#include "Geometry/Records/interface/GeometryFileRcd.h"
#include "Geometry/Records/interface/DDSpecParRegistryRcd.h"
#include "Geometry/Records/interface/MuonNumberingRecord.h"
#include "Geometry/Records/interface/ME0RecoGeometryRcd.h"
#include "Geometry/Records/interface/GEMRecoGeometryRcd.h"
#include "Geometry/Records/interface/RPCRecoGeometryRcd.h"
#include "Geometry/Records/interface/CSCRecoGeometryRcd.h"
#include "Geometry/Records/interface/DTRecoGeometryRcd.h"
#include "Geometry/Records/interface/CSCRecoDigiParametersRcd.h"
#include "FWCore/Utilities/interface/mplVector.h"
#include "CondFormats/AlignmentRecord/interface/DTAlignmentRcd.h"
#include "CondFormats/AlignmentRecord/interface/DTAlignmentErrorRcd.h"
#include "CondFormats/AlignmentRecord/interface/DTAlignmentErrorExtendedRcd.h"
#include "CondFormats/AlignmentRecord/interface/CSCAlignmentRcd.h"
#include "CondFormats/AlignmentRecord/interface/CSCAlignmentErrorRcd.h"
#include "CondFormats/AlignmentRecord/interface/CSCAlignmentErrorExtendedRcd.h"
#include "CondFormats/AlignmentRecord/interface/GEMAlignmentRcd.h"
#include "CondFormats/AlignmentRecord/interface/GEMAlignmentErrorRcd.h"
#include "CondFormats/AlignmentRecord/interface/GEMAlignmentErrorExtendedRcd.h"
#include "CondFormats/AlignmentRecord/interface/GlobalPositionRcd.h"

class MuonGeometryRecord
    : public edm::eventsetup::DependentRecordImplementation<MuonGeometryRecord,
                                                            edm::mpl::Vector<IdealGeometryRecord,
                                                                             DDSpecParRegistryRcd,
                                                                             GeometryFileRcd,
                                                                             MuonNumberingRecord,
                                                                             DTAlignmentRcd,
                                                                             DTAlignmentErrorRcd,
                                                                             DTAlignmentErrorExtendedRcd,
                                                                             CSCAlignmentRcd,
                                                                             CSCAlignmentErrorRcd,
                                                                             CSCAlignmentErrorExtendedRcd,
                                                                             GEMAlignmentRcd,
                                                                             GEMAlignmentErrorRcd,
                                                                             GEMAlignmentErrorExtendedRcd,
                                                                             GlobalPositionRcd,
                                                                             ME0RecoGeometryRcd,
                                                                             GEMRecoGeometryRcd,
                                                                             RPCRecoGeometryRcd,
                                                                             DTRecoGeometryRcd,
                                                                             CSCRecoGeometryRcd,
                                                                             CSCRecoDigiParametersRcd> > {};

#endif