File indexing completed on 2023-03-17 10:39:39
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 #include "FWCore/Framework/interface/ESHandle.h"
0016 #include "FWCore/Framework/interface/ESTransientHandle.h"
0017
0018
0019 #include "Alignment/MuonAlignment/interface/MuonAlignmentInputMethod.h"
0020 #include "Geometry/Records/interface/MuonNumberingRecord.h"
0021
0022 #include "FWCore/MessageLogger/interface/MessageLogger.h"
0023 #include "Geometry/Records/interface/MuonGeometryRecord.h"
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036 MuonAlignmentInputMethod::MuonAlignmentInputMethod() {}
0037 MuonAlignmentInputMethod::MuonAlignmentInputMethod(const DTGeometry* dtGeometry,
0038 const CSCGeometry* cscGeometry,
0039 const GEMGeometry* gemGeometry)
0040 : dtGeometry_(dtGeometry), cscGeometry_(cscGeometry), gemGeometry_(gemGeometry) {}
0041
0042
0043
0044
0045
0046
0047 MuonAlignmentInputMethod::~MuonAlignmentInputMethod() {}
0048
0049
0050
0051
0052
0053
0054
0055
0056
0057
0058
0059
0060
0061
0062
0063
0064
0065 AlignableMuon* MuonAlignmentInputMethod::newAlignableMuon() const {
0066 return new AlignableMuon(&*dtGeometry_, &*cscGeometry_, &*gemGeometry_);
0067 }
0068
0069
0070
0071
0072
0073
0074
0075