CMS 3D CMS Logo

tevMuons_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
7 tevMuons = cms.EDProducer("TevMuonProducer",
8  MuonTrackLoaderForGLB,
9  # InputTag MuonCollectionLabel = standAloneMuons:UpdatedAtVtx
10  MuonServiceProxy,
11  RefitIndex = cms.vint32(1, 2, 3, 4),
12  Refits = cms.vstring('default',
13  'firstHit',
14  'picky',
15  'dyt'),
16  MuonCollectionLabel = cms.InputTag("globalMuons"),
17  RefitterParameters = cms.PSet(
18  GlobalMuonRefitter
19  )
20 )
21 
22 # FastSim has no template fit on tracker hits
23 # FastSim doesn't use Runge Kute for propagation
24 from Configuration.Eras.Modifier_fastSim_cff import fastSim
25 fastSim.toModify(tevMuons,
26  RefitterParameters = dict(TrackerRecHitBuilder = 'WithoutRefit',
27  Propagator = "SmartPropagatorAny")
28  )
29 
30 
31