CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pfCandidateBenchmark_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 pfCandidateBenchmark = cms.EDAnalyzer("PFCandidateBenchmarkAnalyzer",
5  InputCollection = cms.InputTag('particleFlow'),
6  mode = cms.int32( 1 ),
7  ptMin = cms.double( 2 ),
8  ptMax = cms.double( 999999 ),
9  etaMin = cms.double(-10),
10  etaMax = cms.double(10),
11  phiMin = cms.double(-10),
12  phiMax = cms.double(10),
13  BenchmarkLabel = cms.string('particleFlowPFCandidate')
14  )