Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 pfTauMatcher = cms.EDProducer(
00004 "PFTauMatcher",
00005 src = cms.InputTag("your_collection"),
00006 matched = cms.InputTag("hpsTancTaus"),
00007 mcPdgId = cms.vint32(),
00008 mcStatus = cms.vint32(),
00009 checkCharge = cms.bool(True),
00010 maxDeltaR = cms.double(0.15),
00011 maxDPtRel = cms.double(3.0),
00012 resolveAmbiguities = cms.bool(False),
00013 resolveByMatchQuality = cms.bool(False),
00014 )
00015
00016 candViewMatchedToPFTauRefSelector = cms.EDFilter(
00017 "CandViewPFTauMatchRefSelector",
00018 src = cms.InputTag("kinematicSignalJets"),
00019 matching = cms.InputTag("pfTauMatcher"),
00020
00021 filter = cms.bool(False)
00022 )