CMS 3D CMS Logo

Variables

tauMatch_cfi Namespace Reference

Variables

tuple tauGenJetMatch
tuple tauMatch

Variable Documentation

Initial value:
00001 cms.EDProducer("GenJetMatcher",             # cut on deltaR, deltaPt/Pt; pick best by deltaR
00002     src         = cms.InputTag("hpsPFTauProducer"),          # RECO jets (any View<Jet> is ok)
00003     matched     = cms.InputTag("tauGenJetsSelectorAllHadrons"),  # GEN jets  (must be GenJetCollection)
00004     mcPdgId     = cms.vint32(),                              # n/a
00005     mcStatus    = cms.vint32(),                              # n/a
00006     checkCharge = cms.bool(False),                           # n/a
00007     maxDeltaR   = cms.double(0.1),                           # Minimum deltaR for the match
00008     maxDPtRel   = cms.double(3.0),                           # Minimum deltaPt/Pt for the match
00009     resolveAmbiguities    = cms.bool(True),                  # Forbid two RECO objects to match to the same GEN object
00010     resolveByMatchQuality = cms.bool(False),                 # False = just match input in order; True = pick lowest deltaR pair first
00011 )

Definition at line 21 of file tauMatch_cfi.py.

Initial value:
00001 cms.EDProducer("MCMatcher",
00002     src         = cms.InputTag("hpsPFTauProducer"),          # RECO objects to match
00003     matched     = cms.InputTag("genParticles"),              # mc-truth particle collection
00004     mcPdgId     = cms.vint32(15),                            # one or more PDG ID (15 = tau); absolute values (see below)
00005     checkCharge = cms.bool(True),                            # True = require RECO and MC objects to have the same charge
00006     mcStatus    = cms.vint32(2),                             # PYTHIA status code (1 = stable, 2 = shower, 3 = hard scattering)
00007                                                              # NOTE that Taus can only be status 3 or 2, never 1!
00008     maxDeltaR   = cms.double(999.9),                         # Minimum deltaR for the match.     By default any deltaR is allowed (why??)
00009     maxDPtRel   = cms.double(999.9),                         # Minimum deltaPt/Pt for the match. By default anything is allowed   ( ""  )
00010     resolveAmbiguities    = cms.bool(True),                  # 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 8 of file tauMatch_cfi.py.