CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
selectedPatCandidates_cff.py
Go to the documentation of this file.
2 
8 #from PhysicsTools.PatAlgos.producersLayer1.hemisphereProducer_cfi import *
9 
10 # One module to count objects
11 selectedPatCandidateSummary = cms.EDAnalyzer("CandidateSummaryTable",
12  logName = cms.untracked.string("selectedPatCanddiates|PATSummaryTables"),
13  candidates = cms.VInputTag(
14  cms.InputTag("selectedPatElectrons"),
15  cms.InputTag("selectedPatMuons"),
16  cms.InputTag("selectedPatTaus"),
17  cms.InputTag("selectedPatPhotons"),
18  cms.InputTag("selectedPatJets"),
19  )
20 )
21 
22 
23 selectedPatCandidates = cms.Sequence(
24  selectedPatElectrons +
25  selectedPatMuons +
26  selectedPatTaus +
27  selectedPatPhotons +
28  selectedPatJets +
29  selectedPatCandidateSummary
30 )