00001 import FWCore.ParameterSet.Config as cms 00002 00003 from RecoTracker.TrackProducer.RefitterWithMaterial_cfi import * 00004 # Adjust to your needs: 00005 # replace TrackRefitter.src = "AlignmentTracks" 00006 # replace TrackRefitter.TrajectoryInEvent = true 00007 # All conditions should be included centrally, but you'll need some for the lorentz angle: 00008 # include "CalibTracker/Configuration/data/SiStrip_FakeLorentzAngle.cff" 00009 from TrackingTools.KalmanUpdators.KFUpdatorESProducer_cfi import * 00010 from TrackingTools.TrackFitters.KFTrajectoryFitterESProducer_cfi import * 00011 from TrackingTools.TrackFitters.KFTrajectorySmootherESProducer_cfi import * 00012 from TrackingTools.TrackFitters.KFFittingSmootherESProducer_cfi import * 00013 from TrackingTools.GeomPropagators.AnalyticalPropagator_cfi import * 00014 from TrackingTools.KalmanUpdators.Chi2MeasurementEstimatorESProducer_cfi import * 00015 # Not to loose hits/tracks, we might want to open the allowed chi^2 contribution for single hits: 00016 # replace Chi2MeasurementEstimator.MaxChi2 = 50. # untested, default 30 00017 from RecoLocalTracker.SiStripRecHitConverter.StripCPEfromTrackAngle_cfi import * 00018 from RecoLocalTracker.SiStripRecHitConverter.SiStripRecHitMatcher_cfi import * 00019 from RecoLocalTracker.SiPixelRecHits.PixelCPEParmError_cfi import * 00020 from RecoTracker.TransientTrackingRecHit.TransientTrackingRecHitBuilder_cfi import * 00021 # Take care to avoid interferences with other things 00022 # using KFTrajectoryFitter and KFTrajectorySmoother... 00023 TrackRefitter.Propagator = 'analyticalPropagator' 00024 KFTrajectoryFitter.Propagator = 'analyticalPropagator' 00025 KFTrajectorySmoother.Propagator = 'analyticalPropagator' 00026