CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/SimTracker/TrackAssociation/python/TrackAssociatorByPosition_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 TrackAssociatorByPosition = cms.ESProducer("TrackAssociatorByPositionESProducer",
00004     #use the delta eta-phi estimator on the momentum at a plane in the muon system
00005     #   string method = "momdr"
00006     #use the delta eta-phi estimator on the position at a plane in the muon system
00007     #   string method = "posdr"
00008     QminCut = cms.double(120.0),
00009     MinIfNoMatch = cms.bool(False),
00010     ComponentName = cms.string('TrackAssociatorByPosition'),
00011     propagator = cms.string('SteppingHelixPropagatorAlong'),
00012     # minimum distance from the origin to find a hit from a simulated particle and match it to reconstructed track
00013     positionMinimumDistance = cms.double(0.0),
00014     #use a chi2 estimation on the 5x5 local parameters and errors in a plane in the muon system
00015     #   string method = "chi2"
00016     #use the distance between state in a plane in the muon system
00017     method = cms.string('dist'),
00018     QCut = cms.double(10.0),
00019     # False is the old behavior, True will use also the muon simhits to do the matching.                                       
00020     ConsiderAllSimHits = cms.bool(False)
00021 )
00022 
00023