Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004 pfCandidateManager = cms.EDAnalyzer("PFCandidateManagerAnalyzer",
00005 InputCollection = cms.InputTag('particleFlow'),
00006 MatchCollection = cms.InputTag(''),
00007 dRMax = cms.double( 0.2 ),
00008 ptMin = cms.double( 2 ),
00009 ptMax = cms.double( 999999 ),
00010 etaMin = cms.double(-10),
00011 etaMax = cms.double(10),
00012 phiMin = cms.double(-10),
00013 phiMax = cms.double(10),
00014 matchCharge = cms.bool( True ),
00015 mode = cms.int32( 1 ),
00016 BenchmarkLabel = cms.string('particleFlowManager')
00017 )