CMS 3D CMS Logo

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