CMS 3D CMS Logo

standAloneMuonTrajectories_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from TrackingTools.TrackRefitter.TracksToTrajectories_cff import *
00004 # IMPORTANT !!! ##
00005 # If you want to revert the fit direction, then
00006 # Case 1 #
00007 # string RefitDirection = "insideOut"
00008 # KFTrajectoryFitterESProducer   ---> Fitter = "KFFitterForRefitInsideOut"
00009 # KFTrajectorySmootherESProducer ---> Smoother = "KFSmootherForRefitInsideOut"
00010 # Case 2 #
00011 # string RefitDirection = "outsideIn"
00012 # KFTrajectoryFitterESProducer   ---> Fitter = "KFFitterForRefitOutsideIn"
00013 # KFTrajectorySmootherESProducer ---> Smoother = "KFSmootherForRefitOutsideIn"
00014 # the propagator must be the same as the one used by the Fitter
00015 #
00016 standAloneMuons = cms.EDFilter("tracksToTrajectories",
00017     Tracks = cms.InputTag("standAloneMuons"),
00018     TrackTransformer = cms.PSet(
00019         Fitter = cms.string('KFFitterForRefitInsideOut'),
00020         TrackerRecHitBuilder = cms.string('WithTrackAngle'),
00021         Smoother = cms.string('KFSmootherForRefitInsideOut'),
00022         MuonRecHitBuilder = cms.string('MuonRecHitBuilder'),
00023         RefitDirection = cms.string('insideOut'),
00024         RefitRPCHits = cms.bool(True),
00025         Propagator = cms.string('SmartPropagatorAnyRK')
00026     )
00027 )
00028 
00029 

Generated on Tue Jun 9 17:48:33 2009 for CMSSW by  doxygen 1.5.4