CMS 3D CMS Logo

trackAssociatorByPosition_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 trackAssociatorByPosition = cms.EDProducer("TrackAssociatorByPositionProducer",
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  propagator = cms.string('SteppingHelixPropagatorAlong'),
11  # minimum distance from the origin to find a hit from a simulated particle and match it to reconstructed track
12  positionMinimumDistance = cms.double(0.0),
13  #use a chi2 estimation on the 5x5 local parameters and errors in a plane in the muon system
14  # string method = "chi2"
15  #use the distance between state in a plane in the muon system
16  method = cms.string('dist'),
17  QCut = cms.double(10.0),
18  # False is the old behavior, True will use also the muon simhits to do the matching.
19  ConsiderAllSimHits = cms.bool(False),
20  simHitTpMapTag = cms.InputTag("simHitTPAssocProducer")
21 )
22 
23