CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/DQMOffline/PFTau/python/metBenchmark_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 
00004 metBenchmark = cms.EDAnalyzer("METBenchmarkAnalyzer",
00005                               InputCollection = cms.InputTag('pfMet'),
00006                               mode = cms.int32( 1 ),
00007                               ptMin = cms.double( 0.0 ),
00008                               ptMax = cms.double( 999999. ),
00009                               phiMin = cms.double(-10.),
00010                               phiMax = cms.double(10.),
00011                               BenchmarkLabel = cms.string('pfMet')
00012                               )
00013 
00014 matchMetBenchmark = cms.EDAnalyzer("MatchMETBenchmarkAnalyzer",
00015                                     InputCollection = cms.InputTag('pfMet'),
00016                                     MatchCollection = cms.InputTag('genMetTrue'),
00017                                     dRMax = cms.double( 999. ),
00018 #                                    ptMin = cms.double( 0.0 ),
00019 #                                    ptMax = cms.double( 999999 ),
00020 #                                    etaMin = cms.double(-10),
00021 #                                    etaMax = cms.double(10),
00022 #                                    phiMin = cms.double(-10),
00023 #                                    phiMax = cms.double(10),
00024                                     mode = cms.int32( 1 ),
00025                                     BenchmarkLabel = cms.string('MatchMETManager')
00026                                     )
00027 
00028