Skip to content

Commit

Permalink
Add matchMetBenchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
Florent Sylvain Lacroix committed Nov 12, 2009
1 parent abd7f29 commit e4cd4e5
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
3 changes: 2 additions & 1 deletion DQMOffline/PFTau/python/DQMOfflineParticleFlow_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
DQMOfflineParticleFlowSequence = cms.Sequence (
candidateBenchmark +
pfCandidateBenchmark +
metBenchmark
metBenchmark +
matchMetBenchmark
)
24 changes: 20 additions & 4 deletions DQMOffline/PFTau/python/metBenchmark_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,25 @@
metBenchmark = cms.EDAnalyzer("METBenchmarkAnalyzer",
InputCollection = cms.InputTag('pfMet'),
mode = cms.int32( 1 ),
ptMin = cms.double( 20 ),
ptMax = cms.double( 999999 ),
phiMin = cms.double(-10),
phiMax = cms.double(10),
ptMin = cms.double( 0.0 ),
ptMax = cms.double( 999999. ),
phiMin = cms.double(-10.),
phiMax = cms.double(10.),
BenchmarkLabel = cms.string('pfMet')
)

matchMetBenchmark = cms.EDAnalyzer("MatchMETBenchmarkAnalyzer",
InputCollection = cms.InputTag('pfMet'),
MatchCollection = cms.InputTag('genMetTrue'),
dRMax = cms.double( 999. ),
# ptMin = cms.double( 0.0 ),
# ptMax = cms.double( 999999 ),
# etaMin = cms.double(-10),
# etaMax = cms.double(10),
# phiMin = cms.double(-10),
# phiMax = cms.double(10),
mode = cms.int32( 1 ),
BenchmarkLabel = cms.string('MatchMETManager')
)


0 comments on commit e4cd4e5

Please sign in to comment.