File indexing completed on 2024-04-06 12:33:15
0001 import FWCore.ParameterSet.Config as cms
0002
0003 pfJets = 'hltICone5PFJets'
0004
0005
0006
0007 pfJetBenchmark = cms.EDAnalyzer("PFJetBenchmarkAnalyzer",
0008 OutputFile = cms.untracked.string('JetBenchmark.root'),
0009 InputTruthLabel = cms.InputTag('ak4GenJets'),
0010 maxEta = cms.double(5.0),
0011 recPt = cms.double(10.0),
0012 pfjBenchmarkDebug = cms.bool(False),
0013 deltaRMax = cms.double(0.1),
0014 PlotAgainstRecoQuantities = cms.bool(False),
0015 OnlyTwoJets = cms.bool(True),
0016 BenchmarkLabel = cms.string( pfJets ),
0017 InputRecoLabel = cms.InputTag( pfJets )
0018 )