CMS 3D CMS Logo

selectedLayer1Objects_cff.py

Go to the documentation of this file.
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 #from PhysicsTools.PatAlgos.producersLayer1.hemisphereProducer_cfi import *
00010 
00011 # One module to count objects
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  #  selectedLayer1Hemispheres +
00031     selectedLayer1Summary
00032 )

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