CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pfJetBenchmarkGeneric_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 jets = 'iterativeCone5PFJets'
4 
5 pfJetBenchmarkGeneric = cms.EDAnalyzer("GenericBenchmarkAnalyzer",
6  OutputFile = cms.untracked.string('jetBenchmarkGeneric.root'),
7  InputTruthLabel = cms.InputTag('ak4GenJets'),
8  minEta = cms.double(-1),
9  maxEta = cms.double(1.4),
10  recPt = cms.double(10.0),
11  deltaRMax = cms.double(0.1),
12  StartFromGen = cms.bool(False),
13  PlotAgainstRecoQuantities = cms.bool(False),
14  OnlyTwoJets = cms.bool(True),
15  BenchmarkLabel = cms.string( jets ),
16  InputRecoLabel = cms.InputTag( jets ),
17  minDeltaEt = cms.double(-200.),
18  maxDeltaEt = cms.double(200.),
19  minDeltaPhi = cms.double(-3.2),
20  maxDeltaPhi = cms.double(3.2),
21  doMetPlots = cms.bool(False)
22 )