CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Variables
mcMatch_cfi Namespace Reference

Variables

tuple myJetGenJetMatch
 
tuple myMuonMatch
 

Variable Documentation

tuple mcMatch_cfi.myJetGenJetMatch
Initial value:
1 = cms.EDProducer("GenJetMatcher", # cut on deltaR, deltaPt/Pt; pick best by deltaR
2  src = cms.InputTag("ak5CaloJets"), # RECO jets (any View<Jet> is ok)
3  matched = cms.InputTag("ak5GenJets"), # GEN jets (must be GenJetCollection)
4  mcPdgId = cms.vint32(), # n/a
5  mcStatus = cms.vint32(), # n/a
6  checkCharge = cms.bool(False), # n/a
7  maxDeltaR = cms.double(0.4), # Minimum deltaR for the match
8  maxDPtRel = cms.double(3.0), # Minimum deltaPt/Pt for the match
9  resolveAmbiguities = cms.bool(True), # Forbid two RECO objects to match to the same GEN object
10  resolveByMatchQuality = cms.bool(False) # False = just match input in order; True = pick lowest deltaR pair first
11 )

Definition at line 14 of file mcMatch_cfi.py.

tuple mcMatch_cfi.myMuonMatch
Initial value:
1 = cms.EDProducer("MCMatcher", # cut on deltaR, deltaPt/Pt; pick best by deltaR
2  src = cms.InputTag("muons"), # RECO objects to match
3  matched = cms.InputTag("genParticles"), # mc-truth particle collection
4  mcPdgId = cms.vint32(13), # one or more PDG ID (13 = muon); absolute values (see below)
5  checkCharge = cms.bool(True), # True = require RECO and MC objects to have the same charge
6  mcStatus = cms.vint32(1), # PYTHIA status code (1 = stable, 2 = shower, 3 = hard scattering)
7  maxDeltaR = cms.double(0.5), # Minimum deltaR for the match
8  maxDPtRel = cms.double(0.5), # Minimum deltaPt/Pt for the match
9  resolveAmbiguities = cms.bool(True), # Forbid two RECO objects to match to the same GEN object
10  resolveByMatchQuality = cms.bool(False) # False = just match input in order; True = pick lowest deltaR pair first
11 )

Definition at line 3 of file mcMatch_cfi.py.