Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-01-18 03:42:23

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from RecoTracker.TrackProducer.trackProducer_cfi import trackProducer
0004 TrackProducer = trackProducer.clone(
0005     useSimpleMF = False,
0006     SimpleMagneticField = "", # only if useSimpleMF is True
0007     src = "ckfTrackCandidates",
0008     clusterRemovalInfo = "",
0009     beamSpot = "offlineBeamSpot",
0010     Fitter = 'KFFittingSmootherWithOutliersRejectionAndRK',
0011     useHitsSplitting = False,
0012     TrajectoryInEvent = False,
0013     TTRHBuilder = 'WithAngleAndTemplate',
0014     AlgorithmName = 'undefAlgorithm',
0015     Propagator = 'RungeKuttaTrackerPropagator',
0016 
0017     # this parameter decides if the propagation to the beam line
0018     # for the track parameters defiition is from the first hit
0019     # or from the closest to the beam line
0020     # true for cosmics/beam halo, false for collision tracks (needed by loopers)
0021     GeometricInnerState = False,
0022 
0023     ### These are paremeters related to the filling of the Secondary hit-patterns
0024     #set to "", the secondary hit pattern will not be filled (backward compatible with DetLayer=0)
0025     NavigationSchool = 'SimpleNavigationSchool',
0026     MeasurementTracker = '',
0027     MeasurementTrackerEvent = 'MeasurementTrackerEvent'
0028 )