00001 import FWCore.ParameterSet.Config as cms
00002
00003 from PhysicsTools.PatAlgos.cleaningLayer1.electronCleaner_cfi import *
00004 from PhysicsTools.PatAlgos.cleaningLayer1.muonCleaner_cfi import *
00005 from PhysicsTools.PatAlgos.cleaningLayer1.tauCleaner_cfi import *
00006 from PhysicsTools.PatAlgos.cleaningLayer1.photonCleaner_cfi import *
00007 from PhysicsTools.PatAlgos.cleaningLayer1.jetCleaner_cfi import *
00008
00009 from PhysicsTools.PatAlgos.producersLayer1.hemisphereProducer_cfi import *
00010
00011
00012
00013
00014 cleanLayer1Summary = cms.EDAnalyzer("CandidateSummaryTable",
00015 logName = cms.untracked.string("cleanLayer1Objects|PATSummaryTables"),
00016 candidates = cms.VInputTag(
00017 cms.InputTag("cleanLayer1Electrons"),
00018 cms.InputTag("cleanLayer1Muons"),
00019 cms.InputTag("cleanLayer1Taus"),
00020 cms.InputTag("cleanLayer1Photons"),
00021 cms.InputTag("cleanLayer1Jets"),
00022 )
00023 )
00024
00025
00026 cleanLayer1Objects = cms.Sequence(
00027 cleanLayer1Muons *
00028 cleanLayer1Electrons *
00029 cleanLayer1Photons *
00030 cleanLayer1Taus *
00031 cleanLayer1Jets *
00032 cleanLayer1Hemispheres *
00033 cleanLayer1Summary
00034 )