CMS 3D CMS Logo

TTStubAssociation_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 TTStubAssociatorFromPixelDigis = cms.EDProducer("TTStubAssociator_Phase2TrackerDigi_",
4  TTStubs = cms.VInputTag( cms.InputTag("TTStubsFromPhase2TrackerDigis", "StubAccepted"),
5  cms.InputTag("TTStubsFromPhase2TrackerDigis", "StubRejected"),
6  ),
7  TTClusterTruth = cms.VInputTag( cms.InputTag("TTClusterAssociatorFromPixelDigis", "ClusterAccepted"),
8  cms.InputTag("TTClusterAssociatorFromPixelDigis", "ClusterRejected"),
9  ) # NOTE: the two vectors of input tags must be of the same size and in the correct order
10  # as the producer would run on a specific pair and return a big error message
11  # if the vectors are uncorrectly dimensioned
12  # so "StubAccepted" needs the "ClusterAccepted" MC truth, and "StubRejected" the "ClusterRejected" MC truth
13 )
14