CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
CSCMotherboard.cc
Go to the documentation of this file.
2 #include <iostream>
3 #include <memory>
4 
5 // Default values of configuration parameters.
6 const unsigned int CSCMotherboard::def_mpc_block_me1a = 1;
7 const unsigned int CSCMotherboard::def_alct_trig_enable = 0;
8 const unsigned int CSCMotherboard::def_clct_trig_enable = 0;
9 const unsigned int CSCMotherboard::def_match_trig_enable = 1;
10 const unsigned int CSCMotherboard::def_match_trig_window_size = 7;
11 const unsigned int CSCMotherboard::def_tmb_l1a_window_size = 7;
12 
14  unsigned station,
15  unsigned sector,
16  unsigned subsector,
17  unsigned chamber,
18  const edm::ParameterSet& conf)
19  : CSCBaseboard(endcap, station, sector, subsector, chamber, conf) {
20  // Normal constructor. -JM
21  // Pass ALCT, CLCT, and common parameters on to ALCT and CLCT processors.
22  static std::atomic<bool> config_dumped{false};
23 
24  mpc_block_me1a = tmbParams_.getParameter<unsigned int>("mpcBlockMe1a");
25  alct_trig_enable = tmbParams_.getParameter<unsigned int>("alctTrigEnable");
26  clct_trig_enable = tmbParams_.getParameter<unsigned int>("clctTrigEnable");
27  match_trig_enable = tmbParams_.getParameter<unsigned int>("matchTrigEnable");
28  match_trig_window_size = tmbParams_.getParameter<unsigned int>("matchTrigWindowSize");
29  tmb_l1a_window_size = // Common to CLCT and TMB
30  tmbParams_.getParameter<unsigned int>("tmbL1aWindowSize");
31 
32  // configuration handle for number of early time bins
33  early_tbins = tmbParams_.getParameter<int>("tmbEarlyTbins");
34 
35  // whether to not reuse CLCTs that were used by previous matching ALCTs
36  drop_used_clcts = tmbParams_.getParameter<bool>("tmbDropUsedClcts");
37 
38  // whether to readout only the earliest two LCTs in readout window
39  readout_earliest_2 = tmbParams_.getParameter<bool>("tmbReadoutEarliest2");
40 
41  match_earliest_clct_only_ = tmbParams_.getParameter<bool>("matchEarliestClctOnly");
42 
43  infoV = tmbParams_.getParameter<int>("verbosity");
44 
45  alctProc = std::make_unique<CSCAnodeLCTProcessor>(endcap, station, sector, subsector, chamber, conf);
46  clctProc = std::make_unique<CSCCathodeLCTProcessor>(endcap, station, sector, subsector, chamber, conf);
47 
48  // Check and print configuration parameters.
50  if (infoV > 0 && !config_dumped) {
52  config_dumped = true;
53  }
54 
55  allLCTs_.setMatchTrigWindowSize(match_trig_window_size);
56 
57  // get the preferred CLCT BX match array
58  preferred_bx_match_ = tmbParams_.getParameter<std::vector<int> >("preferredBxMatch");
59 
60  // quality assignment
61  qualityAssignment_ = std::make_unique<LCTQualityAssignment>(endcap, station, sector, subsector, chamber, conf);
62 
63  // quality control of stubs
64  qualityControl_ = std::make_unique<LCTQualityControl>(endcap, station, sector, subsector, chamber, conf);
65 
66  // shower-trigger source
67  showerSource_ = showerParams_.getParameter<unsigned>("source");
68 
69  // enable the upgrade processors for ring 1 stations
70  if (runPhase2_ and theRing == 1) {
71  clctProc = std::make_unique<CSCUpgradeCathodeLCTProcessor>(endcap, station, sector, subsector, chamber, conf);
72  if (enableAlctPhase2_) {
73  alctProc = std::make_unique<CSCUpgradeAnodeLCTProcessor>(endcap, station, sector, subsector, chamber, conf);
74  }
75  }
76 
77  // set up helper class to check if ALCT and CLCT cross
78  ignoreAlctCrossClct_ = tmbParams_.getParameter<bool>("ignoreAlctCrossClct");
79  if (!ignoreAlctCrossClct_) {
80  cscOverlap_ = std::make_unique<CSCALCTCrossCLCT>(endcap, station, theRing, ignoreAlctCrossClct_, conf);
81  }
82 }
83 
85  // clear the processors
86  if (alctProc)
87  alctProc->clear();
88  if (clctProc)
89  clctProc->clear();
90 
91  // clear the ALCT and CLCT containers
92  alctV.clear();
93  clctV.clear();
94  lctV.clear();
95 
96  allLCTs_.clear();
97 
98  // reset the shower trigger
99  shower_.clear();
100 }
101 
102 // Set configuration parameters obtained via EventSetup mechanism.
104  static std::atomic<bool> config_dumped{false};
105 
106  // Config. parameters for the TMB itself.
113 
114  // Config. paramteres for ALCT and CLCT processors.
115  alctProc->setConfigParameters(conf);
116  clctProc->setConfigParameters(conf);
117 
118  // Check and print configuration parameters.
120  if (!config_dumped) {
122  config_dumped = true;
123  }
124 }
125 
127 
129 
131 
133  // Step 1: Setup
134  clear();
135 
136  // Check for existing processors
137  if (!(alctProc && clctProc)) {
138  edm::LogError("CSCMotherboard|SetupError") << "+++ run() called for non-existing ALCT/CLCT processor! +++ \n";
139  return;
140  }
141 
142  // set geometry
143  alctProc->setCSCGeometry(cscGeometry_);
144  clctProc->setCSCGeometry(cscGeometry_);
145 
146  // set CCLUT parameters if necessary
147  if (runCCLUT_) {
148  clctProc->setESLookupTables(lookupTableCCLUT_);
149  }
150 
151  // Step 2: Run the processors
152  alctV = alctProc->run(wiredc); // run anodeLCT
153  clctV = clctProc->run(compdc); // run cathodeLCT
154 
155  // Step 2b: encode high multiplicity bits (independent of LCT construction)
157 
158  // if there are no ALCTs and no CLCTs, it does not make sense to run this TMB
159  if (alctV.empty() and clctV.empty())
160  return;
161 
162  // step 3: match the ALCTs to the CLCTs
163  bool bunch_crossing_mask[CSCConstants::MAX_ALCT_TBINS] = {false};
164  matchALCTCLCT(bunch_crossing_mask);
165 
166  // Step 4: Select at most 2 LCTs per BX
167  selectLCTs();
168 }
169 
171  // array to mask CLCTs
172  bool used_clct_mask[CSCConstants::MAX_CLCT_TBINS] = {false};
173 
174  // Step 3: ALCT-centric ALCT-to-CLCT matching
175  int bx_clct_matched = 0; // bx of last matched CLCT
176  for (int bx_alct = 0; bx_alct < CSCConstants::MAX_ALCT_TBINS; bx_alct++) {
177  // do not consider LCT building in this BX if the mask was set
178  // this check should have no effect on the regular LCT finding
179  // it does play a role in the LCT finding for GEM-CSC ILTs
180  // namely, if a GEM-CSC ILT was found a bunch crossing, the
181  // algorithm would skip the bunch crossing for regular LCT finding
182  if (bunch_crossing_mask[bx_alct])
183  continue;
184 
185  // There should be at least one valid CLCT or ALCT for a
186  // correlated LCT to be formed. Decision on whether to reject
187  // non-complete LCTs (and if yes of which type) is made further
188  // upstream.
189  if (alctProc->getBestALCT(bx_alct).isValid()) {
190  // Look for CLCTs within the match-time window. The window is
191  // centered at the ALCT bx; therefore, we make an assumption
192  // that anode and cathode hits are perfectly synchronized. This
193  // is always true for MC, but only an approximation when the
194  // data is analyzed (which works fairly good as long as wide
195  // windows are used). To get rid of this assumption, one would
196  // need to access "full BX" words, which are not readily
197  // available.
198  bool is_matched = false;
199  // loop on the preferred "delta BX" array
200  for (unsigned mbx = 0; mbx < match_trig_window_size; mbx++) {
201  // evaluate the preffered CLCT BX, taking into account that there is an offset in the simulation
202  unsigned bx_clct = bx_alct + preferred_bx_match_[mbx] - CSCConstants::ALCT_CLCT_OFFSET;
203  // check that the CLCT BX is valid
204  if (bx_clct >= CSCConstants::MAX_CLCT_TBINS)
205  continue;
206  // do not consider previously matched CLCTs
207  if (drop_used_clcts && used_clct_mask[bx_clct])
208  continue;
209  // only consider >=4 layer CLCTs for ALCT-CLCT type LCTs
210  // this condition is lowered to >=3 layers for CLCTs in the
211  // matchALCTCLCTGEM function
212  if (clctProc->getBestCLCT(bx_clct).getQuality() <= 3)
213  continue;
214  // a valid CLCT with sufficient layers!
215  if (clctProc->getBestCLCT(bx_clct).isValid()) {
216  if (infoV > 1)
217  LogTrace("CSCMotherboard") << "Successful ALCT-CLCT match: bx_alct = " << bx_alct
218  << "; bx_clct = " << bx_clct << "; mbx = " << mbx;
219  // now correlate the ALCT and CLCT into LCT.
220  // smaller mbx means more preferred!
221  correlateLCTs(alctProc->getBestALCT(bx_alct),
222  alctProc->getSecondALCT(bx_alct),
223  clctProc->getBestCLCT(bx_clct),
224  clctProc->getSecondCLCT(bx_clct),
225  allLCTs_(bx_alct, mbx, 0),
226  allLCTs_(bx_alct, mbx, 1),
228  // when the first LCT is valid, you can mask the matched CLCT and/or
229  // move on to the next ALCT if match_earliest_clct_only_ is set to true
230  if (allLCTs_(bx_alct, mbx, 0).isValid()) {
231  is_matched = true;
232  used_clct_mask[bx_clct] = true;
233  bunch_crossing_mask[bx_alct] = true;
234  bx_clct_matched = bx_clct;
236  break;
237  }
238  }
239  }
240  // No CLCT within the match time interval found: report ALCT-only LCT
241  // (use dummy CLCTs).
242  if (!is_matched) {
243  if (infoV > 1)
244  LogTrace("CSCMotherboard") << "Unsuccessful ALCT-CLCT match (ALCT only): bx_alct = " << bx_alct
245  << " first ALCT " << alctProc->getBestALCT(bx_alct);
246  if (alct_trig_enable)
247  correlateLCTs(alctProc->getBestALCT(bx_alct),
248  alctProc->getSecondALCT(bx_alct),
249  clctProc->getBestCLCT(bx_alct),
250  clctProc->getSecondCLCT(bx_alct),
251  allLCTs_(bx_alct, 0, 0),
252  allLCTs_(bx_alct, 0, 1),
254  }
255  }
256  // No valid ALCTs; attempt to make CLCT-only LCT. Use only CLCTs
257  // which have zeroth chance to be matched at later cathode times.
258  // (I am not entirely sure this perfectly matches the firmware logic.)
259  // Use dummy ALCTs.
260  else {
261  int bx_clct = bx_alct - match_trig_window_size / 2;
262  if (bx_clct >= 0 && bx_clct > bx_clct_matched) {
263  if (clctProc->getBestCLCT(bx_clct).isValid() and clct_trig_enable) {
264  if (infoV > 1)
265  LogTrace("CSCMotherboard") << "Unsuccessful ALCT-CLCT match (CLCT only): bx_clct = " << bx_clct;
266  correlateLCTs(alctProc->getBestALCT(bx_alct),
267  alctProc->getSecondALCT(bx_alct),
268  clctProc->getBestCLCT(bx_clct),
269  clctProc->getSecondCLCT(bx_clct),
270  allLCTs_(bx_clct, 0, 0),
271  allLCTs_(bx_clct, 0, 1),
273  }
274  }
275  }
276  }
277 }
278 
279 // Returns vector of read-out correlated LCTs, if any. Starts with
280 // the vector of all found LCTs and selects the ones in the read-out
281 // time window.
282 std::vector<CSCCorrelatedLCTDigi> CSCMotherboard::readoutLCTs() const {
283  // temporary container for further selection
284  std::vector<CSCCorrelatedLCTDigi> tmpV;
285 
286  /*
287  LCTs in the BX window [early_tbin,...,late_tbin] are considered good for physics
288  The central LCT BX is time bin 8.
289  For tmb_l1a_window_size set to 7 (Run-1, Run-2), the window is [5, 6, 7, 8, 9, 10, 11]
290  For tmb_l1a_window_size set to 5 (Run-3), the window is [6, 7, 8, 9, 10]
291  For tmb_l1a_window_size set to 3 (Run-4?), the window is [ 7, 8, 9]
292  */
293  const unsigned delta_tbin = tmb_l1a_window_size / 2;
294  int early_tbin = CSCConstants::LCT_CENTRAL_BX - delta_tbin;
295  int late_tbin = CSCConstants::LCT_CENTRAL_BX + delta_tbin;
296  /*
297  Special case for an even-numbered time-window,
298  For instance tmb_l1a_window_size set to 6: [5, 6, 7, 8, 9, 10]
299  */
300  if (tmb_l1a_window_size % 2 == 0)
301  late_tbin = CSCConstants::LCT_CENTRAL_BX + delta_tbin - 1;
302  const int max_late_tbin = CSCConstants::MAX_LCT_TBINS - 1;
303 
304  // debugging messages when early_tbin or late_tbin has a suspicious value
305  if (early_tbin < 0) {
306  edm::LogWarning("CSCMotherboard|SuspiciousParameters")
307  << "Early time bin (early_tbin) smaller than minimum allowed, which is 0. set early_tbin to 0.";
308  early_tbin = 0;
309  }
310  if (late_tbin > max_late_tbin) {
311  edm::LogWarning("CSCMotherboard|SuspiciousParameters")
312  << "Late time bin (late_tbin) larger than maximum allowed, which is " << max_late_tbin
313  << ". set early_tbin to max allowed";
314  late_tbin = CSCConstants::MAX_LCT_TBINS - 1;
315  }
316 
317  // Start from the vector of all found correlated LCTs and select
318  // those within the LCT*L1A coincidence window.
319  int bx_readout = -1;
320  for (const auto& lct : lctV) {
321  // extra check on invalid LCTs
322  if (!lct.isValid()) {
323  continue;
324  }
325 
326  const int bx = lct.getBX();
327  // Skip LCTs found too early relative to L1Accept.
328  if (bx < early_tbin) {
329  if (infoV > 1)
330  LogDebug("CSCMotherboard") << " Do not report correlated LCT on key halfstrip " << lct.getStrip()
331  << " and key wire " << lct.getKeyWG() << ": found at bx " << bx
332  << ", whereas the earliest allowed bx is " << early_tbin;
333  continue;
334  }
335 
336  // Skip LCTs found too late relative to L1Accept.
337  if (bx > late_tbin) {
338  if (infoV > 1)
339  LogDebug("CSCMotherboard") << " Do not report correlated LCT on key halfstrip " << lct.getStrip()
340  << " and key wire " << lct.getKeyWG() << ": found at bx " << bx
341  << ", whereas the latest allowed bx is " << late_tbin;
342  continue;
343  }
344 
345  // Do not report LCTs found in ME1/A if mpc_block_me1a is set.
346  if (mpc_block_me1a and isME11_ and lct.getStrip() > CSCConstants::MAX_HALF_STRIP_ME1B) {
347  continue;
348  }
349 
350  // If (readout_earliest_2) take only LCTs in the earliest bx in the read-out window:
351  // in digi->raw step, LCTs have to be packed into the TMB header, and
352  // currently there is room just for two.
353  if (readout_earliest_2) {
354  if (bx_readout == -1 || bx == bx_readout) {
355  tmpV.push_back(lct);
356  if (bx_readout == -1)
357  bx_readout = bx;
358  }
359  }
360  // if readout_earliest_2 == false, save all LCTs
361  else {
362  tmpV.push_back(lct);
363  }
364  }
365 
366  // do a final check on the LCTs in readout
367  qualityControl_->checkMultiplicityBX(tmpV);
368  for (const auto& lct : tmpV) {
369  qualityControl_->checkValid(lct);
370  }
371 
372  return tmpV;
373 }
374 
376 
378  const CSCALCTDigi& sALCT,
379  const CSCCLCTDigi& bCLCT,
380  const CSCCLCTDigi& sCLCT,
381  CSCCorrelatedLCTDigi& bLCT,
382  CSCCorrelatedLCTDigi& sLCT,
383  int type) const {
384  CSCALCTDigi bestALCT = bALCT;
385  CSCALCTDigi secondALCT = sALCT;
386  CSCCLCTDigi bestCLCT = bCLCT;
387  CSCCLCTDigi secondCLCT = sCLCT;
388 
389  // extra check to make sure that both CLCTs have at least 4 layers
390  // for regular ALCT-CLCT type LCTs. A check was already done on the
391  // best CLCT, but not yet on the second best CLCT. The check on best
392  // CLCT is repeated for completeness
393  if (bestCLCT.getQuality() <= 3)
394  bestCLCT.clear();
395  if (secondCLCT.getQuality() <= 3)
396  secondCLCT.clear();
397 
398  // check which ALCTs and CLCTs are valid
399  // if the best ALCT/CLCT is valid, but the second ALCT/CLCT is not,
400  // the information is copied over
401  copyValidToInValid(bestALCT, secondALCT, bestCLCT, secondCLCT);
402 
403  // ALCT-only LCTs
404  const bool bestCase1(alct_trig_enable and bestALCT.isValid());
405  // CLCT-only LCTs
406  const bool bestCase2(clct_trig_enable and bestCLCT.isValid());
407  /*
408  Normal case: ALCT-CLCT matched LCTs. We require ALCT and CLCT to be valid.
409  Optionally, we can check if the ALCT cross the CLCT. This check will always return true
410  for a valid ALCT-CLCT pair in non-ME1/1 chambers. For ME1/1 chambers, it returns true,
411  only when the ALCT-CLCT pair crosses and when the parameter "checkAlctCrossClct" is set to True.
412  It is recommended to keep "checkAlctCrossClct" set to False, so that the EMTF receives
413  all information, even if it's unphysical.
414  */
415  const bool bestCase3(match_trig_enable and bestALCT.isValid() and bestCLCT.isValid() and
416  doesALCTCrossCLCT(bestALCT, bestCLCT));
417 
418  // at least one of the cases must be valid
419  if (bestCase1 or bestCase2 or bestCase3) {
420  constructLCTs(bestALCT, bestCLCT, type, 1, bLCT);
421  }
422 
423  // ALCT-only LCTs
424  const bool secondCase1(alct_trig_enable and secondALCT.isValid());
425  // CLCT-only LCTs
426  const bool secondCase2(clct_trig_enable and secondCLCT.isValid());
427  /*
428  Normal case: ALCT-CLCT matched LCTs. We require ALCT and CLCT to be valid.
429  Optionally, we can check if the ALCT cross the CLCT. This check will always return true
430  for a valid ALCT-CLCT pair in non-ME1/1 chambers. For ME1/1 chambers, it returns true,
431  only when the ALCT-CLCT pair crosses and when the parameter "checkAlctCrossClct" is set to True.
432  It is recommended to keep "checkAlctCrossClct" set to False, so that the EMTF receives
433  all information, even if it's unphysical.
434  */
435  const bool secondCase3(match_trig_enable and secondALCT.isValid() and secondCLCT.isValid() and
436  doesALCTCrossCLCT(secondALCT, secondCLCT));
437 
438  // at least one component must be different in order to consider the secondLCT
439  if ((secondALCT != bestALCT) or (secondCLCT != bestCLCT)) {
440  // at least one of the cases must be valid
441  if (secondCase1 or secondCase2 or secondCase3) {
442  constructLCTs(secondALCT, secondCLCT, type, 2, sLCT);
443  }
444  }
445 }
446 
448  CSCALCTDigi& secondALCT,
449  CSCCLCTDigi& bestCLCT,
450  CSCCLCTDigi& secondCLCT) const {
451  // check which ALCTs and CLCTs are valid
452  const bool anodeBestValid = bestALCT.isValid();
453  const bool anodeSecondValid = secondALCT.isValid();
454  const bool cathodeBestValid = bestCLCT.isValid();
455  const bool cathodeSecondValid = secondCLCT.isValid();
456 
457  // copy the valid ALCT/CLCT information to the valid ALCT/CLCT
458  if (anodeBestValid && !anodeSecondValid)
459  secondALCT = bestALCT;
460  if (!anodeBestValid && anodeSecondValid)
461  bestALCT = secondALCT;
462  if (cathodeBestValid && !cathodeSecondValid)
463  secondCLCT = bestCLCT;
464  if (!cathodeBestValid && cathodeSecondValid)
465  bestCLCT = secondCLCT;
466 }
467 
468 bool CSCMotherboard::doesALCTCrossCLCT(const CSCALCTDigi& alct, const CSCCLCTDigi& clct) const {
470  return true;
471  else
472  return cscOverlap_->doesALCTCrossCLCT(alct, clct);
473 }
474 
475 // This method calculates all the TMB words and then passes them to the
476 // constructor of correlated LCTs.
478  const CSCALCTDigi& aLCT, const CSCCLCTDigi& cLCT, int type, int trknmb, CSCCorrelatedLCTDigi& thisLCT) const {
479  thisLCT.setValid(true);
480  thisLCT.setType(type);
481  // make sure to shift the ALCT BX from 8 to 3 and the CLCT BX from 8 to 7!
482  thisLCT.setALCT(getBXShiftedALCT(aLCT));
483  thisLCT.setCLCT(getBXShiftedCLCT(cLCT));
484  thisLCT.setPattern(encodePattern(cLCT.getPattern()));
485  thisLCT.setMPCLink(0);
486  thisLCT.setBX0(0);
487  thisLCT.setSyncErr(0);
488  thisLCT.setCSCID(theTrigChamber);
489  thisLCT.setTrknmb(trknmb);
490  thisLCT.setWireGroup(aLCT.getKeyWG());
491  thisLCT.setStrip(cLCT.getKeyStrip());
492  thisLCT.setBend(cLCT.getBend());
493  // Bunch crossing: get it from cathode LCT if anode LCT is not there.
494  int bx = aLCT.isValid() ? aLCT.getBX() : cLCT.getBX();
495  thisLCT.setBX(bx);
496  thisLCT.setQuality(qualityAssignment_->findQuality(aLCT, cLCT));
497  if (runCCLUT_) {
498  thisLCT.setRun3(true);
499  // 4-bit slope value derived with the CCLUT algorithm
500  thisLCT.setSlope(cLCT.getSlope());
501  thisLCT.setQuartStripBit(cLCT.getQuartStripBit());
502  thisLCT.setEighthStripBit(cLCT.getEighthStripBit());
503  thisLCT.setRun3Pattern(cLCT.getRun3Pattern());
504  }
505 }
506 
507 // CLCT pattern number: encodes the pattern number itself
508 unsigned int CSCMotherboard::encodePattern(const int ptn) const {
509  const int kPatternBitWidth = 4;
510 
511  // In the TMB07 firmware, LCT pattern is just a 4-bit CLCT pattern.
512  unsigned int pattern = (abs(ptn) & ((1 << kPatternBitWidth) - 1));
513 
514  return pattern;
515 }
516 
518  // in each of the LCT time bins
519  for (int bx = 0; bx < CSCConstants::MAX_LCT_TBINS; bx++) {
520  unsigned nLCTs = 0;
521 
522  std::vector<CSCCorrelatedLCTDigi> tempV;
523  // check each of the preferred combinations
524  for (unsigned int mbx = 0; mbx < match_trig_window_size; mbx++) {
525  // select at most 2
526  for (int i = 0; i < CSCConstants::MAX_LCTS_PER_CSC; i++) {
527  if (allLCTs_(bx, mbx, i).isValid() and nLCTs < 2) {
528  tempV.push_back(allLCTs_(bx, mbx, i));
529  ++nLCTs;
530  }
531  }
532  }
533  // store the best 2
534  for (const auto& lct : tempV) {
535  lctV.push_back(lct);
536  }
537  }
538 
539  // Show the pre-selected LCTs. They're not final yet. Some selection is done in the readoutLCTs function
540  if (infoV > 0) {
541  for (const auto& lct : lctV) {
542  LogDebug("CSCMotherboard") << "Selected LCT" << lct;
543  }
544  }
545 }
546 
548  // Make sure that the parameter values are within the allowed range.
549 
550  // Max expected values.
551  static const unsigned int max_mpc_block_me1a = 1 << 1;
552  static const unsigned int max_alct_trig_enable = 1 << 1;
553  static const unsigned int max_clct_trig_enable = 1 << 1;
554  static const unsigned int max_match_trig_enable = 1 << 1;
555  static const unsigned int max_match_trig_window_size = 1 << 4;
556  static const unsigned int max_tmb_l1a_window_size = 1 << 4;
557 
558  // Checks.
559  CSCBaseboard::checkConfigParameters(mpc_block_me1a, max_mpc_block_me1a, def_mpc_block_me1a, "mpc_block_me1a");
560  CSCBaseboard::checkConfigParameters(alct_trig_enable, max_alct_trig_enable, def_alct_trig_enable, "alct_trig_enable");
561  CSCBaseboard::checkConfigParameters(clct_trig_enable, max_clct_trig_enable, def_clct_trig_enable, "clct_trig_enable");
563  match_trig_enable, max_match_trig_enable, def_match_trig_enable, "match_trig_enable");
565  match_trig_window_size, max_match_trig_window_size, def_match_trig_window_size, "match_trig_window_size");
567  tmb_l1a_window_size, max_tmb_l1a_window_size, def_tmb_l1a_window_size, "tmb_l1a_window_size");
568 }
569 
571  std::ostringstream strm;
572  strm << "\n";
573  strm << "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n";
574  strm << "+ TMB configuration parameters: +\n";
575  strm << "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n";
576  strm << " mpc_block_me1a [block/not block triggers which come from ME1/A] = " << mpc_block_me1a << "\n";
577  strm << " alct_trig_enable [allow ALCT-only triggers] = " << alct_trig_enable << "\n";
578  strm << " clct_trig_enable [allow CLCT-only triggers] = " << clct_trig_enable << "\n";
579  strm << " match_trig_enable [allow matched ALCT-CLCT triggers] = " << match_trig_enable << "\n";
580  strm << " match_trig_window_size [ALCT-CLCT match window width, in 25 ns] = " << match_trig_window_size << "\n";
581  strm << " tmb_l1a_window_size [L1Accept window width, in 25 ns bins] = " << tmb_l1a_window_size << "\n";
582  strm << "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n";
583  LogDebug("CSCMotherboard") << strm.str();
584 }
585 
587  CSCALCTDigi aLCT_shifted = aLCT;
588  aLCT_shifted.setBX(aLCT_shifted.getBX() - (CSCConstants::LCT_CENTRAL_BX - CSCConstants::ALCT_CENTRAL_BX));
589  return aLCT_shifted;
590 }
591 
593  CSCCLCTDigi cLCT_shifted = cLCT;
594  cLCT_shifted.setBX(cLCT_shifted.getBX() - CSCConstants::ALCT_CLCT_OFFSET);
595  return cLCT_shifted;
596 }
597 
599  // get the high multiplicity
600  // for anode this reflects what is already in the anode CSCShowerDigi object
601  unsigned cathodeInTime = clctProc->getInTimeHMT();
602  unsigned anodeInTime = alctProc->getInTimeHMT();
603 
604  // assign the bits
605  unsigned inTimeHMT_;
606 
607  // set the value according to source
608  switch (showerSource_) {
609  case 0:
610  inTimeHMT_ = cathodeInTime;
611  break;
612  case 1:
613  inTimeHMT_ = anodeInTime;
614  break;
615  case 2:
616  inTimeHMT_ = anodeInTime | cathodeInTime;
617  break;
618  case 3:
619  inTimeHMT_ = anodeInTime & cathodeInTime;
620  break;
621  default:
622  inTimeHMT_ = cathodeInTime;
623  break;
624  };
625 
626  // create a new object
627  shower_ = CSCShowerDigi(inTimeHMT_, 0, theTrigChamber);
628 }
void matchALCTCLCT(bool bunch_crossing_mask[CSCConstants::MAX_ALCT_TBINS])
uint16_t getRun3Pattern() const
return pattern
Definition: CSCCLCTDigi.h:68
LCTContainer allLCTs_
void setPattern(const uint16_t p)
set pattern
void setALCT(const CSCALCTDigi &alct)
const CSCL1TPLookupTableME11ILT * lookupTableME11ILT_
std::vector< CSCCLCTDigi > clctV
unsigned int clct_trig_enable
void setESLookupTables(const CSCL1TPLookupTableCCLUT *conf)
const bool isValid(const Frame &aFrame, const FrameQuality &aQuality, const uint16_t aExpectedPos)
uint16_t getBX() const
return BX
Definition: CSCCLCTDigi.h:123
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::EventIDconst &, edm::Timestampconst & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
Definition: Activities.doc:12
unsigned int match_trig_window_size
void correlateLCTs(const CSCALCTDigi &bestALCT, const CSCALCTDigi &secondALCT, const CSCCLCTDigi &bestCLCT, const CSCCLCTDigi &secondCLCT, CSCCorrelatedLCTDigi &bLCT, CSCCorrelatedLCTDigi &sLCT, int type) const
bool enableAlctPhase2_
Definition: CSCBaseboard.h:94
uint16_t getBend() const
Definition: CSCCLCTDigi.h:93
CSCALCTDigi getBXShiftedALCT(const CSCALCTDigi &) const
void setSlope(const uint16_t slope)
set the slope
CSCCLCTDigi getBXShiftedCLCT(const CSCCLCTDigi &) const
static const unsigned int def_alct_trig_enable
bool isValid() const
check ALCT validity (1 - valid ALCT)
Definition: CSCALCTDigi.h:40
void checkConfigParameters(unsigned int &var, const unsigned int var_max, const unsigned int var_def, const std::string &var_str)
static const unsigned int def_mpc_block_me1a
void setQuartStripBit(const bool quartStripBit)
set single quart strip bit
uint16_t getBX() const
return BX - five low bits of BXN counter tagged by the ALCT
Definition: CSCALCTDigi.h:73
unsigned int tmbClctTrigEnable() const
void setEighthStripBit(const bool eighthStripBit)
set single eighth strip bit
std::vector< CSCCorrelatedLCTDigi > lctV
void setBend(const uint16_t b)
set bend
std::unique_ptr< CSCCathodeLCTProcessor > clctProc
static const unsigned int def_clct_trig_enable
Log< level::Error, false > LogError
void setValid(const uint16_t v)
set valid
void copyValidToInValid(CSCALCTDigi &, CSCALCTDigi &, CSCCLCTDigi &, CSCCLCTDigi &) const
#define LogTrace(id)
CSCShowerDigi readoutShower() const
uint16_t getKeyStrip(const uint16_t n=2) const
Definition: CSCCLCTDigi.cc:107
void setMatchTrigWindowSize(unsigned trig_window_size)
Definition: LCTContainer.h:41
unsigned int mpc_block_me1a
void setMPCLink(const uint16_t &link)
Set mpc link number after MPC sorting.
bool doesALCTCrossCLCT(const CSCALCTDigi &, const CSCCLCTDigi &) const
const unsigned theTrigChamber
Definition: CSCBaseboard.h:46
unsigned int tmbTmbL1aWindowSize() const
void setWireGroup(const uint16_t wiregroup)
set wiregroup number
unsigned int tmbMatchTrigWindowSize() const
std::vector< int > preferred_bx_match_
bool match_earliest_clct_only_
CSCMotherboard(unsigned endcap, unsigned station, unsigned sector, unsigned subsector, unsigned chamber, const edm::ParameterSet &conf)
std::unique_ptr< CSCALCTCrossCLCT > cscOverlap_
static const unsigned int def_tmb_l1a_window_size
std::vector< CSCALCTDigi > alctV
unsigned int tmbAlctTrigEnable() const
bool getEighthStripBit() const
get single eighth strip bit
Definition: CSCCLCTDigi.h:114
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
unsigned int encodePattern(const int clctPattern) const
unsigned int tmb_l1a_window_size
void checkConfigParameters()
bool isValid() const
check CLCT validity (1 - valid CLCT)
Definition: CSCCLCTDigi.h:50
unsigned int match_trig_enable
void setRun3Pattern(const uint16_t pattern)
set Run-3 pattern
void setBX0(const uint16_t b)
set bx0
CSCShowerDigi shower_
void setBX(const uint16_t BX)
set BX
Definition: CSCALCTDigi.h:76
const CSCGeometry * cscGeometry_
Definition: CSCBaseboard.h:71
unsigned int tmbMpcBlockMe1a() const
edm::ParameterSet tmbParams_
Definition: CSCBaseboard.h:78
void setCSCID(const uint16_t c)
set cscID
void run(const CSCWireDigiCollection *wiredc, const CSCComparatorDigiCollection *compdc)
void setRun3(const bool isRun3)
uint16_t getKeyWG() const
return key wire group
Definition: CSCALCTDigi.h:67
void setBX(const uint16_t b)
set bx
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
static const unsigned int def_match_trig_window_size
uint16_t getSlope() const
return the slope
Definition: CSCCLCTDigi.h:74
uint16_t getPattern() const
return pattern
Definition: CSCCLCTDigi.h:62
void constructLCTs(const CSCALCTDigi &aLCT, const CSCCLCTDigi &cLCT, int type, int trknmb, CSCCorrelatedLCTDigi &lct) const
unsigned int alct_trig_enable
const CSCL1TPLookupTableME21ILT * lookupTableME21ILT_
void setBX(const uint16_t bx)
set bx
Definition: CSCCLCTDigi.h:129
std::unique_ptr< CSCAnodeLCTProcessor > alctProc
unsigned showerSource_
const CSCL1TPLookupTableCCLUT * lookupTableCCLUT_
void dumpConfigParams() const
void setStrip(const uint16_t s)
set strip
void encodeHighMultiplicityBits()
void clear()
clear this CLCT
Definition: CSCCLCTDigi.cc:73
uint16_t getQuality() const
return quality of a pattern (number of layers hit!)
Definition: CSCCLCTDigi.h:56
void clear()
clear this Shower
unsigned theRing
Definition: CSCBaseboard.h:48
void setQuality(const uint16_t q)
set quality code
Log< level::Warning, false > LogWarning
edm::ParameterSet showerParams_
Definition: CSCBaseboard.h:87
void setConfigParameters(const CSCDBL1TPParameters *conf)
std::unique_ptr< LCTQualityControl > qualityControl_
void setTrknmb(const uint16_t number)
Set track number (1,2) after sorting LCTs.
void setCLCT(const CSCCLCTDigi &clct)
static const unsigned int def_match_trig_enable
virtual std::vector< CSCCorrelatedLCTDigi > readoutLCTs() const
void setSyncErr(const uint16_t s)
set syncErr
unsigned int tmbMatchTrigEnable() const
bool getQuartStripBit() const
get single quart strip bit
Definition: CSCCLCTDigi.h:108
#define LogDebug(id)
std::unique_ptr< LCTQualityAssignment > qualityAssignment_