CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
l1tCaloParams_cfi.py
Go to the documentation of this file.
2 
3 l1tCaloParamsSource = cms.ESSource(
4  "EmptyESSource",
5  recordName = cms.string('L1TCaloParamsRcd'),
6  iovIsRunNotTime = cms.bool(True),
7  firstValid = cms.vuint32(1)
8 )
9 
10 l1tCaloParams = cms.ESProducer(
11  "l1t::CaloParamsESProducer",
12 
13  # towers
14  towerLsbH = cms.double(0.5),
15  towerLsbE = cms.double(0.5),
16  towerLsbSum = cms.double(0.5),
17  towerNBitsH = cms.int32(8),
18  towerNBitsE = cms.int32(8),
19  towerNBitsSum = cms.int32(9),
20  towerNBitsRatio = cms.int32(3),
21  towerEncoding = cms.bool(False),
22 
23  # regions
24  regionLsb = cms.double(0.5),
25  regionPUSType = cms.string("None"),
26  regionPUSParams = cms.vdouble(),
27 
28  # EG
29  egLsb = cms.double(0.5),
30  egSeedThreshold = cms.double(2.),
31  egNeighbourThreshold = cms.double(1.),
32  egMaxHcalEt = cms.double(0.),
33  egEtToRemoveHECut = cms.double(128.),
34  egMaxHOverE = cms.double(0.15),
35  egIsoPUSType = cms.string("None"),
36  egIsoLUTFile = cms.FileInPath("L1Trigger/L1TCalorimeter/data/egIsoLUT.txt"),
37  egIsoAreaNrTowersEta = cms.uint32(2),
38  egIsoAreaNrTowersPhi = cms.uint32(4),
39  egIsoVetoNrTowersPhi = cms.uint32(3),
40  egIsoPUEstTowerGranularity = cms.uint32(1),
41  egIsoMaxEtaAbsForTowerSum = cms.uint32(4),
42  egIsoMaxEtaAbsForIsoSum = cms.uint32(27),
43 
44  # Tau
45  tauLsb = cms.double(0.5),
46  tauSeedThreshold = cms.double(0.),
47  tauNeighbourThreshold = cms.double(0.),
48  tauIsoPUSType = cms.string("None"),
49  tauIsoLUTFile = cms.FileInPath("L1Trigger/L1TCalorimeter/data/tauIsoLUT.txt"),
50 
51  # jets
52  jetLsb = cms.double(0.5),
53  jetSeedThreshold = cms.double(0.),
54  jetNeighbourThreshold = cms.double(0.),
55  jetPUSType = cms.string("None"),
56  jetCalibrationType = cms.string("None"),
57  jetCalibrationParams = cms.vdouble(),
58 
59  # sums
60  etSumLsb = cms.double(0.5),
61  ettEtaMin = cms.int32(-999),
62  ettEtaMax = cms.int32(999),
63  ettEtThreshold = cms.double(0.),
64  httEtaMin = cms.int32(-999),
65  httEtaMax = cms.int32(999),
66  httEtThreshold = cms.double(0.),
67  metEtaMin = cms.int32(-999),
68  metEtaMax = cms.int32(999),
69  metEtThreshold = cms.double(0.),
70  mhtEtaMin = cms.int32(-999),
71  mhtEtaMax = cms.int32(999),
72  mhtEtThreshold = cms.double(0.)
73 
74 )