CMS 3D CMS Logo

GsfElectronFittingSmoother_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 GsfElectronFittingSmoother = TrackingTools.TrackFitters.KFFittingSmoother_cfi.KFFittingSmoother.clone(
5  ComponentName = 'GsfElectronFittingSmoother',
6  Fitter = 'GsfTrajectoryFitter',
7  Smoother = 'GsfTrajectorySmoother',
8  MinNumberOfHitsHighEta = 3,
9  HighEtaSwitch = 2.5
10 )
11 
12 # Phase2 has extended outer-tracker coverage
13 # so no need to relax cuts on number of hits at high eta
14 from Configuration.Eras.Modifier_phase2_common_cff import phase2_common
15 phase2_common.toModify(GsfElectronFittingSmoother,
16  MinNumberOfHitsHighEta = 5,
17  HighEtaSwitch = 5.0
18 )