CMS 3D CMS Logo

jetFlavourId_cff.py

Go to the documentation of this file.
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 # default PAT sequence for jet flavour identification
00019 jetFlavourId = cms.Sequence(jetPartons * jetPartonAssociation * jetFlavourAssociation)
00020 

Generated on Tue Jun 9 17:41:44 2009 for CMSSW by  doxygen 1.5.4