CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/RecoMuon/L2MuonSeedGenerator/python/L2MuonSeeds_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from RecoMuon.TrackingTools.MuonServiceProxy_cff import *
00004 from RecoMuon.TrackingTools.MuonTrackLoader_cff import *
00005 L2MuonSeeds = cms.EDProducer("L2MuonSeedGenerator",
00006     MuonServiceProxy,
00007     L1MinPt = cms.double(0.0),
00008     InputObjects = cms.InputTag("l1extraParticles"),
00009     L1MaxEta = cms.double(2.5),
00010     L1MinQuality = cms.uint32(1),
00011     GMTReadoutCollection = cms.InputTag("gmtDigis"),
00012     Propagator = cms.string('SteppingHelixPropagatorAny'),
00013     UseOfflineSeed = cms.untracked.bool(True),
00014     OfflineSeedLabel = cms.untracked.InputTag("L2OfflineMuonSeeds")
00015 )
00016 
00017 
00018