CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/RecoTauTag/TauTagTools/python/RecoTauTruthMatching_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 recoTauTruthMatcher = cms.EDProducer(
00004     "GenJetMatcher",
00005     src = cms.InputTag("combinatoricRecoTaus"),
00006     matched = cms.InputTag("trueHadronicTaus"),
00007     mcPdgId     = cms.vint32(),                      # n/a
00008     mcStatus    = cms.vint32(),                      # n/a
00009     checkCharge = cms.bool(True),                    # Require charge is correct
00010     maxDeltaR   = cms.double(0.15),                  # Minimum deltaR for the match
00011     maxDPtRel   = cms.double(3.0),                   # Minimum deltaPt/Pt for the match
00012     resolveAmbiguities    = cms.bool(False),         # Forbid two RECO objects to match to the same GEN object
00013     resolveByMatchQuality = cms.bool(False),         # False = just match input in order; True = pick lowest deltaR pair first
00014 )