CMS 3D CMS Logo

metBenchmark_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 metBenchmark = DQMEDAnalyzer('METBenchmarkAnalyzer',
6  InputCollection = cms.InputTag('pfMet'),
7  mode = cms.int32( 1 ),
8  ptMin = cms.double( 0.0 ),
9  ptMax = cms.double( 999999. ),
10  phiMin = cms.double(-10.),
11  phiMax = cms.double(10.),
12  BenchmarkLabel = cms.string('pfMet')
13  )
14 
15 matchMetBenchmark = DQMEDAnalyzer('MatchMETBenchmarkAnalyzer',
16  InputCollection = cms.InputTag('pfMet'),
17  MatchCollection = cms.InputTag('genMetTrue'),
18  dRMax = cms.double( 999. ),
19 # ptMin = cms.double( 0.0 ),
20 # ptMax = cms.double( 999999 ),
21 # etaMin = cms.double(-10),
22 # etaMax = cms.double(10),
23 # phiMin = cms.double(-10),
24 # phiMax = cms.double(10),
25  mode = cms.int32( 1 ),
26  BenchmarkLabel = cms.string('MatchMETManager')
27  )
28 
29