CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/PhysicsTools/PatAlgos/python/selectionLayer1/selectedPatCandidates_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 #from PhysicsTools.PatAlgos.producersLayer1.hemisphereProducer_cfi import *
00009 
00010 # One module to count objects
00011 selectedPatCandidateSummary = cms.EDAnalyzer("CandidateSummaryTable",
00012     logName = cms.untracked.string("selectedPatCanddiates|PATSummaryTables"),
00013     candidates = cms.VInputTag(
00014         cms.InputTag("selectedPatElectrons"),
00015         cms.InputTag("selectedPatMuons"),
00016         cms.InputTag("selectedPatTaus"),
00017         cms.InputTag("selectedPatPhotons"),
00018         cms.InputTag("selectedPatJets"),
00019     )
00020 )
00021 
00022 
00023 selectedPatCandidates = cms.Sequence(
00024     selectedPatElectrons +
00025     selectedPatMuons     +
00026     selectedPatTaus      +
00027     selectedPatPhotons   +
00028     selectedPatJets      +
00029     selectedPatCandidateSummary
00030 )