CMS 3D CMS Logo

HcalTriggerPrimitiveAlgo.cc
Go to the documentation of this file.
2 
6 
10 
13 
16 
18 
19 #include <iostream>
20 
21 using namespace std;
22 
24  const std::vector<double>& w,
25  int latency,
26  uint32_t FG_threshold,
27  const std::vector<uint32_t>& FG_HF_thresholds,
28  uint32_t ZS_threshold,
29  int numberOfSamples,
34  uint32_t minSignalThreshold,
35  uint32_t PMT_NoiseThreshold)
36  : incoder_(nullptr),
37  outcoder_(nullptr),
38  theThreshold(0),
39  peakfind_(pf),
40  weights_(w),
41  latency_(latency),
42  FG_threshold_(FG_threshold),
43  FG_HF_thresholds_(FG_HF_thresholds),
44  ZS_threshold_(ZS_threshold),
45  numberOfSamples_(numberOfSamples),
46  numberOfPresamples_(numberOfPresamples),
47  numberOfSamplesHF_(numberOfSamplesHF),
48  numberOfPresamplesHF_(numberOfPresamplesHF),
49  useTDCInMinBiasBits_(useTDCInMinBiasBits),
50  minSignalThreshold_(minSignalThreshold),
51  PMT_NoiseThreshold_(PMT_NoiseThreshold),
52  NCTScaleShift(0),
53  RCTScaleShift(0),
54  peak_finder_algorithm_(2),
55  override_parameters_() {
56  //No peak finding setting (for Fastsim)
57  if (!peakfind_) {
58  numberOfSamples_ = 1;
62  }
63  // Switch to integer for comparisons - remove compiler warning
65 }
66 
68 
70  upgrade_hb_ = hb;
71  upgrade_he_ = he;
72  upgrade_hf_ = hf;
73 }
74 
77 
78  if (override_parameters_.exists("ADCThresholdHF")) {
79  override_adc_hf_ = true;
80  override_adc_hf_value_ = override_parameters_.getParameter<uint32_t>("ADCThresholdHF");
81  }
82  if (override_parameters_.exists("TDCMaskHF")) {
83  override_tdc_hf_ = true;
84  override_tdc_hf_value_ = override_parameters_.getParameter<unsigned long long>("TDCMaskHF");
85  }
86 }
87 
89  // TODO: Need to add support for seperate 28, 29 in HE
90  //Hack for 300_pre10, should be removed.
91  if (frame.id().depth() == 5)
92  return;
93 
94  std::vector<HcalTrigTowerDetId> ids = theTrigTowerGeometry->towerIds(frame.id());
95  assert(ids.size() == 1 || ids.size() == 2);
96  IntegerCaloSamples samples1(ids[0], int(frame.size()));
97 
98  samples1.setPresamples(frame.presamples());
99  incoder_->adc2Linear(frame, samples1);
100 
101  std::vector<bool> msb;
102  incoder_->lookupMSB(frame, msb);
103 
104  if (ids.size() == 2) {
105  // make a second trigprim for the other one, and split the energy
106  IntegerCaloSamples samples2(ids[1], samples1.size());
107  for (int i = 0; i < samples1.size(); ++i) {
108  samples1[i] = uint32_t(samples1[i] * 0.5);
109  samples2[i] = samples1[i];
110  }
111  samples2.setPresamples(frame.presamples());
112  addSignal(samples2);
113  addFG(ids[1], msb);
114  }
115  addSignal(samples1);
116  addFG(ids[0], msb);
117 }
118 
120  if (frame.id().depth() == 1 || frame.id().depth() == 2) {
121  std::vector<HcalTrigTowerDetId> ids = theTrigTowerGeometry->towerIds(frame.id());
122  std::vector<HcalTrigTowerDetId>::const_iterator it;
123  for (it = ids.begin(); it != ids.end(); ++it) {
124  HcalTrigTowerDetId trig_tower_id = *it;
125  IntegerCaloSamples samples(trig_tower_id, frame.size());
126  samples.setPresamples(frame.presamples());
127  incoder_->adc2Linear(frame, samples);
128 
129  // Don't add to final collection yet
130  // HF PMT veto sum is calculated in analyzerHF()
131  IntegerCaloSamples zero_samples(trig_tower_id, frame.size());
132  zero_samples.setPresamples(frame.presamples());
133  addSignal(zero_samples);
134 
135  // Pre-LS1 Configuration
136  if (trig_tower_id.version() == 0) {
137  // Mask off depths: fgid is the same for both depths
138  uint32_t fgid = (frame.id().maskDepth());
139 
140  if (theTowerMapFGSum.find(trig_tower_id) == theTowerMapFGSum.end()) {
141  SumFGContainer sumFG;
142  theTowerMapFGSum.insert(std::pair<HcalTrigTowerDetId, SumFGContainer>(trig_tower_id, sumFG));
143  }
144 
145  SumFGContainer& sumFG = theTowerMapFGSum[trig_tower_id];
146  SumFGContainer::iterator sumFGItr;
147  for (sumFGItr = sumFG.begin(); sumFGItr != sumFG.end(); ++sumFGItr) {
148  if (sumFGItr->id() == fgid) {
149  break;
150  }
151  }
152  // If find
153  if (sumFGItr != sumFG.end()) {
154  for (int i = 0; i < samples.size(); ++i) {
155  (*sumFGItr)[i] += samples[i];
156  }
157  } else {
158  //Copy samples (change to fgid)
159  IntegerCaloSamples sumFGSamples(DetId(fgid), samples.size());
160  sumFGSamples.setPresamples(samples.presamples());
161  for (int i = 0; i < samples.size(); ++i) {
162  sumFGSamples[i] = samples[i];
163  }
164  sumFG.push_back(sumFGSamples);
165  }
166 
167  // set veto to true if Long or Short less than threshold
168  if (HF_Veto.find(fgid) == HF_Veto.end()) {
169  vector<bool> vetoBits(samples.size(), false);
170  HF_Veto[fgid] = vetoBits;
171  }
172  for (int i = 0; i < samples.size(); ++i) {
173  if (samples[i] < minSignalThreshold_) {
174  HF_Veto[fgid][i] = true;
175  }
176  }
177  }
178  // HF 1x1
179  else if (trig_tower_id.version() == 1) {
180  uint32_t fgid = (frame.id().maskDepth());
181  HFDetails& details = theHFDetailMap[trig_tower_id][fgid];
182  // Check the frame type to determine long vs short
183  if (frame.id().depth() == 1) { // Long
184  details.long_fiber = samples;
185  details.LongDigi = frame;
186  } else if (frame.id().depth() == 2) { // Short
187  details.short_fiber = samples;
188  details.ShortDigi = frame;
189  } else {
190  // Neither long nor short... So we have no idea what to do
191  edm::LogWarning("HcalTPAlgo") << "Unable to figure out what to do with data frame for " << frame.id();
192  return;
193  }
194  }
195  // Uh oh, we are in a bad/unknown state! Things will start crashing.
196  else {
197  return;
198  }
199  }
200  }
201 }
202 
204  HcalDetId detId = frame.detid();
205  // prevent QIE10 calibration channels from entering TP emulation
206  if (detId.subdet() != HcalForward)
207  return;
208 
209  auto ids = theTrigTowerGeometry->towerIds(frame.id());
210  for (const auto& id : ids) {
211  if (id.version() == 0) {
212  edm::LogError("HcalTPAlgo") << "Encountered QIE10 data frame mapped to TP version 0:" << id;
213  continue;
214  }
215 
216  int nsamples = frame.samples();
217 
218  IntegerCaloSamples samples(id, nsamples);
219  samples.setPresamples(frame.presamples());
220  incoder_->adc2Linear(frame, samples);
221 
222  // Don't add to final collection yet
223  // HF PMT veto sum is calculated in analyzerHF()
224  IntegerCaloSamples zero_samples(id, nsamples);
225  zero_samples.setPresamples(frame.presamples());
226  addSignal(zero_samples);
227 
228  auto fid = HcalDetId(frame.id());
229  auto& details = theHFUpgradeDetailMap[id][fid.maskDepth()];
230  auto& detail = details[fid.depth() - 1];
231  detail.samples = samples;
232  detail.digi = frame;
233  detail.validity.resize(nsamples);
234  detail.passTDC.resize(nsamples);
235  incoder_->lookupMSB(frame, detail.fgbits);
236  for (int idx = 0; idx < nsamples; ++idx) {
237  detail.validity[idx] = validChannel(frame, idx);
238  detail.passTDC[idx] = passTDC(frame, idx);
239  }
240  }
241 }
242 
244  HcalDetId detId(frame.id());
245  // prevent QIE11 calibration channels from entering TP emulation
246  if (detId.subdet() != HcalEndcap && detId.subdet() != HcalBarrel)
247  return;
248 
249  std::vector<HcalTrigTowerDetId> ids = theTrigTowerGeometry->towerIds(detId);
250  assert(ids.size() == 1 || ids.size() == 2);
251  IntegerCaloSamples samples1(ids[0], int(frame.samples()));
252 
253  samples1.setPresamples(frame.presamples());
254  incoder_->adc2Linear(frame, samples1);
255 
256  std::vector<std::bitset<2>> msb(frame.samples(), 0);
257  incoder_->lookupMSB(frame, msb);
258 
259  if (ids.size() == 2) {
260  // make a second trigprim for the other one, and share the energy
261  IntegerCaloSamples samples2(ids[1], samples1.size());
262  for (int i = 0; i < samples1.size(); ++i) {
263  samples1[i] = uint32_t(samples1[i]);
264  samples2[i] = samples1[i];
265  }
266  samples2.setPresamples(frame.presamples());
267  addSignal(samples2);
268  addUpgradeFG(ids[1], detId.depth(), msb);
269  }
270  addSignal(samples1);
271  addUpgradeFG(ids[0], detId.depth(), msb);
272 }
273 
275  HcalTrigTowerDetId id(samples.id());
276  SumMap::iterator itr = theSumMap.find(id);
277  if (itr == theSumMap.end()) {
278  theSumMap.insert(std::make_pair(id, samples));
279  } else {
280  // wish CaloSamples had a +=
281  for (int i = 0; i < samples.size(); ++i) {
282  (itr->second)[i] += samples[i];
283  }
284  }
285 }
286 
288  int shrink = weights_.size() - 1;
289  std::vector<bool>& msb = fgMap_[samples.id()];
290  IntegerCaloSamples sum(samples.id(), samples.size());
291 
292  //slide algo window
293  for (int ibin = 0; ibin < int(samples.size()) - shrink; ++ibin) {
294  int algosumvalue = 0;
295  for (unsigned int i = 0; i < weights_.size(); i++) {
296  //add up value * scale factor
297  algosumvalue += int(samples[ibin + i] * weights_[i]);
298  }
299  if (algosumvalue < 0)
300  sum[ibin] = 0; // low-side
301  //high-side
302  //else if (algosumvalue>QIE8_LINEARIZATION_ET) sum[ibin]=QIE8_LINEARIZATION_ET;
303  else
304  sum[ibin] = algosumvalue; //assign value to sum[]
305  }
306 
307  // Align digis and TP
308  int dgPresamples = samples.presamples();
309  int tpPresamples = numberOfPresamples_;
310  int shift = dgPresamples - tpPresamples;
311  int dgSamples = samples.size();
312  int tpSamples = numberOfSamples_;
313  if (peakfind_) {
314  if ((shift < shrink) || (shift + tpSamples + shrink > dgSamples - (peak_finder_algorithm_ - 1))) {
315  edm::LogInfo("HcalTriggerPrimitiveAlgo::analyze")
316  << "TP presample or size from the configuration file is out of the accessible range. Using digi values from "
317  "data instead...";
318  shift = shrink;
319  tpPresamples = dgPresamples - shrink;
320  tpSamples = dgSamples - (peak_finder_algorithm_ - 1) - shrink - shift;
321  }
322  }
323 
324  std::vector<int> finegrain(tpSamples, false);
325 
326  IntegerCaloSamples output(samples.id(), tpSamples);
327  output.setPresamples(tpPresamples);
328 
329  for (int ibin = 0; ibin < tpSamples; ++ibin) {
330  // ibin - index for output TP
331  // idx - index for samples + shift
332  int idx = ibin + shift;
333 
334  //Peak finding
335  if (peakfind_) {
336  bool isPeak = false;
337  switch (peak_finder_algorithm_) {
338  case 1:
339  isPeak = (samples[idx] > samples[idx - 1] && samples[idx] >= samples[idx + 1] && samples[idx] > theThreshold);
340  break;
341  case 2:
342  isPeak = (sum[idx] > sum[idx - 1] && sum[idx] >= sum[idx + 1] && sum[idx] > theThreshold);
343  break;
344  default:
345  break;
346  }
347 
348  if (isPeak) {
349  output[ibin] = std::min<unsigned int>(sum[idx], QIE8_LINEARIZATION_ET);
350  finegrain[ibin] = msb[idx];
351  }
352  // Not a peak
353  else
354  output[ibin] = 0;
355  } else { // No peak finding, just output running sum
356  output[ibin] = std::min<unsigned int>(sum[idx], QIE8_LINEARIZATION_ET);
357  finegrain[ibin] = msb[idx];
358  }
359 
360  // Only Pegged for 1-TS algo.
361  if (peak_finder_algorithm_ == 1) {
362  if (samples[idx] >= QIE8_LINEARIZATION_ET)
364  }
365  }
366  outcoder_->compress(output, finegrain, result);
367 }
368 
371  const HcalFinegrainBit& fg_algo) {
372  int shrink = weights_.size() - 1;
373  auto& msb = fgUpgradeMap_[samples.id()];
374  IntegerCaloSamples sum(samples.id(), samples.size());
375 
376  HcalDetId detId(samples.id());
377  std::vector<HcalTrigTowerDetId> ids = theTrigTowerGeometry->towerIds(detId);
378  //slide algo window
379  for (int ibin = 0; ibin < int(samples.size()) - shrink; ++ibin) {
380  int algosumvalue = 0;
381  for (unsigned int i = 0; i < weights_.size(); i++) {
382  //add up value * scale factor
383  // In addition, divide by two in the 10 degree phi segmentation region
384  // to mimic 5 degree segmentation for the trigger
385  unsigned int sample = samples[ibin + i];
386  if (sample > QIE11_MAX_LINEARIZATION_ET)
388  if (ids.size() == 2)
389  algosumvalue += int(sample * 0.5 * weights_[i]);
390  else
391  algosumvalue += int(sample * weights_[i]);
392  }
393  if (algosumvalue < 0)
394  sum[ibin] = 0; // low-side
395  //high-side
396  //else if (algosumvalue>QIE11_LINEARIZATION_ET) sum[ibin]=QIE11_LINEARIZATION_ET;
397  else
398  sum[ibin] = algosumvalue; //assign value to sum[]
399  }
400 
401  // Align digis and TP
402  int dgPresamples = samples.presamples();
403  int tpPresamples = numberOfPresamples_;
404  int shift = dgPresamples - tpPresamples;
405  int dgSamples = samples.size();
406  int tpSamples = numberOfSamples_;
407 
408  if ((shift < shrink) || (shift + tpSamples + shrink > dgSamples - (peak_finder_algorithm_ - 1))) {
409  edm::LogInfo("HcalTriggerPrimitiveAlgo::analyze") << "TP presample or size from the configuration file is out of "
410  "the accessible range. Using digi values from data instead...";
411  shift = shrink;
412  tpPresamples = dgPresamples - shrink;
413  tpSamples = dgSamples - (peak_finder_algorithm_ - 1) - shrink - shift;
414  }
415 
416  std::vector<int> finegrain(tpSamples, false);
417 
418  IntegerCaloSamples output(samples.id(), tpSamples);
419  output.setPresamples(tpPresamples);
420 
421  for (int ibin = 0; ibin < tpSamples; ++ibin) {
422  // ibin - index for output TP
423  // idx - index for samples + shift
424  int idx = ibin + shift;
425  bool isPeak = (sum[idx] > sum[idx - 1] && sum[idx] >= sum[idx + 1] && sum[idx] > theThreshold);
426 
427  if (isPeak) {
428  output[ibin] = std::min<unsigned int>(sum[idx], QIE11_MAX_LINEARIZATION_ET);
429  } else {
430  // Not a peak
431  output[ibin] = 0;
432  }
433  // peak-finding is not applied for FG bits
434  finegrain[ibin] = fg_algo.compute(msb[idx]).to_ulong();
435  }
436  outcoder_->compress(output, finegrain, result);
437 }
438 
441  const int hf_lumi_shift) {
442  HcalTrigTowerDetId detId(samples.id());
443 
444  // Align digis and TP
445  int dgPresamples = samples.presamples();
446  int tpPresamples = numberOfPresamplesHF_;
447  int shift = dgPresamples - tpPresamples;
448  int dgSamples = samples.size();
449  int tpSamples = numberOfSamplesHF_;
450  if (shift < 0 || shift + tpSamples > dgSamples) {
451  edm::LogInfo("HcalTriggerPrimitiveAlgo::analyzeHF")
452  << "TP presample or size from the configuration file is out of the accessible range. Using digi values from "
453  "data instead...";
454  tpPresamples = dgPresamples;
455  shift = 0;
456  tpSamples = dgSamples;
457  }
458 
459  std::vector<int> finegrain(tpSamples, false);
460 
461  TowerMapFGSum::const_iterator tower2fg = theTowerMapFGSum.find(detId);
462  assert(tower2fg != theTowerMapFGSum.end());
463 
464  const SumFGContainer& sumFG = tower2fg->second;
465  // Loop over all L+S pairs that mapped from samples.id()
466  // Note: 1 samples.id() = 6 x (L+S) without noZS
467  for (SumFGContainer::const_iterator sumFGItr = sumFG.begin(); sumFGItr != sumFG.end(); ++sumFGItr) {
468  const std::vector<bool>& veto = HF_Veto[sumFGItr->id().rawId()];
469  for (int ibin = 0; ibin < tpSamples; ++ibin) {
470  int idx = ibin + shift;
471  // if not vetod, add L+S to total sum and calculate FG
472  bool vetoed = idx < int(veto.size()) && veto[idx];
473  if (!(vetoed && (*sumFGItr)[idx] > PMT_NoiseThreshold_)) {
474  samples[idx] += (*sumFGItr)[idx];
475  finegrain[ibin] = (finegrain[ibin] || (*sumFGItr)[idx] >= FG_threshold_);
476  }
477  }
478  }
479 
480  IntegerCaloSamples output(samples.id(), tpSamples);
481  output.setPresamples(tpPresamples);
482 
483  for (int ibin = 0; ibin < tpSamples; ++ibin) {
484  int idx = ibin + shift;
485  output[ibin] = samples[idx] >> hf_lumi_shift;
486  static const int MAX_OUTPUT = QIE8_LINEARIZATION_ET; // QIE8_LINEARIZATION_ET = 1023
487  if (output[ibin] > MAX_OUTPUT)
488  output[ibin] = MAX_OUTPUT;
489  }
490  outcoder_->compress(output, finegrain, result);
491 }
492 
495  const int hf_lumi_shift,
496  const HcalFeatureBit* embit) {
497  // Align digis and TP
498  const int SHIFT = samples.presamples() - numberOfPresamplesHF_;
499  assert(SHIFT >= 0);
500  assert((SHIFT + numberOfSamplesHF_) <= samples.size());
501 
502  // Try to find the HFDetails from the map corresponding to our samples
503  const HcalTrigTowerDetId detId(samples.id());
504  HFDetailMap::const_iterator it = theHFDetailMap.find(detId);
505  // Missing values will give an empty digi
506  if (it == theHFDetailMap.end()) {
507  return;
508  }
509 
510  std::vector<std::bitset<2>> finegrain(numberOfSamplesHF_, false);
511 
512  // Set up out output of IntergerCaloSamples
514  output.setPresamples(numberOfPresamplesHF_);
515 
516  for (const auto& item : it->second) {
517  auto& details = item.second;
518  for (int ibin = 0; ibin < numberOfSamplesHF_; ++ibin) {
519  const int IDX = ibin + SHIFT;
520  int long_fiber_val = 0;
521  if (IDX < details.long_fiber.size()) {
522  long_fiber_val = details.long_fiber[IDX];
523  }
524  int short_fiber_val = 0;
525  if (IDX < details.short_fiber.size()) {
526  short_fiber_val = details.short_fiber[IDX];
527  }
528  output[ibin] += (long_fiber_val + short_fiber_val);
529 
530  uint32_t ADCLong = details.LongDigi[ibin].adc();
531  uint32_t ADCShort = details.ShortDigi[ibin].adc();
532 
533  if (details.LongDigi.id().ietaAbs() >= FIRST_FINEGRAIN_TOWER) {
534  finegrain[ibin][1] = (ADCLong > FG_HF_thresholds_[0] || ADCShort > FG_HF_thresholds_[0]);
535 
536  if (embit != nullptr)
537  finegrain[ibin][0] = embit->fineGrainbit(details.ShortDigi, details.LongDigi, ibin);
538  }
539  }
540  }
541 
542  for (int bin = 0; bin < numberOfSamplesHF_; ++bin) {
543  static const unsigned int MAX_OUTPUT = QIE8_LINEARIZATION_ET; // QIE8_LINEARIZATION_ET = 1023
544  output[bin] = min({MAX_OUTPUT, output[bin] >> hf_lumi_shift});
545  }
546 
547  std::vector<int> finegrain_converted;
548  for (const auto& fg : finegrain)
549  finegrain_converted.push_back(fg.to_ulong());
550  outcoder_->compress(output, finegrain_converted, result);
551 }
552 
553 bool HcalTriggerPrimitiveAlgo::passTDC(const QIE10DataFrame& digi, int ts) const {
555  auto adc_threshold = parameters->getADCThresholdHF();
556  auto tdc_mask = parameters->getTDCMaskHF();
557 
558  if (override_adc_hf_)
559  adc_threshold = override_adc_hf_value_;
560  if (override_tdc_hf_)
561  tdc_mask = override_tdc_hf_value_;
562 
563  if (digi[ts].adc() < adc_threshold)
564  return true;
565 
566  return (1ul << digi[ts].le_tdc()) & tdc_mask;
567 }
568 
570  // channels with invalid data should not contribute to the sum
571  if (digi.linkError() || ts >= digi.samples() || !digi[ts].ok())
572  return false;
573 
574  auto mask = conditions_->getHcalTPChannelParameter(HcalDetId(digi.id()))->getMask();
575  if (mask)
576  return false;
577 
578  return true;
579 }
580 
583  const int hf_lumi_shift,
584  const HcalFeatureBit* embit) {
585  // Align digis and TP
586  const int shift = samples.presamples() - numberOfPresamplesHF_;
587  assert(shift >= 0);
588  assert((shift + numberOfSamplesHF_) <= samples.size());
589  assert(hf_lumi_shift >= 2);
590 
591  // Try to find the HFDetails from the map corresponding to our samples
592  const HcalTrigTowerDetId detId(samples.id());
593  auto it = theHFUpgradeDetailMap.find(detId);
594  // Missing values will give an empty digi
595  if (it == theHFUpgradeDetailMap.end()) {
596  return;
597  }
598 
599  std::vector<std::bitset<2>> finegrain(numberOfSamplesHF_, false);
600 
601  // Set up out output of IntergerCaloSamples
603  output.setPresamples(numberOfPresamplesHF_);
604 
605  for (const auto& item : it->second) {
606  auto& details = item.second;
607  for (int ibin = 0; ibin < numberOfSamplesHF_; ++ibin) {
608  const int idx = ibin + shift;
609 
610  int long_fiber_val = 0;
611  int long_fiber_count = 0;
612  int short_fiber_val = 0;
613  int short_fiber_count = 0;
614 
615  bool saturated = false;
616 
617  for (auto i : {0, 2}) {
618  if (idx < details[i].samples.size() and details[i].validity[idx] and details[i].passTDC[idx]) {
619  long_fiber_val += details[i].samples[idx];
620  saturated = saturated || (details[i].samples[idx] == QIE10_LINEARIZATION_ET);
621  ++long_fiber_count;
622  }
623  }
624  for (auto i : {1, 3}) {
625  if (idx < details[i].samples.size() and details[i].validity[idx] and details[i].passTDC[idx]) {
626  short_fiber_val += details[i].samples[idx];
627  saturated = saturated || (details[i].samples[idx] == QIE10_LINEARIZATION_ET);
628  ++short_fiber_count;
629  }
630  }
631 
632  if (saturated) {
634  } else {
635  // For details of the energy handling, see:
636  // https://cms-docdb.cern.ch/cgi-bin/DocDB/ShowDocument?docid=12306
637  // If both readouts are valid, average of the two energies is taken
638  // division by 2 is compensated by adjusting the total scale shift in the end
639  if (long_fiber_count == 2)
640  long_fiber_val >>= 1;
641  if (short_fiber_count == 2)
642  short_fiber_val >>= 1;
643 
644  auto sum = long_fiber_val + short_fiber_val;
645  // Similar to above, if both channels are valid,
646  // average of the two energies is calculated
647  // division by 2 here is also compensated by adjusting the total scale shift in the end
648  if (long_fiber_count > 0 and short_fiber_count > 0)
649  sum >>= 1;
650 
651  output[ibin] += sum;
652  }
653 
654  for (const auto& detail : details) {
655  if (idx < int(detail.digi.size()) and detail.validity[idx] and
656  HcalDetId(detail.digi.id()).ietaAbs() >= FIRST_FINEGRAIN_TOWER) {
657  if (useTDCInMinBiasBits_ && !detail.passTDC[idx])
658  continue;
659  finegrain[ibin][1] = finegrain[ibin][1] or detail.fgbits[idx][0];
660  // what is commonly called the "second" HF min-bias bit is
661  // actually the 0-th bit, which can also be used instead for the EM bit
662  // (called finegrain[ibin][0] below) in non-HI running
663  finegrain[ibin][0] = finegrain[ibin][0] or detail.fgbits[idx][1];
664  }
665  }
666  // the EM bit is only used if the "second" FG bit is disabled
667  if (embit != nullptr and FG_HF_thresholds_.at(1) != 255) {
668  finegrain[ibin][0] = embit->fineGrainbit(details[1].digi,
669  details[3].digi,
670  details[0].digi,
671  details[2].digi,
672  details[1].validity[idx],
673  details[3].validity[idx],
674  details[0].validity[idx],
675  details[2].validity[idx],
676  idx);
677  }
678  }
679  }
680 
681  for (int bin = 0; bin < numberOfSamplesHF_; ++bin) {
682  output[bin] = min({(unsigned int)QIE10_MAX_LINEARIZATION_ET, output[bin] >> (hf_lumi_shift - 2)});
683  }
684  std::vector<int> finegrain_converted;
685  for (const auto& fg : finegrain)
686  finegrain_converted.push_back(fg.to_ulong());
687  outcoder_->compress(output, finegrain_converted, result);
688 }
689 
691  for (HcalTrigPrimDigiCollection::iterator tp = result.begin(); tp != result.end(); ++tp) {
692  bool ZS = true;
693  for (int i = 0; i < tp->size(); ++i) {
694  if (tp->sample(i).compressedEt() > ZS_threshold_I_) {
695  ZS = false;
696  break;
697  }
698  }
699  if (ZS)
700  tp->setZSInfo(false, true);
701  else
702  tp->setZSInfo(true, false);
703  }
704 }
705 
707  const HcalElectronicsMap* emap,
709  std::set<uint32_t> FrontEndErrors;
710 
712  const FEDRawData& raw = rawraw->FEDData(i);
713  if (raw.size() < 12)
714  continue;
715  const HcalDCCHeader* dccHeader = (const HcalDCCHeader*)(raw.data());
716  if (!dccHeader)
717  continue;
718  HcalHTRData htr;
719  for (int spigot = 0; spigot < HcalDCCHeader::SPIGOT_COUNT; spigot++) {
720  if (!dccHeader->getSpigotPresent(spigot))
721  continue;
722  dccHeader->getSpigotData(spigot, htr, raw.size());
723  int dccid = dccHeader->getSourceId();
724  int errWord = htr.getErrorsWord() & 0x1FFFF;
725  bool HTRError = (!htr.check() || htr.isHistogramEvent() || (errWord & 0x800) != 0);
726 
727  if (HTRError) {
728  bool valid = false;
729  for (int fchan = 0; fchan < 3 && !valid; fchan++) {
730  for (int fib = 0; fib < 9 && !valid; fib++) {
731  HcalElectronicsId eid(fchan, fib, spigot, dccid - FEDNumbering::MINHCALFEDID);
732  eid.setHTR(htr.readoutVMECrateId(), htr.htrSlot(), htr.htrTopBottom());
733  DetId detId = emap->lookup(eid);
734  if (detId.null())
735  continue;
736  HcalSubdetector subdet = (HcalSubdetector(detId.subdetId()));
737  if (detId.det() != 4 || (subdet != HcalBarrel && subdet != HcalEndcap && subdet != HcalForward))
738  continue;
739  std::vector<HcalTrigTowerDetId> ids = theTrigTowerGeometry->towerIds(detId);
740  for (std::vector<HcalTrigTowerDetId>::const_iterator triggerId = ids.begin(); triggerId != ids.end();
741  ++triggerId) {
742  FrontEndErrors.insert(triggerId->rawId());
743  }
744  //valid = true;
745  }
746  }
747  }
748  }
749  }
750 
751  // Loop over TP collection
752  // Set TP to zero if there is FE Format Error
753  HcalTriggerPrimitiveSample zeroSample(0);
754  for (HcalTrigPrimDigiCollection::iterator tp = result.begin(); tp != result.end(); ++tp) {
755  if (FrontEndErrors.find(tp->id().rawId()) != FrontEndErrors.end()) {
756  for (int i = 0; i < tp->size(); ++i)
757  tp->setSample(i, zeroSample);
758  }
759  }
760 }
761 
762 void HcalTriggerPrimitiveAlgo::addFG(const HcalTrigTowerDetId& id, std::vector<bool>& msb) {
763  FGbitMap::iterator itr = fgMap_.find(id);
764  if (itr != fgMap_.end()) {
765  std::vector<bool>& _msb = itr->second;
766  for (size_t i = 0; i < msb.size(); ++i)
767  _msb[i] = _msb[i] || msb[i];
768  } else
769  fgMap_[id] = msb;
770 }
771 
773  if (depth > LAST_FINEGRAIN_DEPTH)
774  return false;
775  if (id.ietaAbs() > LAST_FINEGRAIN_TOWER)
776  return false;
777  if (id.ietaAbs() == HBHE_OVERLAP_TOWER and not upgrade_hb_)
778  return false;
779  return true;
780 }
781 
783  // This tower (ietaAbs == 16) does not accept upgraded FG bits,
784  // but needs pseudo legacy ones to ensure that the tower is processed
785  // even when the QIE8 depths in front of it do not have energy deposits.
786  if (id.ietaAbs() == HBHE_OVERLAP_TOWER and not upgrade_hb_)
787  return true;
788  return false;
789 }
790 
792  int depth,
793  const std::vector<std::bitset<2>>& bits) {
794  if (not validUpgradeFG(id, depth)) {
795  if (needLegacyFG(id)) {
796  std::vector<bool> pseudo(bits.size(), false);
797  addFG(id, pseudo);
798  }
799  return;
800  }
801 
802  auto it = fgUpgradeMap_.find(id);
803  if (it == fgUpgradeMap_.end()) {
804  FGUpgradeContainer element;
805  element.resize(bits.size());
806  it = fgUpgradeMap_.insert(std::make_pair(id, element)).first;
807  }
808  for (unsigned int i = 0; i < bits.size(); ++i) {
809  it->second[i][0][depth - 1] = bits[i][0];
810  it->second[i][1][depth - 1] = bits[i][1];
811  }
812 }
813 
815  if (algo <= 0 && algo > 2)
816  throw cms::Exception("ERROR: Only algo 1 & 2 are supported.") << std::endl;
818 }
819 
821 
int samples() const
total number of samples in the digi
constexpr void setHTR(int crate, int slot, int tb)
T getParameter(std::string const &) const
void analyze(IntegerCaloSamples &samples, HcalTriggerPrimitiveDigi &result)
adds the actual digis
void adc2Linear(const HBHEDataFrame &df, IntegerCaloSamples &ics) const override
void runFEFormatError(const FEDRawDataCollection *rawraw, const HcalElectronicsMap *emap, HcalTrigPrimDigiCollection &result)
HcalTriggerPrimitiveAlgo(bool pf, const std::vector< double > &w, int latency, uint32_t FG_threshold, const std::vector< uint32_t > &FG_HF_thresholds, uint32_t ZS_threshold, int numberOfSamples, int numberOfPresamples, int numberOfSamplesHF, int numberOfPresamplesHF, bool useTDCInMinBiasBits, uint32_t minSignalThreshold=0, uint32_t PMT_NoiseThreshold=0)
int presamples() const
access presample information
std::vector< uint32_t > FG_HF_thresholds_
HFUpgradeDetailMap theHFUpgradeDetailMap
bool passTDC(const QIE10DataFrame &digi, int ts) const
void analyzeHF(IntegerCaloSamples &samples, HcalTriggerPrimitiveDigi &result, const int hf_lumi_shift)
HcalSubdetector subdet() const
get the subdetector
Definition: HcalDetId.h:138
bool check() const
Check for a good event Requires a minimum length, matching wordcount and length, not an empty event...
Definition: HcalHTRData.cc:63
std::vector< HcalTrigTowerDetId > towerIds(const HcalDetId &cellId) const
the mapping to and from DetIds
const double w
Definition: UKUtility.cc:23
const HcalTPChannelParameter * getHcalTPChannelParameter(const HcalGenericDetId &fId) const
unsigned int htrTopBottom() const
HcalElectronicsId-style HTR top/bottom (1=top/0=bottom)
Definition: HcalHTRData.cc:369
static const int QIE10_MAX_LINEARIZATION_ET
void analyzeHF2016(const IntegerCaloSamples &SAMPLES, HcalTriggerPrimitiveDigi &result, const int HF_LUMI_SHIFT, const HcalFeatureBit *HCALFEM)
constexpr bool null() const
is this a null id ?
Definition: DetId.h:59
int presamples() const
for backward compatibility
int size() const
total number of samples in the digi
Definition: HBHEDataFrame.h:27
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision bits
void analyzeHFQIE10(const IntegerCaloSamples &SAMPLES, HcalTriggerPrimitiveDigi &result, const int HF_LUMI_SHIFT, const HcalFeatureBit *HCALFEM)
bool linkError() const
#define nullptr
bool exists(std::string const &parameterName) const
checks if a parameter exists
edm::DataFrame::id_type id() const
const HcalTPGCompressor * outcoder_
void setPresamples(int pre)
set presample information
void addFG(const HcalTrigTowerDetId &id, std::vector< bool > &msb)
void analyzeQIE11(IntegerCaloSamples &samples, HcalTriggerPrimitiveDigi &result, const HcalFinegrainBit &fg_algo)
bool needLegacyFG(const HcalTrigTowerDetId &id) const
int getSpigotData(int nspigot, HcalHTRData &decodeTool, int validSize) const
uint32_t maskDepth() const
get the tower depth
Definition: HcalDetId.h:180
size_t size() const
Lenght of the data buffer in bytes.
Definition: FEDRawData.h:45
bool validChannel(const QIE10DataFrame &digi, int ts) const
std::vector< IntegerCaloSamples > SumFGContainer
int size() const
get the size
unsigned int htrSlot() const
HcalElectronicsId-style HTR slot.
Definition: HcalHTRData.cc:365
int depth() const
get the tower depth
Definition: HcalDetId.h:164
const HcalTrigTowerGeometry * theTrigTowerGeometry
const HcalDbService * conditions_
void lookupMSB(const HBHEDataFrame &df, std::vector< bool > &msb) const
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
HcalDetId const & id() const
Definition: HFDataFrame.h:23
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e< void, edm::EventID const &, edm::Timestamp const & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
Definition: Activities.doc:12
Definition: helper.h:70
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:48
edm::DataFrame::id_type id() const
HcalSubdetector
Definition: HcalAssistant.h:31
DetId detid() const
Get the detector id.
bool getSpigotPresent(unsigned int nspigot) const
Read the "PRESENT" bit for this spigot.
std::bitset< 4 > compute(const Tower &) const
T min(T a, T b)
Definition: MathUtil.h:58
constexpr int adc(sample_type sample)
get the ADC sample (12 bits)
void compress(const IntegerCaloSamples &ics, const std::vector< int > &fineGrain, HcalTriggerPrimitiveDigi &digi) const
int presamples() const
number of samples before the sample from the triggered beam crossing (according to the hardware) ...
Definition: HBHEDataFrame.h:29
void runZS(HcalTrigPrimDigiCollection &tp)
std::vector< T >::iterator iterator
const_iterator end() const
int getSourceId() const
Definition: HcalDCCHeader.h:32
std::vector< HcalFinegrainBit::Tower > FGUpgradeContainer
Definition: DetId.h:17
int size() const
total number of samples in the digi
Definition: HFDataFrame.h:27
unsigned long long override_tdc_hf_value_
bool validUpgradeFG(const HcalTrigTowerDetId &id, int depth) const
unsigned int getErrorsWord() const
Get the errors word.
Definition: HcalHTRData.h:162
static const int QIE11_MAX_LINEARIZATION_ET
int version() const
get the version code for the trigger tower
const HcalTPParameters * getHcalTPParameters() const
void addUpgradeFG(const HcalTrigTowerDetId &id, int depth, const std::vector< std::bitset< 2 >> &bits)
unsigned int readoutVMECrateId() const
HcalElectronicsId-style VME crate number.
Definition: HcalHTRData.cc:373
int presamples() const
for backward compatibility
const HcaluLUTTPGCoder * incoder_
static const int SPIGOT_COUNT
Definition: HcalDCCHeader.h:19
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
Definition: FEDRawData.cc:24
static unsigned int const shift
const HcalDetId & id() const
Definition: HBHEDataFrame.h:23
virtual bool fineGrainbit(const QIE10DataFrame &short1, const QIE10DataFrame &short2, const QIE10DataFrame &long1, const QIE10DataFrame &long2, bool validShort1, bool validShort2, bool validLong1, bool validLong2, int idx) const =0
int presamples() const
number of samples before the sample from the triggered beam crossing (according to the hardware) ...
Definition: HFDataFrame.h:29
DetId id() const
get the (generic) id
int samples() const
total number of samples in the digi
Readout chain identification for Hcal.
void addSignal(const HBHEDataFrame &frame)
adds the signal to the map
void setUpgradeFlags(bool hb, bool he, bool hf)
void overrideParameters(const edm::ParameterSet &ps)
const DetId lookup(HcalElectronicsId fId) const
lookup the logical detid associated with the given electronics id
int getADCThresholdHF() const
get ADC threshold fof TDC mask of HF
bool isHistogramEvent() const
Is this event a histogram event? (do not call standard unpack in this case!!!!!)
Definition: HcalHTRData.cc:409
const_iterator begin() const
uint32_t getMask() const
get mask for channel validity and self trigger information
constexpr Detector det() const
get the detector field from this detid
Definition: DetId.h:46