CMS 3D CMS Logo

CTPPSPixelDataFormatter.cc
Go to the documentation of this file.
2 
6 
8 
11 
12 #include <bitset>
13 #include <sstream>
14 #include <iostream>
15 
16 using namespace edm;
17 using namespace std;
18 
19 namespace {
20  constexpr int m_LINK_bits = 6;
21  constexpr int m_ROC_bits = 5;
22  constexpr int m_DCOL_bits = 5;
23  constexpr int m_PXID_bits = 8;
24  constexpr int m_COL_bits = 6;
25  constexpr int m_ROW_bits = 7;
26  constexpr int m_ADC_bits = 8;
27  constexpr int min_Dcol = 0;
28  constexpr int max_Dcol = 25;
29  constexpr int min_Pixid = 2;
30  constexpr int max_Pixid = 161;
31  constexpr int min_COL = 0;
32  constexpr int max_COL = 51;
33  constexpr int min_ROW = 0;
34  constexpr int max_ROW = 79;
35  constexpr int maxRocIndex = 3;
36  constexpr int maxLinkIndex = 49;
37 
38 } // namespace
39 
40 CTPPSPixelDataFormatter::CTPPSPixelDataFormatter(std::map<CTPPSPixelFramePosition, CTPPSPixelROCInfo> const& mapping)
41  : m_WordCounter(0), m_Mapping(mapping) {
42  int s32 = sizeof(Word32);
43  int s64 = sizeof(Word64);
44  int s8 = sizeof(char);
45  if (s8 != 1 || s32 != 4 * s8 || s64 != 2 * s32) {
46  LogError("UnexpectedSizes") << " unexpected sizes: "
47  << " size of char is: " << s8 << ", size of Word32 is: " << s32
48  << ", size of Word64 is: " << s64 << ", send exception";
49  }
50 
51  m_ADC_shift = 0;
52  m_PXID_shift = m_ADC_shift + m_ADC_bits;
53  m_DCOL_shift = m_PXID_shift + m_PXID_bits;
54  //Run3 shifts
55  m_ROW_shift = m_ADC_shift + m_ADC_bits;
56  m_COL_shift = m_ROW_shift + m_ROW_bits;
57 
58  m_ROC_shift = m_DCOL_shift + m_DCOL_bits;
59 
60  m_LINK_shift = m_ROC_shift + m_ROC_bits;
61  m_LINK_mask = ~(~CTPPSPixelDataFormatter::Word32(0) << m_LINK_bits);
62  m_ROC_mask = ~(~CTPPSPixelDataFormatter::Word32(0) << m_ROC_bits);
63 
64  m_DCOL_mask = ~(~CTPPSPixelDataFormatter::Word32(0) << m_DCOL_bits);
65  m_PXID_mask = ~(~CTPPSPixelDataFormatter::Word32(0) << m_PXID_bits);
66  //Run3 masks
67  m_COL_mask = ~(~CTPPSPixelDataFormatter::Word32(0) << m_COL_bits);
68  m_ROW_mask = ~(~CTPPSPixelDataFormatter::Word32(0) << m_ROW_bits);
69 
70  m_ADC_mask = ~(~CTPPSPixelDataFormatter::Word32(0) << m_ADC_bits);
71 }
72 
74  m_IncludeErrors = errorStatus;
76 }
77 
79  const bool& isRun3, bool& errorsInEvent, int fedId, const FEDRawData& rawData, Collection& digis, Errors& errors) {
80  int nWords = rawData.size() / sizeof(Word64);
81  if (nWords == 0)
82  return;
83 
85  const Word64* trailer = reinterpret_cast<const Word64*>(rawData.data()) + (nWords - 1);
86  if (!m_ErrorCheck.checkCRC(errorsInEvent, fedId, trailer, errors))
87  return;
88 
90  const Word64* header = reinterpret_cast<const Word64*>(rawData.data());
91  header--;
92  bool moreHeaders = true;
93  while (moreHeaders) {
94  header++;
95  LogTrace("") << "HEADER: " << print(*header);
96  bool headerStatus = m_ErrorCheck.checkHeader(errorsInEvent, fedId, header, errors);
97  moreHeaders = headerStatus;
98  }
99 
101  bool moreTrailers = true;
102  trailer++;
103  while (moreTrailers) {
104  trailer--;
105  LogTrace("") << "TRAILER: " << print(*trailer);
106  bool trailerStatus = m_ErrorCheck.checkTrailer(errorsInEvent, fedId, nWords, trailer, errors);
107  moreTrailers = trailerStatus;
108  }
109 
111  m_WordCounter += 2 * (nWords - 2);
112  LogTrace("") << "data words: " << (trailer - header - 1);
113 
114  int link = -1;
115  int roc = -1;
116 
117  bool skipROC = false;
118 
119  edm::DetSet<CTPPSPixelDigi>* detDigis = nullptr;
120 
121  const Word32* bw = (const Word32*)(header + 1);
122  const Word32* ew = (const Word32*)(trailer);
123  if (*(ew - 1) == 0) {
124  ew--;
125  m_WordCounter--;
126  }
127  for (auto word = bw; word < ew; ++word) {
128  LogTrace("") << "DATA: " << print(*word);
129 
130  auto ww = *word;
131  if UNLIKELY (ww == 0) {
132  m_WordCounter--;
133  continue;
134  }
135  int nlink = (ww >> m_LINK_shift) & m_LINK_mask;
136  int nroc = (ww >> m_ROC_shift) & m_ROC_mask;
137  int FMC = 0;
138  uint32_t iD = RPixErrorChecker::dummyDetId; //0xFFFFFFFF; //dummyDetId
139  int convroc = nroc - 1;
140  CTPPSPixelFramePosition fPos(fedId, FMC, nlink, convroc);
141 
142  std::map<CTPPSPixelFramePosition, CTPPSPixelROCInfo>::const_iterator mit;
143  mit = m_Mapping.find(fPos);
144 
145  if (mit == m_Mapping.end()) {
146  if (nlink >= maxLinkIndex) {
148  } else if ((nroc - 1) >= maxRocIndex) {
150  } else {
152  }
153  continue; //skip word
154  }
155 
156  CTPPSPixelROCInfo rocInfo = (*mit).second;
157  iD = rocInfo.iD;
158  CTPPSPixelROC rocp(iD, rocInfo.roc, convroc);
159 
160  if ((nlink != link) | (nroc != roc)) { // new roc
161  link = nlink;
162  roc = nroc;
163 
164  skipROC = LIKELY((roc - 1) < maxRocIndex) ? false : !m_ErrorCheck.checkROC(errorsInEvent, fedId, iD, ww, errors);
165  if (skipROC)
166  continue;
167 
168  auto rawId = rocp.rawId();
169 
170  detDigis = &digis.find_or_insert(rawId);
171  if ((*detDigis).empty())
172  (*detDigis).data.reserve(32); // avoid the first relocations
173  }
174 
175  int adc = (ww >> m_ADC_shift) & m_ADC_mask;
176 
177  int dcol = (ww >> m_DCOL_shift) & m_DCOL_mask;
178  int pxid = (ww >> m_PXID_shift) & m_PXID_mask;
179  int col = (ww >> m_COL_shift) & m_COL_mask;
180  int row = (ww >> m_ROW_shift) & m_ROW_mask;
181 
182  if (!isRun3 && (dcol < min_Dcol || dcol > max_Dcol || pxid < min_Pixid || pxid > max_Pixid)) {
183  edm::LogError("CTPPSPixelDataFormatter")
184  << " unphysical dcol and/or pxid "
185  << " nllink=" << nlink << " nroc=" << nroc << " adc=" << adc << " dcol=" << dcol << " pxid=" << pxid;
186 
188 
189  continue;
190  }
191  if (isRun3 && (col < min_COL || col > max_COL || row < min_ROW || row > max_ROW)) {
192  edm::LogError("CTPPSPixelDataFormatter")
193  << " unphysical col and/or row "
194  << " nllink=" << nlink << " nroc=" << nroc << " adc=" << adc << " col=" << col << " row=" << row;
195 
197 
198  continue;
199  }
200 
201  std::pair<int, int> rocPixel;
202  std::pair<int, int> modPixel;
203 
204  if (isRun3) {
205  rocPixel = std::make_pair(row, col);
206  modPixel = rocp.toGlobal(rocPixel);
207  } else {
208  rocPixel = std::make_pair(dcol, pxid);
209  modPixel = rocp.toGlobalfromDcol(rocPixel);
210  }
211 
212  CTPPSPixelDigi testdigi(modPixel.first, modPixel.second, adc);
213 
214  if (detDigis)
215  (*detDigis).data.emplace_back(modPixel.first, modPixel.second, adc);
216  }
217 }
218 
220  unsigned int lvl1_ID,
222  const Digis& digis,
223  std::vector<PPSPixelIndex> iDdet2fed) {
224  std::map<int, vector<Word32> > words;
225  // translate digis into 32-bit raw words and store in map indexed by Fed
226  m_allDetDigis = 0;
227  m_hasDetDigis = 0;
228  for (auto const& im : digis) {
229  m_allDetDigis++;
230  cms_uint32_t rawId = im.first;
231 
232  const DetDigis& detDigis = im.second;
233  for (auto const& it : detDigis) {
234  int nroc = 999, nlink = 999;
235  int rocPixelRow = -1, rocPixelColumn = -1, rocID = -1;
236  int modulePixelColumn = it.column();
237  int modulePixelRow = it.row();
238 
239  m_Indices.transformToROC(modulePixelColumn, modulePixelRow, rocID, rocPixelColumn, rocPixelRow);
240  const int dcol = m_Indices.DColumn(rocPixelColumn);
241  const int pxid = 2 * (ROCSizeInX - rocPixelRow) + (rocPixelColumn % 2);
242 
243  unsigned int urocID = rocID;
244  PPSPixelIndex myTest = {rawId, urocID, 0, 0, 0};
245  // the range has always at most one element
246  auto range = std::equal_range(iDdet2fed.begin(), iDdet2fed.end(), myTest, compare);
247  if (range.first != range.second) {
248  auto i = range.first - iDdet2fed.begin();
249  nlink = iDdet2fed.at(i).fedch;
250  nroc = iDdet2fed.at(i).rocch + 1;
251 
252  pps::pixel::ElectronicIndex cabling = {nlink, nroc, dcol, pxid};
253  if (isRun3) {
254  cms_uint32_t word = (cabling.link << m_LINK_shift) | (cabling.roc << m_ROC_shift) |
255  (rocPixelColumn << m_COL_shift) | (rocPixelRow << m_ROW_shift) |
256  (it.adc() << m_ADC_shift);
257 
258  words[iDdet2fed.at(i).fedid].push_back(word);
259  } else {
260  cms_uint32_t word = (cabling.link << m_LINK_shift) | (cabling.roc << m_ROC_shift) |
261  (cabling.dcol << m_DCOL_shift) | (cabling.pxid << m_PXID_shift) |
262  (it.adc() << m_ADC_shift);
263 
264  words[iDdet2fed.at(i).fedid].push_back(word);
265  }
266  m_WordCounter++;
267  m_hasDetDigis++;
268 
269  } // range
270  } // for DetDigis
271  } // for Digis
272 
273  LogTrace(" allDetDigis/hasDetDigis : ") << m_allDetDigis << "/" << m_hasDetDigis;
274  for (auto const& feddata : words) {
275  int fedId = feddata.first;
276 
277  // since raw words are written in the form of 64-bit packets
278  // add extra 32-bit word to make number of words even if necessary
279  if (words.find(fedId)->second.size() % 2 != 0)
280  words[fedId].emplace_back(0);
281 
282  // size in Bytes; create output structure
283  size_t dataSize = words.find(fedId)->second.size() * sizeof(Word32);
284  int nHeaders = 1;
285  int nTrailers = 1;
286  dataSize += (nHeaders + nTrailers) * sizeof(Word64);
287 
288  FEDRawData rawData{dataSize};
289 
290  // get begining of data;
291  Word64* word = reinterpret_cast<Word64*>(rawData.data());
292 
293  // write one header
294  FEDHeader::set(reinterpret_cast<unsigned char*>(word), 0, lvl1_ID, 0, fedId);
295  word++;
296 
297  // write data
298  unsigned int nWord32InFed = words.find(fedId)->second.size();
299  for (unsigned int i = 0; i < nWord32InFed; i += 2) {
300  *word = (Word64(words.find(fedId)->second[i]) << 32) | words.find(fedId)->second[i + 1];
301  LogDebug("CTPPSPixelDataFormatter") << print(*word);
302  word++;
303  }
304 
305  // write one trailer
306  FEDTrailer::set(reinterpret_cast<unsigned char*>(word), dataSize / sizeof(Word64), 0, 0, 0);
307  word++;
308 
309  // check memory
310  if (word != reinterpret_cast<Word64*>(rawData.data() + dataSize)) {
311  //if (word != reinterpret_cast<Word64* >(rawData->data()+dataSize)) {
312  string s = "** PROBLEM in CTPPSPixelDataFormatter !!!";
313  LogError("CTPPSPixelDataFormatter") << "** PROBLEM in CTPPSPixelDataFormatter!!!";
314  throw cms::Exception(s);
315  } // if (word !=
317  } // for (RI feddata
318 }
319 
321  std::ostringstream str;
322  str << "word64: " << reinterpret_cast<const std::bitset<64>&>(word);
323  return str.str();
324 }
void setErrorStatus(bool theErrorStatus)
void interpretRawData(const bool &isRun3, bool &errorsInEvent, int fedId, const FEDRawData &data, Collection &digis, Errors &errors)
Contains mappind data related to a ROC.
bool checkHeader(bool &errorsInEvent, int fedId, const Word64 *header, Errors &errors) const
bool checkCRC(bool &errorsInEvent, int fedId, const Word64 *trailer, Errors &errors) const
std::string print(const Word64 &word) const
std::map< uint32_t, DetErrors > Errors
bool checkTrailer(bool &errorsInEvent, int fedId, unsigned int nWords, const Word64 *trailer, Errors &errors) const
std::unordered_map< int, FEDRawData > RawData
#define LIKELY(x)
Definition: Likely.h:20
static bool compare(const PPSPixelIndex &a, const PPSPixelIndex &b)
const std::map< CTPPSPixelFramePosition, CTPPSPixelROCInfo > & m_Mapping
Log< level::Error, false > LogError
bool checkROC(bool &errorsInEvent, int fedId, uint32_t iD, const Word32 &errorWord, Errors &errors) const
#define LogTrace(id)
reference find_or_insert(det_id_type id)
Definition: DetSetVector.h:234
uint32_t iD
the symbolic id
uint64_t word
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
std::unordered_map< cms_uint32_t, DetDigis > Digis
int transformToROC(const int col, const int row, int &rocId, int &colROC, int &rowROC) const
uint32_t rawId() const
return the DetUnit to which this ROC belongs to.
Definition: CTPPSPixelROC.h:30
unsigned int cms_uint32_t
Definition: typedefs.h:15
void formatRawData(const bool &isRun3, unsigned int lvl1_ID, RawData &fedRawData, const Digis &digis, std::vector< PPSPixelIndex > v_iDdet2fed)
void setErrorStatus(bool errorStatus)
std::vector< CTPPSPixelDigi > DetDigis
void conversionError(int fedId, uint32_t iD, const State &state, const Word32 &errorWord, Errors &errors) const
static constexpr Word32 dummyDetId
collection_type data
Definition: DetSet.h:80
HLT enums.
col
Definition: cuy.py:1009
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
std::pair< int, int > toGlobalfromDcol(const std::pair< int, int > &rocPixel) const
Definition: CTPPSPixelROC.h:65
#define str(s)
static int DColumn(const int colROC)
uint16_t *__restrict__ uint16_t const *__restrict__ adc
#define LogDebug(id)
CTPPSPixelDataFormatter(std::map< CTPPSPixelFramePosition, CTPPSPixelROCInfo > const &mapping)
std::pair< int, int > toGlobal(const std::pair< int, int > &rocPixel) const
Definition: CTPPSPixelROC.h:51