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