File indexing completed on 2024-04-06 11:56:45
0001 import FWCore.ParameterSet.Config as cms
0002
0003 MuonAlignmentFromReference = cms.PSet(
0004 algoName = cms.string("MuonAlignmentFromReference"),
0005
0006 muonCollectionTag = cms.InputTag(""),
0007
0008
0009 reference = cms.vstring(),
0010
0011
0012 minTrackPt = cms.double(0.),
0013 maxTrackPt = cms.double(1000.),
0014 minTrackP = cms.double(0.),
0015 maxTrackP = cms.double(1000.),
0016 maxDxy = cms.double(1000.),
0017 minTrackerHits = cms.int32(10),
0018 maxTrackerRedChi2 = cms.double(10.),
0019 allowTIDTEC = cms.bool(True),
0020 minNCrossedChambers = cms.int32(3),
0021 minDT13Hits = cms.int32(7),
0022 minDT2Hits = cms.int32(4),
0023 minCSCHits = cms.int32(6),
0024
0025
0026 writeTemporaryFile = cms.string(""),
0027 readTemporaryFiles = cms.vstring(),
0028 doAlignment = cms.bool(True),
0029 strategy = cms.int32(1),
0030
0031
0032 twoBin = cms.bool(True),
0033 combineME11 = cms.bool(True),
0034
0035 residualsModel = cms.string("pureGaussian2D"),
0036 minAlignmentHits = cms.int32(30),
0037 weightAlignment = cms.bool(True),
0038 useResiduals = cms.string("1110"),
0039
0040
0041 reportFileName = cms.string("MuonAlignmentFromReference_report.py"),
0042
0043 maxResSlopeY = cms.double(10.),
0044
0045 createNtuple = cms.bool(False),
0046
0047 peakNSigma = cms.double(-1.),
0048 bFieldCorrection = cms.int32(1),
0049
0050 doDT = cms.bool(True),
0051 doCSC = cms.bool(True)
0052 )