CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pfCandidateManager_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 pfCandidateManager = cms.EDAnalyzer("PFCandidateManagerAnalyzer",
5  InputCollection = cms.InputTag('particleFlow'),
6  MatchCollection = cms.InputTag(''),
7  dRMax = cms.double( 0.2 ),
8  ptMin = cms.double( 2 ),
9  ptMax = cms.double( 999999 ),
10  etaMin = cms.double(-10),
11  etaMax = cms.double(10),
12  phiMin = cms.double(-10),
13  phiMax = cms.double(10),
14  matchCharge = cms.bool( True ),
15  mode = cms.int32( 1 ),
16  BenchmarkLabel = cms.string('particleFlowManager')
17  )