CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
NuclearTrackCorrector_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 TrackCorrector = cms.EDProducer("NuclearTrackCorrector",
4  InputTrajectory = cms.string('TrackRefitter'),
5  KeepOnlyCorrectedTracks = cms.int32(0),
6  InputNuclearSeed = cms.string('nuclearSeed'),
7  # necessary for the fitting
8  Fitter = cms.string('KFFittingSmoother'),
9  # necessary for the TrackProducerAlgorithm
10  useHitsSplitting = cms.bool(False),
11  Verbosity = cms.int32(0),
12  InputHitDistance = cms.int32(3),
13  Propagator = cms.string('PropagatorWithMaterial'),
14  # nested parameter set for TransientInitialStateEstimator
15  TransientInitialStateEstimatorParameters = cms.PSet(
16  propagatorAlongTISE = cms.string('PropagatorWithMaterial'),
17  propagatorOppositeTISE = cms.string('PropagatorWithMaterialOpposite')
18  )
19 )
20 
21