CMS 3D CMS Logo

MuonCkfTrajectoryBuilder_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # initialize magnetic field #########################
4 # initialize geometry #####################
5 # from RecoTracker.GeometryESProducer.TrackerRecoGeometryESProducer_cfi import *
6 # KFUpdatoerESProducer
8 # Chi2MeasurementEstimatorESProducer
10 # PropagatorWithMaterialESProducer
12 # PropagatorWithMaterialESProducer
14 #stepping helix propagator
16 # stripCPE
19 #TransientTrackingBuilder
21 # MeasurementTracker
23 #
25 # trajectory filtering
26 # do no duplicate the module in order to be able to later replace its values
27 # later on, L3Muon might need a specific TrajectoryFilter adapted to online purpose
28 muonCkfTrajectoryFilter = cms.PSet(
29  minimumNumberOfHits = cms.int32(5),
30  minHitsMinPt = cms.int32(3),
31  ComponentType = cms.string('CkfBaseTrajectoryFilter'),
32  maxLostHits = cms.int32(1),
33  maxNumberOfHits = cms.int32(-1),
34  maxConsecLostHits = cms.int32(1),
35  chargeSignificance = cms.double(-1.0),
36  nSigmaMinPt = cms.double(5.0),
37  minPt = cms.double(0.9)
38 )
39 
40 
41