Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 77750
b: "refs/heads/CMSSW_7_1_X"
c: e4cd4e5
h: "refs/heads/CMSSW_7_1_X"
v: v3
  • Loading branch information
Florent Sylvain Lacroix committed Nov 12, 2009
1 parent 50e83cb commit 6e800a0
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
refs/heads/gh-pages: 09c786f70121f131b3715aaf3464996502bbeb7e
"refs/heads/CMSSW_7_1_X": abd7f29d5d66768b83472a5d9e45691fd0525326
"refs/heads/CMSSW_7_1_X": e4cd4e5081bd6fae2370f1dae9fc58586828ef39
3 changes: 2 additions & 1 deletion trunk/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 trunk/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 6e800a0

Please sign in to comment.