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 from RecoMuon.GlobalTrackingTools.GlobalTrajectoryBuilderCommon_cff import *
00006 globalMuons = cms.EDProducer("GlobalMuonProducer",
00007 MuonServiceProxy,
00008 MuonTrackLoaderForGLB,
00009 GLBTrajBuilderParameters = cms.PSet(
00010 GlobalTrajectoryBuilderCommon
00011 ),
00012 TrackerCollectionLabel = cms.InputTag("generalTracks"),
00013 MuonCollectionLabel = cms.InputTag("standAloneMuons","UpdatedAtVtx")
00014 )
00015
00016 globalMuons.GLBTrajBuilderParameters.GlobalMuonTrackMatcher.Propagator = cms.string('SmartPropagatorRK')
00017 globalMuons.GLBTrajBuilderParameters.TrackTransformer.Propagator = cms.string('SmartPropagatorAnyRK')
00018
00019