Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004 pfJets = 'ak5PFJets'
00005
00006 pfJetBenchmark = cms.EDAnalyzer("PFJetBenchmarkAnalyzer",
00007 OutputFile = cms.untracked.string('JetBenchmark.root'),
00008 InputTruthLabel = cms.InputTag('ak5GenJets'),
00009 maxEta = cms.double(5.0),
00010 recPt = cms.double(10.0),
00011 pfjBenchmarkDebug = cms.bool(False),
00012 deltaRMax = cms.double(0.1),
00013 PlotAgainstRecoQuantities = cms.bool(False),
00014 OnlyTwoJets = cms.bool(True),
00015 BenchmarkLabel = cms.string( pfJets ),
00016 InputRecoLabel = cms.InputTag( pfJets )
00017 )