Variables | |
tuple | candViewMatchedToPFTauRefSelector |
tuple | pfTauMatcher |
00001 cms.EDFilter( 00002 "CandViewPFTauMatchRefSelector", 00003 src = cms.InputTag("kinematicSignalJets"), 00004 matching = cms.InputTag("pfTauMatcher"), 00005 # keep events with no matches 00006 filter = cms.bool(False) 00007 )
Definition at line 16 of file PFTauMatching_cfi.py.
00001 cms.EDProducer( 00002 "PFTauMatcher", 00003 src = cms.InputTag("your_collection"), 00004 matched = cms.InputTag("hpsTancTaus"), 00005 mcPdgId = cms.vint32(), # n/a 00006 mcStatus = cms.vint32(), # n/a 00007 checkCharge = cms.bool(True), # Require charge is correct 00008 maxDeltaR = cms.double(0.15), # Minimum deltaR for the match 00009 maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match 00010 resolveAmbiguities = cms.bool(False), # Forbid two RECO objects to match to the same GEN object 00011 resolveByMatchQuality = cms.bool(False), # False = just match input in order; True = pick lowest deltaR pair first 00012 )
Definition at line 3 of file PFTauMatching_cfi.py.