00001 import FWCore.ParameterSet.Config as cms
00002
00003 jetPartons = cms.EDFilter("PartonSelector",
00004 withLeptons = cms.bool(False)
00005 )
00006
00007 jetPartonAssociation = cms.EDFilter("JetPartonMatcher",
00008 jets = cms.InputTag("iterativeCone5CaloJets"),
00009 partons = cms.InputTag("jetPartons"),
00010 coneSizeToAssociate = cms.double(0.3),
00011 )
00012
00013 jetFlavourAssociation = cms.EDFilter("JetFlavourIdentifier",
00014 srcByReference = cms.InputTag("jetPartonAssociation"),
00015 physicsDefinition = cms.bool(False)
00016 )
00017
00018
00019 jetFlavourId = cms.Sequence(jetPartons * jetPartonAssociation * jetFlavourAssociation)
00020