CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
metBenchmark_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 metBenchmark = cms.EDAnalyzer("METBenchmarkAnalyzer",
5  InputCollection = cms.InputTag('pfMet'),
6  mode = cms.int32( 1 ),
7  ptMin = cms.double( 0.0 ),
8  ptMax = cms.double( 999999. ),
9  phiMin = cms.double(-10.),
10  phiMax = cms.double(10.),
11  BenchmarkLabel = cms.string('pfMet')
12  )
13 
14 matchMetBenchmark = cms.EDAnalyzer("MatchMETBenchmarkAnalyzer",
15  InputCollection = cms.InputTag('pfMet'),
16  MatchCollection = cms.InputTag('genMetTrue'),
17  dRMax = cms.double( 999. ),
18 # ptMin = cms.double( 0.0 ),
19 # ptMax = cms.double( 999999 ),
20 # etaMin = cms.double(-10),
21 # etaMax = cms.double(10),
22 # phiMin = cms.double(-10),
23 # phiMax = cms.double(10),
24  mode = cms.int32( 1 ),
25  BenchmarkLabel = cms.string('MatchMETManager')
26  )
27 
28