/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimTracker/TrackTriggerAssociation/python/TTStubAssociation_cfi.py
13 строк
878 B
Ian Tomalin
Added ClusterReject collection to associators
10 июл 2020, 23:06
10 июл 2020, 23:06
c172369
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms TTStubAssociatorFromPixelDigis = cms.EDProducer("TTStubAssociator_Phase2TrackerDigi_", TTStubs = cms.VInputTag( cms.InputTag("TTStubsFromPhase2TrackerDigis", "StubAccepted"), cms.InputTag("TTStubsFromPhase2TrackerDigis", "StubRejected"), ), TTClusterTruth = cms.VInputTag( cms.InputTag("TTClusterAssociatorFromPixelDigis", "ClusterAccepted"), cms.InputTag("TTClusterAssociatorFromPixelDigis", "ClusterRejected"), ) # NOTE: the two vectors of input tags must be of the same size and in the correct order # as the producer would run on a specific pair and return a big error message # if the vectors are uncorrectly dimensioned # so "StubAccepted" needs the "ClusterAccepted" MC truth, and "StubRejected" the "ClusterRejected" MC truth )