CMS 3D CMS Logo

L2MuonSeeds_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
5 L2MuonSeeds = cms.EDProducer("L2MuonSeedGenerator",
6  MuonServiceProxy,
7  L1MinPt = cms.double(0.0),
8  InputObjects = cms.InputTag("l1extraParticles"),
9  L1MaxEta = cms.double(2.5),
10  L1MinQuality = cms.uint32(1),
11  GMTReadoutCollection = cms.InputTag("gmtDigis"),
12  Propagator = cms.string('SteppingHelixPropagatorAny'),
13  UseOfflineSeed = cms.untracked.bool(True),
14  UseUnassociatedL1 = cms.bool( True ),
15  OfflineSeedLabel = cms.untracked.InputTag("L2OfflineMuonSeeds")
16 )
17 
18 
19