/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimTracker/TrackAssociatorProducers/python/trackAssociatorByPosition_cfi.py
21 строка
1 KB
Christopher Jones
Added configuration files for new Track Associator EDProducers
14 янв 2015, 23:28
14 янв 2015, 23:28
babfb43
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms trackAssociatorByPosition = cms.EDProducer("TrackAssociatorByPositionProducer", #use the delta eta-phi estimator on the momentum at a plane in the muon system # string method = "momdr" #use the delta eta-phi estimator on the position at a plane in the muon system # string method = "posdr" QminCut = cms.double(120.0), MinIfNoMatch = cms.bool(False), propagator = cms.string('SteppingHelixPropagatorAlong'), # minimum distance from the origin to find a hit from a simulated particle and match it to reconstructed track positionMinimumDistance = cms.double(0.0), #use a chi2 estimation on the 5x5 local parameters and errors in a plane in the muon system # string method = "chi2" #use the distance between state in a plane in the muon system method = cms.string('dist'), QCut = cms.double(10.0), # False is the old behavior, True will use also the muon simhits to do the matching. ConsiderAllSimHits = cms.bool(False), simHitTpMapTag = cms.InputTag("simHitTPAssocProducer") )