CMS 3D CMS Logo

PixelDataFormatter.cc
Go to the documentation of this file.
2 
6 
8 
12 
15 
18 
19 #include <bitset>
20 #include <sstream>
21 #include <iostream>
22 
23 using namespace std;
24 using namespace edm;
25 using namespace sipixelobjects;
26 namespace {
27  constexpr int LINK_bits = 6;
28  constexpr int ROC_bits = 5;
29  constexpr int DCOL_bits = 5;
30  constexpr int PXID_bits = 8;
31  constexpr int ADC_bits = 8;
32 
33  // Add phase1 constants
34  // For phase1
35  //GO BACK TO OLD VALUES. THE 48-CHAN FED DOES NOT NEED A NEW FORMAT
36  // 28/9/16 d.k.
37  constexpr int LINK_bits1 = 6; // 7;
38  constexpr int ROC_bits1 = 5; // 4;
39  // Special for layer 1 bpix rocs 6/9/16 d.k. THIS STAYS.
40  constexpr int COL_bits1_l1 = 6;
41  constexpr int ROW_bits1_l1 = 7;
42 
43  // Moved to the header file, keep commented out unti the final version is done/
44  // constexpr int ADC_shift = 0;
45  // constexpr int PXID_shift = ADC_shift + ADC_bits;
46  // constexpr int DCOL_shift = PXID_shift + PXID_bits;
47  // constexpr int ROC_shift = DCOL_shift + DCOL_bits;
48  // constexpr int LINK_shift = ROC_shift + ROC_bits;
49  // constexpr PixelDataFormatter::Word32 LINK_mask = ~(~PixelDataFormatter::Word32(0) << LINK_bits);
50  // constexpr PixelDataFormatter::Word32 ROC_mask = ~(~PixelDataFormatter::Word32(0) << ROC_bits);
51  // constexpr PixelDataFormatter::Word32 DCOL_mask = ~(~PixelDataFormatter::Word32(0) << DCOL_bits);
52  // constexpr PixelDataFormatter::Word32 PXID_mask = ~(~PixelDataFormatter::Word32(0) << PXID_bits);
53  // constexpr PixelDataFormatter::Word32 ADC_mask = ~(~PixelDataFormatter::Word32(0) << ADC_bits);
54  //const bool DANEK = false;
55 } // namespace
56 
58  : theDigiCounter(0),
59  theWordCounter(0),
60  theCablingTree(map),
61  badPixelInfo(nullptr),
62  modulesToUnpack(nullptr),
63  phase1(phase) {
64  int s32 = sizeof(Word32);
65  int s64 = sizeof(Word64);
66  int s8 = sizeof(char);
67  if (s8 != 1 || s32 != 4 * s8 || s64 != 2 * s32) {
68  LogError("UnexpectedSizes") << " unexpected sizes: "
69  << " size of char is: " << s8 << ", size of Word32 is: " << s32
70  << ", size of Word64 is: " << s64 << ", send exception";
71  }
72  includeErrors = false;
73  useQualityInfo = false;
74  allDetDigis = 0;
75  hasDetDigis = 0;
76 
77  ADC_shift = 0;
78  PXID_shift = ADC_shift + ADC_bits;
79  DCOL_shift = PXID_shift + PXID_bits;
80  ROC_shift = DCOL_shift + DCOL_bits;
81 
82  if (phase1) { // for phase 1
83  LINK_shift = ROC_shift + ROC_bits1;
84  LINK_mask = ~(~PixelDataFormatter::Word32(0) << LINK_bits1);
85  ROC_mask = ~(~PixelDataFormatter::Word32(0) << ROC_bits1);
86  // special for layer 1 ROC
87  ROW_shift = ADC_shift + ADC_bits;
88  COL_shift = ROW_shift + ROW_bits1_l1;
89  COL_mask = ~(~PixelDataFormatter::Word32(0) << COL_bits1_l1);
90  ROW_mask = ~(~PixelDataFormatter::Word32(0) << ROW_bits1_l1);
91  maxROCIndex = 8;
92 
93  } else { // for phase 0
94  LINK_shift = ROC_shift + ROC_bits;
95  LINK_mask = ~(~PixelDataFormatter::Word32(0) << LINK_bits);
96  ROC_mask = ~(~PixelDataFormatter::Word32(0) << ROC_bits);
97  maxROCIndex = 25;
98  }
99 
100  DCOL_mask = ~(~PixelDataFormatter::Word32(0) << DCOL_bits);
101  PXID_mask = ~(~PixelDataFormatter::Word32(0) << PXID_bits);
102  ADC_mask = ~(~PixelDataFormatter::Word32(0) << ADC_bits);
103 
104  if (phase1) {
105  errorcheck = std::unique_ptr<ErrorCheckerBase>(new ErrorChecker());
106  } else {
107  errorcheck = std::unique_ptr<ErrorCheckerBase>(new ErrorCheckerPhase0());
108  }
109 }
110 
111 void PixelDataFormatter::setErrorStatus(bool ErrorStatus) {
112  includeErrors = ErrorStatus;
113  errorcheck->setErrorStatus(includeErrors);
114 }
115 
116 void PixelDataFormatter::setQualityStatus(bool QualityStatus, const SiPixelQuality* QualityInfo) {
117  useQualityInfo = QualityStatus;
118  badPixelInfo = QualityInfo;
119 }
120 
121 void PixelDataFormatter::setModulesToUnpack(const std::set<unsigned int>* moduleIds) { modulesToUnpack = moduleIds; }
122 
124 
126  bool& errorsInEvent, int fedId, const FEDRawData& rawData, Collection& digis, Errors& errors) {
127  using namespace sipixelobjects;
128 
129  int nWords = rawData.size() / sizeof(Word64);
130  if (nWords == 0)
131  return;
132 
134 
135  // check CRC bit
136  const Word64* trailer = reinterpret_cast<const Word64*>(rawData.data()) + (nWords - 1);
137  if (!errorcheck->checkCRC(errorsInEvent, fedId, trailer, errors))
138  return;
139 
140  // check headers
141  const Word64* header = reinterpret_cast<const Word64*>(rawData.data());
142  header--;
143  bool moreHeaders = true;
144  while (moreHeaders) {
145  header++;
146  LogTrace("") << "HEADER: " << print(*header);
147  bool headerStatus = errorcheck->checkHeader(errorsInEvent, fedId, header, errors);
148  moreHeaders = headerStatus;
149  }
150 
151  // check trailers
152  bool moreTrailers = true;
153  trailer++;
154  while (moreTrailers) {
155  trailer--;
156  LogTrace("") << "TRAILER: " << print(*trailer);
157  bool trailerStatus = errorcheck->checkTrailer(errorsInEvent, fedId, nWords, trailer, errors);
158  moreTrailers = trailerStatus;
159  }
160 
161  // data words
162  theWordCounter += 2 * (nWords - 2);
163  LogTrace("") << "data words: " << (trailer - header - 1);
164 
165  int link = -1;
166  int roc = -1;
167  int layer = 0;
168  PixelROC const* rocp = nullptr;
169  bool skipROC = false;
170  edm::DetSet<PixelDigi>* detDigis = nullptr;
171 
172  const Word32* bw = (const Word32*)(header + 1);
173  const Word32* ew = (const Word32*)(trailer);
174  if (*(ew - 1) == 0) {
175  ew--;
176  theWordCounter--;
177  }
178  for (auto word = bw; word < ew; ++word) {
179  LogTrace("") << "DATA: " << print(*word);
180 
181  auto ww = *word;
182  if
183  UNLIKELY(ww == 0) {
184  theWordCounter--;
185  continue;
186  }
187  int nlink = (ww >> LINK_shift) & LINK_mask;
188  int nroc = (ww >> ROC_shift) & ROC_mask;
189 
190  //if(DANEK) cout<<" fed, link, roc "<<fedId<<" "<<nlink<<" "<<nroc<<endl;
191 
192  if ((nlink != link) | (nroc != roc)) { // new roc
193  link = nlink;
194  roc = nroc;
195  skipROC = LIKELY(roc < maxROCIndex)
196  ? false
197  : !errorcheck->checkROC(errorsInEvent, fedId, &converter, theCablingTree, ww, errors);
198  if (skipROC)
199  continue;
200  rocp = converter.toRoc(link, roc);
201  if
202  UNLIKELY(!rocp) {
203  errorsInEvent = true;
204  errorcheck->conversionError(fedId, &converter, 2, ww, errors);
205  skipROC = true;
206  continue;
207  }
208  auto rawId = rocp->rawId();
209  bool barrel = PixelModuleName::isBarrel(rawId);
210  if (barrel)
211  layer = PixelROC::bpixLayerPhase1(rawId);
212  else
213  layer = 0;
214 
215  //if(DANEK) cout<<" rocp "<<rocp->print()<<" layer "<<rocp->bpixLayerPhase1(rawId)<<" "
216  // <<layer<<" phase1 "<<phase1<<" rawid "<<rawId<<endl;
217 
218  if (useQualityInfo & (nullptr != badPixelInfo)) {
219  short rocInDet = (short)rocp->idInDetUnit();
220  skipROC = badPixelInfo->IsRocBad(rawId, rocInDet);
221  if (skipROC)
222  continue;
223  }
224  skipROC = modulesToUnpack && (modulesToUnpack->find(rawId) == modulesToUnpack->end());
225  if (skipROC)
226  continue;
227 
228  detDigis = &digis.find_or_insert(rawId);
229  if ((*detDigis).empty())
230  (*detDigis).data.reserve(32); // avoid the first relocations
231  }
232 
233  // skip is roc to be skipped ot invalid
234  if
235  UNLIKELY(skipROC || !rocp) continue;
236 
237  int adc = (ww >> ADC_shift) & ADC_mask;
238  std::unique_ptr<LocalPixel> local;
239 
240  if (phase1 && layer == 1) { // special case for layer 1ROC
241  // for l1 roc use the roc column and row index instead of dcol and pixel index.
242  int col = (ww >> COL_shift) & COL_mask;
243  int row = (ww >> ROW_shift) & ROW_mask;
244  //if(DANEK) cout<<" layer 1: raw2digi "<<link<<" "<<roc<<" "
245  // <<col<<" "<<row<<" "<<adc<<endl;
246 
247  LocalPixel::RocRowCol localCR = {row, col}; // build pixel
248  //if(DANEK)cout<<localCR.rocCol<<" "<<localCR.rocRow<<endl;
249  if
250  UNLIKELY(!localCR.valid()) {
251  LogDebug("PixelDataFormatter::interpretRawData") << "status #3";
252  errorsInEvent = true;
253  errorcheck->conversionError(fedId, &converter, 3, ww, errors);
254  continue;
255  }
256  local = std::make_unique<LocalPixel>(localCR); // local pixel coordinate
257  //if(DANEK) cout<<local->dcol()<<" "<<local->pxid()<<" "<<local->rocCol()<<" "<<local->rocRow()<<endl;
258 
259  } else { // phase0 and phase1 except bpix layer 1
260  int dcol = (ww >> DCOL_shift) & DCOL_mask;
261  int pxid = (ww >> PXID_shift) & PXID_mask;
262  //if(DANEK) cout<<" raw2digi "<<link<<" "<<roc<<" "
263  //<<dcol<<" "<<pxid<<" "<<adc<<" "<<layer<<endl;
264 
265  LocalPixel::DcolPxid localDP = {dcol, pxid};
266  //if(DANEK) cout<<localDP.dcol<<" "<<localDP.pxid<<endl;
267 
268  if
269  UNLIKELY(!localDP.valid()) {
270  LogDebug("PixelDataFormatter::interpretRawData") << "status #3";
271  errorsInEvent = true;
272  errorcheck->conversionError(fedId, &converter, 3, ww, errors);
273  continue;
274  }
275  local = std::make_unique<LocalPixel>(localDP); // local pixel coordinate
276  //if(DANEK) cout<<local->dcol()<<" "<<local->pxid()<<" "<<local->rocCol()<<" "<<local->rocRow()<<endl;
277  }
278 
279  GlobalPixel global = rocp->toGlobal(*local); // global pixel coordinate (in module)
280  (*detDigis).data.emplace_back(global.row, global.col, adc);
281  //if(DANEK) cout<<global.row<<" "<<global.col<<" "<<adc<<endl;
282  LogTrace("") << (*detDigis).data.back();
283  }
284 }
285 
286 // I do not know what this was for or if it is needed? d.k. 10.14
287 // Keep it commented out until we are sure that it is not needed.
288 // void doVectorize(int const * __restrict__ w, int * __restrict__ row, int * __restrict__ col, int * __restrict__ valid, int N, PixelROC const * rocp) {
289 // for (int i=0; i<N; ++i) {
290 // auto ww = w[i];
291 // int dcol = (ww >> DCOL_shift) & DCOL_mask;
292 // int pxid = (ww >> PXID_shift) & PXID_mask;
293 // // int adc = (ww >> ADC_shift) & ADC_mask;
294 // LocalPixel::DcolPxid local = { dcol, pxid };
295 // valid[i] = local.valid();
296 // GlobalPixel global = rocp->toGlobal( LocalPixel(local) );
297 // row[i]=global.row; col[i]=global.col;
298 // }
299 // }
300 
301 void PixelDataFormatter::formatRawData(unsigned int lvl1_ID,
303  const Digis& digis,
304  const BadChannels& badChannels) {
305  std::map<int, vector<Word32> > words;
306 
307  // translate digis into 32-bit raw words and store in map indexed by Fed
308  for (Digis::const_iterator im = digis.begin(); im != digis.end(); im++) {
309  allDetDigis++;
310  cms_uint32_t rawId = im->first;
311  int layer = 0;
312  bool barrel = PixelModuleName::isBarrel(rawId);
313  if (barrel)
314  layer = PixelROC::bpixLayerPhase1(rawId);
315  //if(DANEK) cout<<" layer "<<layer<<" "<<phase1<<endl;
316 
317  BadChannels::const_iterator detBadChannels = badChannels.find(rawId);
318 
319  hasDetDigis++;
320  const DetDigis& detDigis = im->second;
321  for (DetDigis::const_iterator it = detDigis.begin(); it != detDigis.end(); it++) {
322  theDigiCounter++;
323  const PixelDigi& digi = (*it);
324  int fedId = 0;
325 
326  if (layer == 1 && phase1)
327  fedId = digi2wordPhase1Layer1(rawId, digi, words);
328  else
329  fedId = digi2word(rawId, digi, words);
330 
331  if (fedId < 0) {
332  LogError("FormatDataException") << " digi2word returns error #" << fedId << " Ndigis: " << theDigiCounter
333  << endl
334  << " detector: " << rawId << endl
335  << print(digi) << endl;
336  } else if (detBadChannels != badChannels.end()) {
337  auto badChannel =
338  std::find_if(detBadChannels->second.begin(), detBadChannels->second.end(), [&](const PixelFEDChannel& ch) {
339  return (int(ch.fed) == fedId && ch.link == linkId(words[fedId].back()));
340  });
341  if (badChannel != detBadChannels->second.end()) {
342  LogError("FormatDataException") << " while marked bad, found digi for FED " << fedId << " Link "
343  << linkId(words[fedId].back()) << " on module " << rawId << endl
344  << print(digi) << endl;
345  }
346  } // if (fedId)
347  } // for (DetDigis
348  } // for (Digis
349  LogTrace(" allDetDigis/hasDetDigis : ") << allDetDigis << "/" << hasDetDigis;
350 
351  // fill FED error 25 words
352  for (const auto& detBadChannels : badChannels) {
353  for (const auto& badChannel : detBadChannels.second) {
354  unsigned int FEDError25 = 25;
355  Word32 word = (badChannel.link << LINK_shift) | (FEDError25 << ROC_shift);
356  words[badChannel.fed].push_back(word);
357  theWordCounter++;
358  }
359  }
360 
361  typedef std::map<int, vector<Word32> >::const_iterator RI;
362  for (RI feddata = words.begin(); feddata != words.end(); feddata++) {
363  int fedId = feddata->first;
364  // since raw words are written in the form of 64-bit packets
365  // add extra 32-bit word to make number of words even if necessary
366  if (words.find(fedId)->second.size() % 2 != 0)
367  words[fedId].push_back(Word32(0));
368 
369  // size in Bytes; create output structure
370  int dataSize = words.find(fedId)->second.size() * sizeof(Word32);
371  int nHeaders = 1;
372  int nTrailers = 1;
373  dataSize += (nHeaders + nTrailers) * sizeof(Word64);
374  FEDRawData* rawData = new FEDRawData(dataSize);
375 
376  // get begining of data;
377  Word64* word = reinterpret_cast<Word64*>(rawData->data());
378 
379  // write one header
380  FEDHeader::set(reinterpret_cast<unsigned char*>(word), 0, lvl1_ID, 0, fedId);
381  word++;
382 
383  // write data
384  unsigned int nWord32InFed = words.find(fedId)->second.size();
385  for (unsigned int i = 0; i < nWord32InFed; i += 2) {
386  *word = (Word64(words.find(fedId)->second[i + 1]) << 32) | words.find(fedId)->second[i];
387  LogDebug("PixelDataFormatter") << print(*word);
388  word++;
389  }
390 
391  // write one trailer
392  FEDTrailer::set(reinterpret_cast<unsigned char*>(word), dataSize / sizeof(Word64), 0, 0, 0);
393  word++;
394 
395  // check memory
396  if (word != reinterpret_cast<Word64*>(rawData->data() + dataSize)) {
397  string s = "** PROBLEM in PixelDataFormatter !!!";
398  throw cms::Exception(s);
399  } // if (word !=
400  fedRawData[fedId] = *rawData;
401  delete rawData;
402  } // for (RI feddata
403 }
404 
406  const PixelDigi& digi,
407  std::map<int, vector<Word32> >& words) const {
408  LogDebug("PixelDataFormatter")
409  // <<" detId: " << detId
410  << print(digi);
411 
412  DetectorIndex detector = {detId, digi.row(), digi.column()};
413  ElectronicIndex cabling;
414  int fedId = theFrameReverter->toCabling(cabling, detector);
415  if (fedId < 0)
416  return fedId;
417 
418  //if(DANEK) cout<<" digi2raw "<<detId<<" "<<digi.column()<<" "<<digi.row()<<" "<<digi.adc()<<" "
419  // <<cabling.link<<" "<<cabling.roc<<" "<<cabling.dcol<<" "<<cabling.pxid<<endl;
420 
421  Word32 word = (cabling.link << LINK_shift) | (cabling.roc << ROC_shift) | (cabling.dcol << DCOL_shift) |
422  (cabling.pxid << PXID_shift) | (digi.adc() << ADC_shift);
423  words[fedId].push_back(word);
424  theWordCounter++;
425 
426  return fedId;
427 }
429  const PixelDigi& digi,
430  std::map<int, vector<Word32> >& words) const {
431  LogDebug("PixelDataFormatter")
432  // <<" detId: " << detId
433  << print(digi);
434 
435  DetectorIndex detector = {detId, digi.row(), digi.column()};
436  ElectronicIndex cabling;
437  int fedId = theFrameReverter->toCabling(cabling, detector);
438  if (fedId < 0)
439  return fedId;
440 
441  int col = ((cabling.dcol) * 2) + ((cabling.pxid) % 2);
442  int row = LocalPixel::numRowsInRoc - ((cabling.pxid) / 2);
443 
444  //if(DANEK) cout<<" layer 1: digi2raw "<<detId<<" "<<digi.column()<<" "<<digi.row()<<" "<<digi.adc()<<" "
445  // <<cabling.link<<" "<<cabling.roc<<" "<<cabling.dcol<<" "<<cabling.pxid<<" "
446  // <<col<<" "<<row<<endl;
447 
448  Word32 word = (cabling.link << LINK_shift) | (cabling.roc << ROC_shift) | (col << COL_shift) | (row << ROW_shift) |
449  (digi.adc() << ADC_shift);
450  words[fedId].push_back(word);
451  theWordCounter++;
452 
453  return fedId;
454 }
455 
456 // obsolete...
459  const bool includeErrors,
460  const bool useQuality,
461  const Word32& word,
462  Digis& digis) const {
463  // do not interpret false digis
464  if (word == 0)
465  return 0;
466 
467  ElectronicIndex cabling;
468  cabling.dcol = (word >> DCOL_shift) & DCOL_mask;
469  cabling.pxid = (word >> PXID_shift) & PXID_mask;
470  cabling.link = (word >> LINK_shift) & LINK_mask;
471  cabling.roc = (word >> ROC_shift) & ROC_mask;
472  int adc = (word >> ADC_shift) & ADC_mask;
473 
474  if (debug) {
475  LocalPixel::DcolPxid pixel = {cabling.dcol, cabling.pxid};
476  LocalPixel local(pixel);
477  LogTrace("") << " link: " << cabling.link << ", roc: " << cabling.roc << " rocRow: " << local.rocRow()
478  << ", rocCol:" << local.rocCol() << " (dcol: " << cabling.dcol << ", pxid:" << cabling.pxid
479  << "), adc:" << adc;
480  }
481 
482  if (!converter)
483  return 0;
484 
485  DetectorIndex detIdx;
486  int status = converter->toDetector(cabling, detIdx);
487  if (status)
488  return status;
489 
490  // exclude ROC(raw) based on bad ROC list bad in SiPixelQuality
491  // enable: process.siPixelDigis.UseQualityInfo = True
492  // 20-10-2010 A.Y.
493  if (useQuality && badPixelInfo) {
494  CablingPathToDetUnit path = {static_cast<unsigned int>(fedId),
495  static_cast<unsigned int>(cabling.link),
496  static_cast<unsigned int>(cabling.roc)};
497  const PixelROC* roc = theCablingTree->findItem(path);
498  short rocInDet = (short)roc->idInDetUnit();
499  bool badROC = badPixelInfo->IsRocBad(detIdx.rawId, rocInDet);
500  if (badROC)
501  return 0;
502  }
503 
504  if (modulesToUnpack && modulesToUnpack->find(detIdx.rawId) == modulesToUnpack->end())
505  return 0;
506 
507  digis[detIdx.rawId].emplace_back(detIdx.row, detIdx.col, adc);
508 
509  theDigiCounter++;
510 
511  if (debug)
512  LogTrace("") << digis[detIdx.rawId].back();
513  return 0;
514 }
515 
517  ostringstream str;
518  str << " DIGI: row: " << digi.row() << ", col: " << digi.column() << ", adc: " << digi.adc();
519  return str.str();
520 }
521 
523  ostringstream str;
524  str << "word64: " << reinterpret_cast<const bitset<64>&>(word);
525  return str.str();
526 }
#define LogDebug(id)
int row() const
Definition: PixelDigi.h:52
std::map< cms_uint32_t, DetDigis > Digis
void passFrameReverter(const SiPixelFrameReverter *reverter)
void formatRawData(unsigned int lvl1_ID, RawData &fedRawData, const Digis &digis, const BadChannels &badChannels)
#define nullptr
constexpr uint16_t numRowsInRoc
#define LIKELY(x)
Definition: Likely.h:20
void setErrorStatus(bool ErrorStatus)
bool IsRocBad(const uint32_t &detid, const short &rocNb) const
int digi2wordPhase1Layer1(cms_uint32_t detId, const PixelDigi &digi, std::map< int, std::vector< Word32 > > &words) const
size_t size() const
Lenght of the data buffer in bytes.
Definition: FEDRawData.h:45
identify pixel inside single ROC
Definition: LocalPixel.h:7
int toCabling(sipixelobjects::ElectronicIndex &cabling, const sipixelobjects::DetectorIndex &detector) const
reference find_or_insert(det_id_type id)
Definition: DetSetVector.h:234
global coordinates (row and column in DetUnit, as in PixelDigi)
Definition: GlobalPixel.h:6
uint64_t word
std::map< cms_uint32_t, DetBadChannels > BadChannels
static void set(unsigned char *trailer, uint32_t lenght, uint16_t crc, uint8_t evt_stat, uint8_t tts, bool moreTrailers=false)
Set all fields in the trailer.
Definition: FEDTrailer.cc:31
unsigned int idInDetUnit() const
id of this ROC in DetUnit etermined by token path
Definition: PixelROC.h:37
uint32_t rawId() const
return the DetUnit to which this ROC belongs to.
Definition: PixelROC.h:34
std::string print(const PixelDigi &digi) const
unsigned short adc() const
Definition: PixelDigi.h:60
void setQualityStatus(bool QualityStatus, const SiPixelQuality *QualityInfo)
constexpr int adc(sample_type sample)
get the ADC sample (12 bits)
const std::set< unsigned int > * modulesToUnpack
const SiPixelQuality * badPixelInfo
unsigned int cms_uint32_t
Definition: typedefs.h:15
#define LogTrace(id)
double collumn and pixel ID in double collumn representation
Definition: LocalPixel.h:19
std::map< cms_uint32_t, DetErrors > Errors
virtual bool isBarrel() const
true for barrel modules
void interpretRawData(bool &errorsInEvent, int fedId, const FEDRawData &data, Collection &digis, Errors &errors)
void setModulesToUnpack(const std::set< unsigned int > *moduleIds)
virtual const sipixelobjects::PixelROC * findItem(const sipixelobjects::CablingPathToDetUnit &) const =0
const SiPixelFrameReverter * theFrameReverter
row and collumn in ROC representation
Definition: LocalPixel.h:13
std::map< int, FEDRawData > RawData
std::vector< PixelDigi > DetDigis
int digi2word(cms_uint32_t detId, const PixelDigi &digi, std::map< int, std::vector< Word32 > > &words) const
collection_type data
Definition: DetSet.h:81
HLT enums.
std::unique_ptr< ErrorCheckerBase > errorcheck
sipixelobjects::PixelROC const * toRoc(int link, int roc) const
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
Definition: FEDRawData.cc:24
col
Definition: cuy.py:1010
cms_uint32_t linkId(cms_uint32_t word32)
int toDetector(const sipixelobjects::ElectronicIndex &cabling, sipixelobjects::DetectorIndex &detector) const
int word2digi(const int fedId, const SiPixelFrameConverter *converter, const bool includeError, const bool useQuality, const Word32 &word, Digis &digis) const
Definition: errors.py:1
static void set(unsigned char *header, uint8_t triggerType, uint32_t lvl1ID, uint16_t bxID, uint16_t sourceID, uint8_t version=0, bool moreHeaders=false)
Set all fields in the header.
Definition: FEDHeader.cc:25
#define UNLIKELY(x)
Definition: Likely.h:21
SiPixelFedCabling const * theCablingTree
int column() const
Definition: PixelDigi.h:55
#define str(s)
PixelDataFormatter(const SiPixelFedCabling *map, bool phase1=false)
#define constexpr
GlobalPixel toGlobal(const LocalPixel &loc) const
Definition: PixelROC.h:55