CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/PhysicsTools/JetMCAlgos/python/AK7CaloJetsMCFlavour_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # Flavour byReference
00004 AK7byRef = cms.EDProducer("JetPartonMatcher",
00005     jets = cms.InputTag("ak7CaloJets"),
00006     coneSizeToAssociate = cms.double(0.3),
00007     partons = cms.InputTag("myPartons")
00008 )
00009 
00010 # Flavour byValue PhysDef
00011 AK7byValPhys = cms.EDProducer("JetFlavourIdentifier",
00012     srcByReference = cms.InputTag("AK7byRef"),
00013     physicsDefinition = cms.bool(True),
00014     leptonInfo = cms.bool(True)
00015 )
00016 
00017 # Flavour byValue AlgoDef
00018 AK7byValAlgo = cms.EDProducer("JetFlavourIdentifier",
00019     srcByReference = cms.InputTag("AK7byRef"),
00020     physicsDefinition = cms.bool(False),
00021     leptonInfo = cms.bool(True)
00022 )