CMS 3D CMS Logo

MuonCkfTrajectoryBuilder_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 MuonCkfTrajectoryBuilder = cms.PSet(
4  ComponentType = cms.string('MuonCkfTrajectoryBuilder'),
5  propagatorAlong = cms.string('PropagatorWithMaterial'),
6  trajectoryFilter = cms.PSet(refToPSet_ = cms.string('muonCkfTrajectoryFilter')),
7  maxCand = cms.int32(5),
8  intermediateCleaning = cms.bool(False),
9  #would skip the first layer to search for measurement if bare TrajectorySeed
10  useSeedLayer = cms.bool(False),
11  estimator = cms.string('Chi2'),
12  TTRHBuilder = cms.string('WithTrackAngle'),
13  #propagator used only if useSeedLayer=true
14  propagatorProximity = cms.string('SteppingHelixPropagatorAny'),
15  updator = cms.string('KFUpdator'),
16  alwaysUseInvalidHits = cms.bool(True),
17  #would rescale the error to find measurements is failing
18  #1.0 would skip this step completely
19  rescaleErrorIfFail = cms.double(1.0),
20  propagatorOpposite = cms.string('PropagatorWithMaterialOpposite'),
21  lostHitPenalty = cms.double(30.0),
22  #this is present in HLT config, appears to be dummy
23 # appendToDataLabel = cms.string( "" ),
24  #safety cone size
25  deltaEta = cms.double( 0.1 ),
26  deltaPhi = cms.double( 0.1 )
27 )
28 
29 
30