00001 import FWCore.ParameterSet.Config as cms
00002
00003 from PhysicsTools.PatAlgos.selectionLayer1.electronSelector_cfi import *
00004 from PhysicsTools.PatAlgos.selectionLayer1.muonSelector_cfi import *
00005 from PhysicsTools.PatAlgos.selectionLayer1.tauSelector_cfi import *
00006 from PhysicsTools.PatAlgos.selectionLayer1.photonSelector_cfi import *
00007 from PhysicsTools.PatAlgos.selectionLayer1.jetSelector_cfi import *
00008
00009
00010
00011
00012 selectedLayer1Summary = cms.EDAnalyzer("CandidateSummaryTable",
00013 logName = cms.untracked.string("selectedLayer1Objects|PATSummaryTables"),
00014 candidates = cms.VInputTag(
00015 cms.InputTag("selectedLayer1Electrons"),
00016 cms.InputTag("selectedLayer1Muons"),
00017 cms.InputTag("selectedLayer1Taus"),
00018 cms.InputTag("selectedLayer1Photons"),
00019 cms.InputTag("selectedLayer1Jets"),
00020 )
00021 )
00022
00023
00024 selectedLayer1Objects = cms.Sequence(
00025 selectedLayer1Electrons +
00026 selectedLayer1Muons +
00027 selectedLayer1Taus +
00028 selectedLayer1Photons +
00029 selectedLayer1Jets +
00030
00031 selectedLayer1Summary
00032 )