CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 
23