CMS 3D CMS Logo

L1TkGlbMuonProducer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 L1TkGlbMuons = cms.EDProducer("L1TkGlbMuonProducer",
4 
6  L1MuonInputTag = cms.InputTag("simGmtStage2Digis"),
7  L1TrackInputTag = cms.InputTag("TTTracksFromTrackletEmulation", "Level1TTTracks"),
8 
10  ETAMIN = cms.double(0),
11  ETAMAX = cms.double(5.), # no cut
12  ZMAX = cms.double( 25. ), # in cm
13  CHI2MAX = cms.double( 100. ),
14  PTMINTRA = cms.double( 2. ), # in GeV
15  DRmax = cms.double( 0.5 ),
16  nStubsmin = cms.int32( 4 ), # minimum number of stubs
17  correctGMTPropForTkZ = cms.bool(True),
18  use5ParameterFit = cms.bool(False), #use 4-pars by defaults
19  useTPMatchWindows = cms.bool(True),
20 )