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
00010
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 )