CMS 3D CMS Logo

Functions
L1TCaloLayer1FetchLUTs.cc File Reference
#include <vector>
#include "FWCore/Framework/interface/ESHandle.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "L1Trigger/L1TCalorimeter/interface/CaloParamsHelper.h"
#include "CondFormats/L1TObjects/interface/CaloParams.h"
#include "CondFormats/DataRecord/interface/L1TCaloParamsRcd.h"
#include "CalibFormats/CaloTPG/interface/CaloTPGTranscoder.h"
#include "CalibFormats/CaloTPG/interface/CaloTPGRecord.h"
#include "DataFormats/HcalDetId/interface/HcalTrigTowerDetId.h"
#include "DataFormats/HcalDigi/interface/HcalTriggerPrimitiveSample.h"
#include "DataFormats/HcalDigi/interface/HcalTriggerPrimitiveDigi.h"
#include "Geometry/HcalTowerAlgo/interface/HcalTrigTowerGeometry.h"
#include "Geometry/Records/interface/CaloGeometryRecord.h"
#include "L1TCaloLayer1FetchLUTs.hh"
#include "UCTLogging.hh"

Go to the source code of this file.

Functions

bool L1TCaloLayer1FetchLUTs (const L1TCaloLayer1FetchLUTsTokens &iTokens, const edm::EventSetup &iSetup, std::vector< std::array< std::array< std::array< uint32_t, nEtBins >, nCalSideBins >, nCalEtaBins > > &eLUT, std::vector< std::array< std::array< std::array< uint32_t, nEtBins >, nCalSideBins >, nCalEtaBins > > &hLUT, std::vector< std::array< std::array< uint32_t, nEtBins >, nHfEtaBins > > &hfLUT, std::vector< unsigned long long int > &hcalFBLUT, std::vector< unsigned int > &ePhiMap, std::vector< unsigned int > &hPhiMap, std::vector< unsigned int > &hfPhiMap, bool useLSB, bool useCalib, bool useECALLUT, bool useHCALLUT, bool useHFLUT, bool useHCALFBLUT, int fwVersion)
 

Function Documentation

◆ L1TCaloLayer1FetchLUTs()

bool L1TCaloLayer1FetchLUTs ( const L1TCaloLayer1FetchLUTsTokens &  iTokens,
const edm::EventSetup iSetup,
std::vector< std::array< std::array< std::array< uint32_t, nEtBins >, nCalSideBins >, nCalEtaBins > > &  eLUT,
std::vector< std::array< std::array< std::array< uint32_t, nEtBins >, nCalSideBins >, nCalEtaBins > > &  hLUT,
std::vector< std::array< std::array< uint32_t, nEtBins >, nHfEtaBins > > &  hfLUT,
std::vector< unsigned long long int > &  hcalFBLUT,
std::vector< unsigned int > &  ePhiMap,
std::vector< unsigned int > &  hPhiMap,
std::vector< unsigned int > &  hfPhiMap,
bool  useLSB,
bool  useCalib,
bool  useECALLUT,
bool  useHCALLUT,
bool  useHFLUT,
bool  useHCALFBLUT,
int  fwVersion 
)

Definition at line 29 of file L1TCaloLayer1FetchLUTs.cc.

References funct::abs(), caloParams_cfi::caloParams, HLT_2024v14_cff::distance, muonRecoAnalyzer_cfi::etaBin, photonAnalyzer_cfi::etBin, spr::find(), amcDumpToRaw_cfi::fwVersion, edm::EventSetup::getData(), edm::EventSetup::getHandle(), l1tTowerCalibrationProducer_cfi::hfSF, EcalPhiSymFlatTableProducers_cfi::id, l1tPhase2CaloJetEmulator_cfi::iEta, edm::ESHandleBase::isValid(), BeamMonitor_cff::phiBin, edm::ESHandle< T >::product(), ecalGpuTask_cfi::sample, HcalTrigTowerGeometry::use1x1(), simCaloStage2Layer1Digis_cfi::useCalib, simCaloStage2Layer1Digis_cfi::useECALLUT, simCaloStage2Layer1Digis_cfi::useHCALFBLUT, simCaloStage2Layer1Digis_cfi::useHCALLUT, simCaloStage2Layer1Digis_cfi::useHFLUT, simCaloStage2Layer1Digis_cfi::useLSB, and relativeConstraints::value.

Referenced by L1TCaloLayer1::beginRun().

45  {
46  int hfValid = 1;
47  const HcalTrigTowerGeometry &pG = iSetup.getData(iTokens.geom_);
48  if (!pG.use1x1()) {
49  edm::LogError("L1TCaloLayer1FetchLUTs")
50  << "Using Stage2-Layer1 but HCAL Geometry has use1x1 = 0! HF will be suppressed. Check Global Tag, etc.";
51  hfValid = 0;
52  }
53 
54  // CaloParams contains all persisted parameters for Layer 1
55  edm::ESHandle<l1t::CaloParams> paramsHandle = iSetup.getHandle(iTokens.params_);
56  if (not paramsHandle.isValid()) {
57  edm::LogError("L1TCaloLayer1FetchLUTs") << "Missing CaloParams object! Check Global Tag, etc.";
58  return false;
59  }
60  l1t::CaloParamsHelper caloParams(*paramsHandle.product());
61 
62  // Calo Trigger Layer1 output LSB Real ET value
63  double caloLSB = caloParams.towerLsbSum();
64  if (caloLSB != 0.5) {
65  // Lots of things expect this, better give fair warning if not
66  edm::LogError("L1TCaloLayer1FetchLUTs") << "caloLSB (caloParams.towerLsbSum()) != 0.5, actually = " << caloLSB;
67  }
68 
69  // ECal/HCal scale factors will be a x*y*28 array:
70  // ieta = 28 eta scale factors (1 .. 28)
71  // etBin = size of Real ET Bins vector
72  // phiBin = max(Real Phi Bins vector)
73  // So, index = phiBin*etBin*28+etBin*28+ieta
74  auto ecalScaleETBins = caloParams.layer1ECalScaleETBins();
75  auto ecalScalePhiBins = caloParams.layer1ECalScalePhiBins();
76  if (ecalScalePhiBins.empty()) {
77  // Backwards-compatibility (no phi binning)
78  ecalScalePhiBins.resize(36, 0);
79  } else if (ecalScalePhiBins.size() % 36 != 0) {
80  edm::LogError("L1TCaloLayer1FetchLUTs") << "caloParams.layer1ECalScaleETBins().size() is not multiple of 36 !!";
81  return false;
82  }
83  size_t numEcalPhiBins = (*std::max_element(ecalScalePhiBins.begin(), ecalScalePhiBins.end())) + 1;
84  auto ecalSF = caloParams.layer1ECalScaleFactors();
85  if (ecalSF.size() != ecalScaleETBins.size() * numEcalPhiBins * 28) {
86  edm::LogError("L1TCaloLayer1FetchLUTs") << "caloParams.layer1ECalScaleFactors().size() != "
87  "caloParams.layer1ECalScaleETBins().size()*numEcalPhiBins*28 !!";
88  return false;
89  }
90  auto hcalScaleETBins = caloParams.layer1HCalScaleETBins();
91  auto hcalScalePhiBins = caloParams.layer1HCalScalePhiBins();
92  if (hcalScalePhiBins.empty()) {
93  hcalScalePhiBins.resize(36, 0);
94  } else if (hcalScalePhiBins.size() % 36 != 0) {
95  edm::LogError("L1TCaloLayer1FetchLUTs") << "caloParams.layer1HCalScaleETBins().size() is not multiple of 36 !!";
96  return false;
97  }
98  size_t numHcalPhiBins = (*std::max_element(hcalScalePhiBins.begin(), hcalScalePhiBins.end())) + 1;
99  auto hcalSF = caloParams.layer1HCalScaleFactors();
100  if (hcalSF.size() != hcalScaleETBins.size() * numHcalPhiBins * 28) {
101  edm::LogError("L1TCaloLayer1FetchLUTs") << "caloParams.layer1HCalScaleFactors().size() != "
102  "caloParams.layer1HCalScaleETBins().size()*numHcalPhiBins*28 !!";
103  return false;
104  }
105 
106  // HF 1x1 scale factors will be a x*y*12 array:
107  // ieta = 12 eta scale factors (30 .. 41)
108  // etBin = size of Real ET Bins vector
109  // phiBin = max(Real Phi Bins vector)
110  // So, index = phiBin*etBin*12+etBin*12+ieta
111  auto hfScaleETBins = caloParams.layer1HFScaleETBins();
112  auto hfScalePhiBins = caloParams.layer1HFScalePhiBins();
113  if (hfScalePhiBins.empty()) {
114  hfScalePhiBins.resize(36, 0);
115  } else if (hfScalePhiBins.size() % 36 != 0) {
116  edm::LogError("L1TCaloLayer1FetchLUTs") << "caloParams.layer1HFScaleETBins().size() is not multiple of 36 !!";
117  return false;
118  }
119  size_t numHFPhiBins = (*std::max_element(hfScalePhiBins.begin(), hfScalePhiBins.end())) + 1;
120  auto hfSF = caloParams.layer1HFScaleFactors();
121  if (hfSF.size() != hfScaleETBins.size() * numHFPhiBins * 12) {
122  edm::LogError("L1TCaloLayer1FetchLUTs")
123  << "caloParams.layer1HFScaleFactors().size() != caloParams.layer1HFScaleETBins().size()*numHFPhiBins*12 !!";
124  return false;
125  }
126 
127  // Sanity check scale factors exist
128  if (useCalib && (ecalSF.empty() || hcalSF.empty() || hfSF.empty())) {
129  edm::LogError("L1TCaloLayer1FetchLUTs") << "Layer 1 calibrations requested (useCalib = True) but there are missing "
130  "scale factors in CaloParams! Please check conditions setup.";
131  return false;
132  }
133 
134  // HCAL FB LUT will be a 1*28 array:
135  // ieta = 28 eta scale factors (1 .. 28)
136  // So, index = ieta
137  auto fbLUTUpper = caloParams.layer1HCalFBLUTUpper();
138  auto fbLUTLower = caloParams.layer1HCalFBLUTLower();
139  // Only check for HCAL FB LUT if useHCALFBLUT = true
140  if (useHCALFBLUT) {
141  if (fbLUTUpper.size() != nCalEtaBins) {
142  edm::LogError("L1TCaloLayer1FetchLUTs")
143  << "caloParams.layer1HCalFBLUTUpper().size() " << fbLUTUpper.size() << " != " << nCalEtaBins << " !!";
144  return false;
145  }
146  if (fbLUTLower.size() != nCalEtaBins) {
147  edm::LogError("L1TCaloLayer1FetchLUTs")
148  << "caloParams.layer1HCalFBLUTLower().size() " << fbLUTLower.size() << " != " << nCalEtaBins << " !!";
149  return false;
150  }
151  }
152 
153  // get energy scale to convert input from ECAL - this should be linear with LSB = 0.5 GeV
154  const double ecalLSB = 0.5;
155 
156  // get energy scale to convert input from HCAL
157  edm::ESHandle<CaloTPGTranscoder> decoder = iSetup.getHandle(iTokens.decoder_);
158  if (not decoder.isValid()) {
159  edm::LogError("L1TCaloLayer1FetchLUTs") << "Missing CaloTPGTranscoder object! Check Global Tag, etc.";
160  return false;
161  }
162 
163  // TP compression scale is always phi symmetric
164  // We default to 3 since HF has no ieta=41 iphi=1,2
165  auto decodeHcalEt = [&decoder](int iEta, uint32_t compressedEt, uint32_t iPhi = 3) -> double {
166  HcalTriggerPrimitiveSample sample(compressedEt);
167  HcalTrigTowerDetId id(iEta, iPhi);
168  if (std::abs(iEta) >= 30) {
169  id.setVersion(1);
170  }
171  return decoder->hcaletValue(id, sample);
172  };
173 
174  // Make ECal LUT
175  for (uint32_t phiBin = 0; phiBin < numEcalPhiBins; phiBin++) {
176  std::array<std::array<std::array<uint32_t, nEtBins>, nCalSideBins>, nCalEtaBins> phiLUT;
177 
178  for (uint32_t etaBin = 0; etaBin < nCalEtaBins; etaBin++) {
179  for (uint32_t fb = 0; fb < nCalSideBins; fb++) {
180  for (uint32_t ecalInput = 0; ecalInput <= 0xFF; ecalInput++) {
181  uint32_t value = ecalInput;
182  if (useECALLUT) {
183  double linearizedECalInput = ecalInput * ecalLSB; // in GeV
184 
185  uint32_t etBin = 0;
186  for (; etBin < ecalScaleETBins.size(); etBin++) {
187  if (linearizedECalInput < ecalScaleETBins[etBin])
188  break;
189  }
190  if (etBin >= ecalScaleETBins.size())
191  etBin = ecalScaleETBins.size() - 1;
192 
193  double calibratedECalInput = linearizedECalInput;
194  if (useCalib)
195  calibratedECalInput *= ecalSF.at(phiBin * ecalScaleETBins.size() * 28 + etBin * 28 + etaBin);
196  if (useLSB)
197  calibratedECalInput /= caloLSB;
198 
199  value = calibratedECalInput;
200  if (fwVersion > 2) {
201  // Saturate if either decompressed value is over 127.5 GeV or input saturated
202  // (meaningless for ecal, since ecalLSB == caloLSB)
203  if (value > 0xFF || ecalInput == 0xFF) {
204  value = 0xFF;
205  }
206  } else {
207  if (value > 0xFF) {
208  value = 0xFF;
209  }
210  }
211  }
212  if (value == 0) {
213  value = (1 << 11);
214  } else {
215  uint32_t et_log2 = ((uint32_t)log2(value)) & 0x7;
216  value |= (et_log2 << 12);
217  }
218  value |= (fb << 10);
219  phiLUT[etaBin][fb][ecalInput] = value;
220  }
221  }
222  }
223 
224  eLUT.push_back(phiLUT);
225  }
226 
227  // Make HCal LUT
228  for (uint32_t phiBin = 0; phiBin < numHcalPhiBins; phiBin++) {
229  std::array<std::array<std::array<uint32_t, nEtBins>, nCalSideBins>, nCalEtaBins> phiLUT;
230  for (uint32_t etaBin = 0; etaBin < nCalEtaBins; etaBin++) {
231  int caloEta = etaBin + 1;
232  int iPhi = 3;
233  auto pos = std::find(hcalScalePhiBins.begin(), hcalScalePhiBins.end(), phiBin);
234  if (pos != hcalScalePhiBins.end()) {
235  // grab an iPhi bin
236  auto index = std::distance(hcalScalePhiBins.begin(), pos);
237  if (index < 18) {
238  caloEta *= -1;
239  iPhi = index * 4 + 1;
240  } else {
241  iPhi = (index - 18) * 4 + 1;
242  }
243  }
244  for (uint32_t fb = 0; fb < nCalSideBins; fb++) {
245  for (uint32_t hcalInput = 0; hcalInput <= 0xFF; hcalInput++) {
246  uint32_t value = hcalInput;
247  if (useHCALLUT) {
248  // hcaletValue defined in L137 of CalibCalorimetry/CaloTPG/src/CaloTPGTranscoderULUT.cc
249  double linearizedHcalInput = decodeHcalEt(caloEta, hcalInput, iPhi); // in GeV
250 
251  uint32_t etBin = 0;
252  for (; etBin < hcalScaleETBins.size(); etBin++) {
253  if (linearizedHcalInput < hcalScaleETBins[etBin])
254  break;
255  }
256  if (etBin >= hcalScaleETBins.size())
257  etBin = hcalScaleETBins.size() - 1;
258 
259  double calibratedHcalInput = linearizedHcalInput;
260  if (useCalib)
261  calibratedHcalInput *= hcalSF.at(phiBin * hcalScaleETBins.size() * 28 + etBin * 28 + etaBin);
262  if (useLSB)
263  calibratedHcalInput /= caloLSB;
264 
265  value = calibratedHcalInput;
266  if (fwVersion > 2) {
267  // Saturate if either decompressed value is over 127.5 GeV or input saturated
268  if (value > 0xFF || hcalInput == 0xFF) {
269  value = 0xFF;
270  }
271  } else {
272  if (value > 0xFF) {
273  value = 0xFF;
274  }
275  }
276  }
277  if (value == 0) {
278  value = (1 << 11);
279  } else {
280  uint32_t et_log2 = ((uint32_t)log2(value)) & 0x7;
281  value |= (et_log2 << 12);
282  }
283  value |= (fb << 10);
284  phiLUT[etaBin][fb][hcalInput] = value;
285  }
286  }
287  }
288 
289  hLUT.push_back(phiLUT);
290  }
291 
292  // Make HF LUT
293  for (uint32_t phiBin = 0; phiBin < numHFPhiBins; phiBin++) {
294  std::array<std::array<uint32_t, nEtBins>, nHfEtaBins> phiLUT;
295 
296  for (uint32_t etaBin = 0; etaBin < nHfEtaBins; etaBin++) {
297  int caloEta = etaBin + 30;
298  int iPhi = 3;
299  auto pos = std::find(hfScalePhiBins.begin(), hfScalePhiBins.end(), phiBin);
300  if (pos != hfScalePhiBins.end()) {
301  auto index = std::distance(hfScalePhiBins.begin(), pos);
302  if (index < 18) {
303  caloEta *= -1;
304  iPhi = index * 4 - 1;
305  } else {
306  iPhi = (index - 18) * 4 - 1;
307  }
308  if (iPhi < 0)
309  iPhi = 71;
310  }
311  for (uint32_t etCode = 0; etCode < nEtBins; etCode++) {
312  uint32_t value = etCode;
313  if (useHFLUT) {
314  double linearizedHFInput = 0;
315  if (hfValid) {
316  linearizedHFInput = decodeHcalEt(caloEta, value, iPhi); // in GeV
317  }
318 
319  uint32_t etBin = 0;
320  for (; etBin < hfScaleETBins.size(); etBin++) {
321  if (linearizedHFInput < hfScaleETBins[etBin])
322  break;
323  }
324  if (etBin >= hfScaleETBins.size())
325  etBin = hfScaleETBins.size() - 1;
326 
327  double calibratedHFInput = linearizedHFInput;
328  if (useCalib)
329  calibratedHFInput *= hfSF.at(phiBin * hfScalePhiBins.size() * 12 + etBin * 12 + etaBin);
330  if (useLSB)
331  calibratedHFInput /= caloLSB;
332 
333  if (fwVersion > 2) {
334  uint32_t absCaloEta = std::abs(caloEta);
335  if (absCaloEta > 29 && absCaloEta < 40) {
336  // Divide by two (since two duplicate towers are sent)
337  calibratedHFInput *= 0.5;
338  } else if (absCaloEta == 40 || absCaloEta == 41) {
339  // Divide by four
340  calibratedHFInput *= 0.25;
341  }
342  value = calibratedHFInput;
343  // Saturate if either decompressed value is over 127.5 GeV or input saturated
344  if (value >= 0xFF || etCode == 0xFF) {
345  value = 0x1FD;
346  }
347  } else {
348  value = calibratedHFInput;
349  if (value > 0xFF) {
350  value = 0xFF;
351  }
352  }
353  }
354  phiLUT[etaBin][etCode] = value;
355  }
356  }
357  hfLUT.push_back(phiLUT);
358  }
359 
360  // Make HCal FB LUT
361  for (uint32_t etaBin = 0; etaBin < nCalEtaBins; etaBin++) {
362  uint64_t value = 0xFFFFFFFFFFFFFFFF;
363  if (useHCALFBLUT) {
364  value = (((uint64_t)fbLUTUpper.at(etaBin)) << 32) | fbLUTLower.at(etaBin);
365  }
366  hcalFBLUT.push_back(value);
367  }
368 
369  // plus/minus, 18 CTP7, 4 iPhi each
370  for (uint32_t isPos = 0; isPos < 2; isPos++) {
371  for (uint32_t iPhi = 1; iPhi <= 72; iPhi++) {
372  uint32_t card = floor((iPhi + 1) / 4);
373  if (card > 17)
374  card -= 18;
375  ePhiMap[isPos * 72 + iPhi - 1] = ecalScalePhiBins[isPos * 18 + card];
376  hPhiMap[isPos * 72 + iPhi - 1] = hcalScalePhiBins[isPos * 18 + card];
377  hfPhiMap[isPos * 72 + iPhi - 1] = hfScalePhiBins[isPos * 18 + card];
378  }
379  }
380 
381  return true;
382 }
T const & getData(const ESGetToken< T, R > &iToken) const noexcept(false)
Definition: EventSetup.h:119
Log< level::Error, false > LogError
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
T const * product() const
Definition: ESHandle.h:86
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
Definition: value.py:1
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:130
bool isValid() const
Definition: ESHandle.h:44
unsigned long long uint64_t
Definition: Time.h:13