CMS 3D CMS Logo

pfJetBenchmark_HLT_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 pfJets = 'hltICone5PFJets'
4 #pfJets = 'iterativeCone5PFJets'
5 #pfJets = 'ak4PFJets'
6 
7 pfJetBenchmark = cms.EDAnalyzer("PFJetBenchmarkAnalyzer",
8  OutputFile = cms.untracked.string('JetBenchmark.root'),
9  InputTruthLabel = cms.InputTag('ak4GenJets'),
10  maxEta = cms.double(5.0),
11  recPt = cms.double(10.0),
12  pfjBenchmarkDebug = cms.bool(False),
13  deltaRMax = cms.double(0.1),
14  PlotAgainstRecoQuantities = cms.bool(False),
15  OnlyTwoJets = cms.bool(True),
16  BenchmarkLabel = cms.string( pfJets ),
17  InputRecoLabel = cms.InputTag( pfJets )
18 )