1 import FWCore.ParameterSet.Config
as cms
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')