CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuonCkfTrajectoryBuilderESProducer_cff.py
Go to the documentation of this file.
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 # pixelCPE
21 #TransientTrackingBuilder
23 # MeasurementTracker
25 #
27 # trajectory filtering
28 # do no duplicate the module in order to be able to later replace its values
29 # later on, L3Muon might need a specific TrajectoryFilter adapted to online purpose
30 muonCkfTrajectoryFilter = cms.ESProducer("TrajectoryFilterESProducer",
31  filterPset = cms.PSet(
32  minimumNumberOfHits = cms.int32(5),
33  minHitsMinPt = cms.int32(3),
34  ComponentType = cms.string('CkfBaseTrajectoryFilter'),
35  maxLostHits = cms.int32(1),
36  maxNumberOfHits = cms.int32(-1),
37  maxConsecLostHits = cms.int32(1),
38  chargeSignificance = cms.double(-1.0),
39  nSigmaMinPt = cms.double(5.0),
40  minPt = cms.double(0.9)
41  ),
42  ComponentName = cms.string('muonCkfTrajectoryFilter')
43 )
44 
45 
46