CMS 3D CMS Logo

pfCandidateManager_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
5 pfCandidateManager = DQMEDAnalyzer('PFCandidateManagerAnalyzer',
6  InputCollection = cms.InputTag('particleFlow'),
7  MatchCollection = cms.InputTag(''),
8  dRMax = cms.double( 0.2 ),
9  ptMin = cms.double( 2 ),
10  ptMax = cms.double( 999999 ),
11  etaMin = cms.double(-10),
12  etaMax = cms.double(10),
13  phiMin = cms.double(-10),
14  phiMax = cms.double(10),
15  matchCharge = cms.bool( True ),
16  mode = cms.int32( 1 ),
17  BenchmarkLabel = cms.string('particleFlowManager')
18  )