CMS 3D CMS Logo

Phase1L1TJetProducer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from math import pi
3 
4 caloEtaSegmentation = cms.vdouble(
5  -5.0, -4.917, -4.833, -4.75, -4.667, -4.583, -4.5, -4.417, -4.333, -4.25,
6  -4.167, -4.083, -4.0, -3.917, -3.833, -3.75, -3.667, -3.583, -3.5, -3.417,
7  -3.333, -3.25, -3.167, -3.083, -3.0, -2.917, -2.833, -2.75, -2.667, -2.583,
8  -2.5, -2.417, -2.333, -2.25, -2.167, -2.083, -2.0, -1.917, -1.833, -1.75,
9  -1.667, -1.583, -1.5, -1.417, -1.333, -1.25, -1.167, -1.083, -1.0, -0.917,
10  -0.833, -0.75, -0.667, -0.583, -0.5, -0.417, -0.333, -0.25, -0.167, -0.083,
11  0.0, 0.083, 0.167, 0.25, 0.333, 0.417, 0.5, 0.583, 0.667, 0.75, 0.833, 0.917,
12  1.0, 1.083, 1.167, 1.25, 1.333, 1.417, 1.5, 1.583, 1.667, 1.75, 1.833, 1.917,
13  2.0, 2.083, 2.167, 2.25, 2.333, 2.417, 2.5, 2.583, 2.667, 2.75, 2.833, 2.917,
14  3.0, 3.083, 3.167, 3.25, 3.333, 3.417, 3.5, 3.583, 3.667, 3.75, 3.833, 3.917,
15  4.0, 4.083, 4.167, 4.25, 4.333, 4.417, 4.5, 4.583, 4.667, 4.75, 4.833, 4.917, 5.0)
16 
17 Phase1L1TJetProducer = cms.EDProducer('Phase1L1TJetProducer',
18  inputCollectionTag = cms.InputTag("l1pfCandidates", "Puppi"),
19  etaBinning = caloEtaSegmentation,
20  nBinsPhi = cms.uint32(72),
21  phiLow = cms.double(-pi),
22  phiUp = cms.double(pi),
23  jetIEtaSize = cms.uint32(7),
24  jetIPhiSize = cms.uint32(7),
25  seedPtThreshold = cms.double(5), # GeV
26  puSubtraction = cms.bool(False),
27  outputCollectionName = cms.string("UncalibratedPhase1L1TJetFromPfCandidates"),
28  vetoZeroPt = cms.bool(True)
29 )