CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackAssociatorByPosition_cfi.py
Go to the documentation of this file.
2 
3 TrackAssociatorByPosition = cms.ESProducer("TrackAssociatorByPositionESProducer",
4  #use the delta eta-phi estimator on the momentum at a plane in the muon system
5  # string method = "momdr"
6  #use the delta eta-phi estimator on the position at a plane in the muon system
7  # string method = "posdr"
8  QminCut = cms.double(120.0),
9  MinIfNoMatch = cms.bool(False),
10  ComponentName = cms.string('TrackAssociatorByPosition'),
11  propagator = cms.string('SteppingHelixPropagatorAlong'),
12  # minimum distance from the origin to find a hit from a simulated particle and match it to reconstructed track
13  positionMinimumDistance = cms.double(0.0),
14  #use a chi2 estimation on the 5x5 local parameters and errors in a plane in the muon system
15  # string method = "chi2"
16  #use the distance between state in a plane in the muon system
17  method = cms.string('dist'),
18  QCut = cms.double(10.0),
19  # False is the old behavior, True will use also the muon simhits to do the matching.
20  ConsiderAllSimHits = cms.bool(False)
21 )
22 
23