Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 from PhysicsTools.PatAlgos.patSequences_cff import *
00004 from TopQuarkAnalysis.Configuration.patRefSel_common_cfi import *
00005
00006
00007
00008
00009
00010 veryLoosePatJets = selectedPatJets.clone(
00011 src = 'selectedPatJets'
00012 , cut = ''
00013 )
00014 loosePatJets = selectedPatJets.clone(
00015 src = 'veryLoosePatJets'
00016 , cut = ''
00017 )
00018 tightPatJets = selectedPatJets.clone(
00019 src = 'loosePatJets'
00020 , cut = ''
00021 )
00022
00023 step3a = cms.EDFilter(
00024 "PATCandViewCountFilter"
00025 , src = cms.InputTag( 'selectedPatJets' )
00026 , minNumber = cms.uint32( 6 )
00027 , maxNumber = cms.uint32( 999999 )
00028 )
00029 step3b_1 = step3a.clone( src = 'tightPatJets' , minNumber = 4 )
00030 step3b_2 = step3a.clone( src = 'loosePatJets' , minNumber = 5 )
00031 step3b_3 = step3a.clone( src = 'veryLoosePatJets', minNumber = 6 )
00032
00033 step3b = cms.Sequence(step3b_1 *
00034 step3b_2 *
00035 step3b_3
00036 )