Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 from TrackingTools.TrackRefitter.TracksToTrajectories_cff import *
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 standAloneMuons = cms.EDProducer("TracksToTrajectories",
00017 Type = cms.string("Default"),
00018 Tracks = cms.InputTag("standAloneMuons"),
00019 TrackTransformer = cms.PSet(DoPredictionsOnly = cms.bool(False),
00020 Fitter = cms.string('KFFitterForRefitInsideOut'),
00021
00022 TrackerRecHitBuilder = cms.string('WithTrackAngle'),
00023 Smoother = cms.string('KFSmootherForRefitInsideOut'),
00024 MuonRecHitBuilder = cms.string('MuonRecHitBuilder'),
00025 RefitDirection = cms.string('alongMomentum'),
00026 RefitRPCHits = cms.bool(True),
00027 Propagator = cms.string('SmartPropagatorAnyRKOpposite')
00028 )
00029 )
00030
00031
00032