File indexing completed on 2024-07-16 02:43:04
0001 import FWCore.ParameterSet.Config as cms
0002 gmtTkMuons = cms.EDProducer('Phase2L1TGMTTkMuonProducer',
0003 srcTracks = cms.InputTag("l1tTTTracksFromTrackletEmulation:Level1TTTracks"),
0004 srcStubs = cms.InputTag('gmtStubs:tps'),
0005 minTrackStubs = cms.int32(4),
0006 muonBXMin = cms.int32(0),
0007 muonBXMax = cms.int32(0),
0008 verbose = cms.int32(0),
0009 trackConverter = cms.PSet(
0010 verbose = cms.int32(0)
0011 ),
0012 trackMatching = cms.PSet(
0013 verbose=cms.int32(0)
0014 ),
0015 isolation = cms.PSet(
0016 AbsIsoThresholdL = cms.int32(160),
0017 AbsIsoThresholdM = cms.int32(120),
0018 AbsIsoThresholdT = cms.int32(80),
0019 RelIsoThresholdL = cms.double(0.1),
0020 RelIsoThresholdM = cms.double(0.05),
0021 RelIsoThresholdT = cms.double(0.01),
0022 verbose = cms.int32(0),
0023 IsodumpForHLS = cms.int32(0),
0024 ),
0025 tauto3mu = cms.PSet()
0026
0027 )
0028
0029
0030
0031
0032