Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:57

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from RecoMuon.TrackingTools.MuonServiceProxy_cff import *
0004 from RecoMuon.TrackingTools.MuonTrackLoader_cff import *
0005 L2MuonSeeds = cms.EDProducer("L2MuonSeedGenerator",
0006     MuonServiceProxy,
0007     L1MinPt = cms.double(0.0),
0008     InputObjects = cms.InputTag("l1extraParticles"),
0009     L1MaxEta = cms.double(2.5),
0010     L1MinQuality = cms.uint32(1),
0011     GMTReadoutCollection = cms.InputTag("gmtDigis"),
0012     Propagator = cms.string('SteppingHelixPropagatorAny'),
0013     UseOfflineSeed = cms.untracked.bool(True),
0014     UseUnassociatedL1 = cms.bool( True ), 
0015     OfflineSeedLabel = cms.untracked.InputTag("L2OfflineMuonSeeds")
0016 )
0017 
0018 
0019