CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Member Functions | Private Attributes
PixelDataFormatter Class Reference

#include <PixelDataFormatter.h>

Public Types

typedef edm::DetSetVector< PixelDigiCollection
 
typedef std::vector< PixelDigiDetDigis
 
typedef std::vector< SiPixelRawDataErrorDetErrors
 
typedef std::map< cms_uint32_t, DetDigisDigis
 
typedef std::map< cms_uint32_t, DetErrorsErrors
 
typedef std::pair< DetDigis::const_iterator, DetDigis::const_iterator > Range
 
typedef std::map< int, FEDRawDataRawData
 
typedef cms_uint32_t Word32
 
typedef cms_uint64_t Word64
 

Public Member Functions

void formatRawData (unsigned int lvl1_ID, RawData &fedRawData, const Digis &digis)
 
void interpretRawData (bool &errorsInEvent, int fedId, const FEDRawData &data, Collection &digis, Errors &errors)
 
int nDigis () const
 
int nWords () const
 
void passFrameReverter (const SiPixelFrameReverter *reverter)
 
 PixelDataFormatter (const SiPixelFedCabling *map, bool phase1=false)
 
void setErrorStatus (bool ErrorStatus)
 
void setModulesToUnpack (const std::set< unsigned int > *moduleIds)
 
void setQualityStatus (bool QualityStatus, const SiPixelQuality *QualityInfo)
 

Private Member Functions

int checkError (const Word32 &data) const
 
int digi2word (cms_uint32_t detId, const PixelDigi &digi, std::map< int, std::vector< Word32 > > &words) const
 
int digi2wordPhase1Layer1 (cms_uint32_t detId, const PixelDigi &digi, std::map< int, std::vector< Word32 > > &words) const
 
cms_uint32_t errorDetId (const SiPixelFrameConverter *converter, int fedId, int errorType, const Word32 &word) const
 
std::string print (const PixelDigi &digi) const
 
std::string print (const Word64 &word) const
 
int word2digi (const int fedId, const SiPixelFrameConverter *converter, const bool includeError, const bool useQuality, const Word32 &word, Digis &digis) const
 

Private Attributes

Word32 ADC_mask
 
int ADC_shift
 
int allDetDigis
 
const SiPixelQualitybadPixelInfo
 
Word32 COL_mask
 
int COL_shift
 
Word32 DCOL_mask
 
int DCOL_shift
 
bool debug
 
ErrorChecker errorcheck
 
int hasDetDigis
 
bool includeErrors
 
Word32 LINK_mask
 
int LINK_shift
 
int maxROCIndex
 
const std::set< unsigned int > * modulesToUnpack
 
bool phase1
 
Word32 PXID_mask
 
int PXID_shift
 
Word32 ROC_mask
 
int ROC_shift
 
Word32 ROW_mask
 
int ROW_shift
 
SiPixelFedCabling const * theCablingTree
 
int theDigiCounter
 
const SiPixelFrameRevertertheFrameReverter
 
int theWordCounter
 
bool useQualityInfo
 

Detailed Description

Transforms Pixel raw data of a given FED to orca digi and vice versa.

FED OUTPUT DATA FORMAT 6/02, d.k. (11/02 updated for 100*150 pixels)

The output is transmitted through a 64 bit S-link connection. The packet format is defined by the CMS RU group to be : 1st packet header, 64 bits, includes a 6 bit FED id. 2nd packet header, 64 bits. .......................... (detector data) packet trailer, 64 bits. of the 64 bit pixel data records consists of 2 32 bit words. Each 32 bit word includes data from 1 pixel, the bit fields are the following:

6 bit link ID (max 36) - this defines the input link within 1 FED. 5 bit ROC ID (max 24) - this defines the readout chip within one link. 5 bit DCOL ID (max 26) - this defines the double column index with 1 chip. 8 bit pixel ID (max 180) - this defines the pixel address within 1 DCOL. 8 bit ADC vales - this has the charge amplitude.

So, 1 pixel occupies 4 bytes. If the number of pixels is odd, one extra 32 bit word is added (value 0) to fill all 64 bits.

The PixelDataFormatter interpret/format ONLY detector data words (not FED headers or trailer, which are treated elsewhere).

Definition at line 55 of file PixelDataFormatter.h.

Member Typedef Documentation

Definition at line 59 of file PixelDataFormatter.h.

Definition at line 62 of file PixelDataFormatter.h.

Definition at line 65 of file PixelDataFormatter.h.

Definition at line 63 of file PixelDataFormatter.h.

Definition at line 66 of file PixelDataFormatter.h.

typedef std::pair<DetDigis::const_iterator, DetDigis::const_iterator> PixelDataFormatter::Range

Definition at line 64 of file PixelDataFormatter.h.

typedef std::map<int, FEDRawData> PixelDataFormatter::RawData

Definition at line 61 of file PixelDataFormatter.h.

Definition at line 68 of file PixelDataFormatter.h.

Definition at line 69 of file PixelDataFormatter.h.

Constructor & Destructor Documentation

PixelDataFormatter::PixelDataFormatter ( const SiPixelFedCabling map,
bool  phase1 = false 
)

Definition at line 57 of file PixelDataFormatter.cc.

References ADC_mask, ADC_shift, allDetDigis, COL_mask, COL_shift, DCOL_mask, DCOL_shift, hasDetDigis, includeErrors, LINK_mask, LINK_shift, maxROCIndex, phase1, PXID_mask, PXID_shift, ROC_mask, ROC_shift, ROW_mask, ROW_shift, and useQualityInfo.

59 {
60  int s32 = sizeof(Word32);
61  int s64 = sizeof(Word64);
62  int s8 = sizeof(char);
63  if ( s8 != 1 || s32 != 4*s8 || s64 != 2*s32) {
64  LogError("UnexpectedSizes")
65  <<" unexpected sizes: "
66  <<" size of char is: " << s8
67  <<", size of Word32 is: " << s32
68  <<", size of Word64 is: " << s64
69  <<", send exception" ;
70  }
71  includeErrors = false;
72  useQualityInfo = false;
73  allDetDigis = 0;
74  hasDetDigis = 0;
75 
76  ADC_shift = 0;
77  PXID_shift = ADC_shift + ADC_bits;
78  DCOL_shift = PXID_shift + PXID_bits;
79  ROC_shift = DCOL_shift + DCOL_bits;
80 
81  if(phase1) { // for phase 1
82  LINK_shift = ROC_shift + ROC_bits1;
83  LINK_mask = ~(~PixelDataFormatter::Word32(0) << LINK_bits1);
84  ROC_mask = ~(~PixelDataFormatter::Word32(0) << ROC_bits1);
85  // special for layer 1 ROC
86  ROW_shift = ADC_shift + ADC_bits;
87  COL_shift = ROW_shift + ROW_bits1_l1;
88  COL_mask = ~(~PixelDataFormatter::Word32(0) << COL_bits1_l1);
89  ROW_mask = ~(~PixelDataFormatter::Word32(0) << ROW_bits1_l1);
90  maxROCIndex=8;
91 
92  } else { // for phase 0
93  LINK_shift = ROC_shift + ROC_bits;
94  LINK_mask = ~(~PixelDataFormatter::Word32(0) << LINK_bits);
95  ROC_mask = ~(~PixelDataFormatter::Word32(0) << ROC_bits);
96  maxROCIndex=25;
97  }
98 
99  DCOL_mask = ~(~PixelDataFormatter::Word32(0) << DCOL_bits);
100  PXID_mask = ~(~PixelDataFormatter::Word32(0) << PXID_bits);
101  ADC_mask = ~(~PixelDataFormatter::Word32(0) << ADC_bits);
102 
103 }
const std::set< unsigned int > * modulesToUnpack
const SiPixelQuality * badPixelInfo
SiPixelFedCabling const * theCablingTree

Member Function Documentation

int PixelDataFormatter::checkError ( const Word32 data) const
private
int PixelDataFormatter::digi2word ( cms_uint32_t  detId,
const PixelDigi digi,
std::map< int, std::vector< Word32 > > &  words 
) const
private

Definition at line 361 of file PixelDataFormatter.cc.

References PixelDigi::adc(), ADC_shift, PixelDigi::column(), sipixelobjects::ElectronicIndex::dcol, DCOL_shift, gamEcalExtractorBlocks_cff::detector, l1t::stage2::layer2::fedId, sipixelobjects::ElectronicIndex::link, LINK_shift, LogDebug, print(), sipixelobjects::ElectronicIndex::pxid, PXID_shift, sipixelobjects::ElectronicIndex::roc, ROC_shift, PixelDigi::row(), theFrameReverter, theWordCounter, and SiPixelFrameReverter::toCabling().

Referenced by formatRawData().

363 {
364  LogDebug("PixelDataFormatter")
365 // <<" detId: " << detId
366  <<print(digi);
367 
368  DetectorIndex detector = {detId, digi.row(), digi.column()};
369  ElectronicIndex cabling;
370  int fedId = theFrameReverter->toCabling(cabling, detector);
371  if (fedId<0) return fedId;
372 
373  //if(DANEK) cout<<" digi2raw "<<detId<<" "<<digi.column()<<" "<<digi.row()<<" "<<digi.adc()<<" "
374  // <<cabling.link<<" "<<cabling.roc<<" "<<cabling.dcol<<" "<<cabling.pxid<<endl;
375 
376  Word32 word =
377  (cabling.link << LINK_shift)
378  | (cabling.roc << ROC_shift)
379  | (cabling.dcol << DCOL_shift)
380  | (cabling.pxid << PXID_shift)
381  | (digi.adc() << ADC_shift);
382  words[fedId].push_back(word);
383  theWordCounter++;
384 
385  return 0;
386 }
#define LogDebug(id)
int row() const
Definition: PixelDigi.h:56
int toCabling(sipixelobjects::ElectronicIndex &cabling, const sipixelobjects::DetectorIndex &detector) const
std::string print(const PixelDigi &digi) const
unsigned short adc() const
Definition: PixelDigi.h:59
const SiPixelFrameReverter * theFrameReverter
int column() const
Definition: PixelDigi.h:57
int PixelDataFormatter::digi2wordPhase1Layer1 ( cms_uint32_t  detId,
const PixelDigi digi,
std::map< int, std::vector< Word32 > > &  words 
) const
private

Definition at line 387 of file PixelDataFormatter.cc.

References PixelDigi::adc(), ADC_shift, cuy::col, COL_shift, PixelDigi::column(), sipixelobjects::ElectronicIndex::dcol, gamEcalExtractorBlocks_cff::detector, l1t::stage2::layer2::fedId, sipixelobjects::ElectronicIndex::link, LINK_shift, LogDebug, print(), sipixelobjects::ElectronicIndex::pxid, sipixelobjects::ElectronicIndex::roc, ROC_shift, PixelDigi::row(), ROW_shift, theFrameReverter, theWordCounter, and SiPixelFrameReverter::toCabling().

Referenced by formatRawData().

389 {
390  LogDebug("PixelDataFormatter")
391 // <<" detId: " << detId
392  <<print(digi);
393 
394  DetectorIndex detector = {detId, digi.row(), digi.column()};
395  ElectronicIndex cabling;
396  int fedId = theFrameReverter->toCabling(cabling, detector);
397  if (fedId<0) return fedId;
398 
399  int col = ((cabling.dcol)*2) + ((cabling.pxid)%2);
400  int row = LocalPixel::numRowsInRoc - ((cabling.pxid)/2);
401 
402  //if(DANEK) cout<<" layer 1: digi2raw "<<detId<<" "<<digi.column()<<" "<<digi.row()<<" "<<digi.adc()<<" "
403  // <<cabling.link<<" "<<cabling.roc<<" "<<cabling.dcol<<" "<<cabling.pxid<<" "
404  // <<col<<" "<<row<<endl;
405 
406  Word32 word =
407  (cabling.link << LINK_shift)
408  | (cabling.roc << ROC_shift)
409  | (col << COL_shift)
410  | (row << ROW_shift)
411  | (digi.adc() << ADC_shift);
412  words[fedId].push_back(word);
413  theWordCounter++;
414 
415  return 0;
416 }
#define LogDebug(id)
int row() const
Definition: PixelDigi.h:56
int toCabling(sipixelobjects::ElectronicIndex &cabling, const sipixelobjects::DetectorIndex &detector) const
std::string print(const PixelDigi &digi) const
unsigned short adc() const
Definition: PixelDigi.h:59
const SiPixelFrameReverter * theFrameReverter
col
Definition: cuy.py:1008
int column() const
Definition: PixelDigi.h:57
cms_uint32_t PixelDataFormatter::errorDetId ( const SiPixelFrameConverter converter,
int  fedId,
int  errorType,
const Word32 word 
) const
private
void PixelDataFormatter::formatRawData ( unsigned int  lvl1_ID,
RawData fedRawData,
const Digis digis 
)

Definition at line 284 of file PixelDataFormatter.cc.

References allDetDigis, Reference_intrackfit_cff::barrel, FEDRawData::data(), digi2word(), digi2wordPhase1Layer1(), Exception, l1t::stage2::layer2::fedId, hasDetDigis, mps_fire::i, PixelModuleName::isBarrel(), LogDebug, LogTrace, phase1, print(), alignCSCRings::s, FEDTrailer::set(), FEDHeader::set(), mps_update::status, and theDigiCounter.

Referenced by nWords().

285 {
286  std::map<int, vector<Word32> > words;
287 
288  // translate digis into 32-bit raw words and store in map indexed by Fed
289  for (Digis::const_iterator im = digis.begin(); im != digis.end(); im++) {
290  allDetDigis++;
291  cms_uint32_t rawId = im->first;
292  int layer=0;
293  bool barrel = PixelModuleName::isBarrel(rawId);
294  if(barrel) layer = PixelROC::bpixLayerPhase1(rawId);
295  //if(DANEK) cout<<" layer "<<layer<<" "<<phase1<<endl;
296 
297  hasDetDigis++;
298  const DetDigis & detDigis = im->second;
299  for (DetDigis::const_iterator it = detDigis.begin(); it != detDigis.end(); it++) {
300  theDigiCounter++;
301  const PixelDigi & digi = (*it);
302  int status=0;
303 
304  if(layer==1 && phase1) status = digi2wordPhase1Layer1( rawId, digi, words);
305  else status = digi2word( rawId, digi, words);
306 
307  if (status) {
308  LogError("FormatDataException")
309  <<" digi2word returns error #"<<status
310  <<" Ndigis: "<<theDigiCounter << endl
311  <<" detector: "<<rawId<< endl
312  << print(digi) <<endl;
313  } // if (status)
314  } // for (DetDigis
315  } // for (Digis
316  LogTrace(" allDetDigis/hasDetDigis : ") << allDetDigis<<"/"<<hasDetDigis;
317 
318  typedef std::map<int, vector<Word32> >::const_iterator RI;
319  for (RI feddata = words.begin(); feddata != words.end(); feddata++) {
320  int fedId = feddata->first;
321  // since raw words are written in the form of 64-bit packets
322  // add extra 32-bit word to make number of words even if necessary
323  if (words.find(fedId)->second.size() %2 != 0) words[fedId].push_back( Word32(0) );
324 
325  // size in Bytes; create output structure
326  int dataSize = words.find(fedId)->second.size() * sizeof(Word32);
327  int nHeaders = 1;
328  int nTrailers = 1;
329  dataSize += (nHeaders+nTrailers)*sizeof(Word64);
330  FEDRawData * rawData = new FEDRawData(dataSize);
331 
332  // get begining of data;
333  Word64 * word = reinterpret_cast<Word64* >(rawData->data());
334 
335  // write one header
336  FEDHeader::set( reinterpret_cast<unsigned char*>(word), 0, lvl1_ID, 0, fedId);
337  word++;
338 
339  // write data
340  unsigned int nWord32InFed = words.find(fedId)->second.size();
341  for (unsigned int i=0; i < nWord32InFed; i+=2) {
342  *word = (Word64(words.find(fedId)->second[i]) << 32 ) | words.find(fedId)->second[i+1];
343  LogDebug("PixelDataFormatter") << print(*word);
344  word++;
345  }
346 
347  // write one trailer
348  FEDTrailer::set( reinterpret_cast<unsigned char*>(word), dataSize/sizeof(Word64), 0,0,0);
349  word++;
350 
351  // check memory
352  if (word != reinterpret_cast<Word64* >(rawData->data()+dataSize)) {
353  string s = "** PROBLEM in PixelDataFormatter !!!";
354  throw cms::Exception(s);
355  } // if (word !=
356  fedRawData[fedId] = *rawData;
357  delete rawData;
358  } // for (RI feddata
359 }
#define LogDebug(id)
int digi2wordPhase1Layer1(cms_uint32_t detId, const PixelDigi &digi, std::map< int, std::vector< Word32 > > &words) const
static void set(unsigned char *trailer, int evt_lgth, int crc, int evt_stat, int tts, bool T=false)
Set all fields in the trailer.
Definition: FEDTrailer.cc:42
static void set(unsigned char *header, int evt_ty, int lvl1_ID, int bx_ID, int source_ID, int version=0, bool H=false)
Set all fields in the header.
Definition: FEDHeader.cc:40
std::string print(const PixelDigi &digi) const
uint64_t Word64
unsigned int cms_uint32_t
Definition: typedefs.h:15
#define LogTrace(id)
virtual bool isBarrel() const
true for barrel modules
std::vector< PixelDigi > DetDigis
int digi2word(cms_uint32_t detId, const PixelDigi &digi, std::map< int, std::vector< Word32 > > &words) const
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
Definition: FEDRawData.cc:28
void PixelDataFormatter::interpretRawData ( bool &  errorsInEvent,
int  fedId,
const FEDRawData data,
Collection digis,
Errors errors 
)

Definition at line 127 of file PixelDataFormatter.cc.

References ecalMGPA::adc(), ADC_mask, ADC_shift, badPixelInfo, Reference_intrackfit_cff::barrel, ErrorChecker::checkCRC(), ErrorChecker::checkHeader(), ErrorChecker::checkROC(), ErrorChecker::checkTrailer(), cuy::col, COL_mask, COL_shift, ErrorChecker::conversionError(), FEDRawData::data(), edm::DetSet< T >::data, DCOL_mask, DCOL_shift, errorcheck, edm::DetSetVector< T >::find_or_insert(), RecoTauValidation_cfi::header, sipixelobjects::PixelROC::idInDetUnit(), PixelModuleName::isBarrel(), SiPixelQuality::IsRocBad(), likely, LINK_mask, LINK_shift, DTRecHitQuality_cfi::local, LogDebug, LogTrace, maxROCIndex, modulesToUnpack, nWords(), phase1, print(), PXID_mask, PXID_shift, sipixelobjects::PixelROC::rawId(), ROC_mask, ROC_shift, ROW_mask, ROW_shift, FEDRawData::size(), theCablingTree, theWordCounter, sipixelobjects::PixelROC::toGlobal(), SiPixelFrameConverter::toRoc(), unlikely, useQualityInfo, sipixelobjects::LocalPixel::RocRowCol::valid(), and sipixelobjects::LocalPixel::DcolPxid::valid().

Referenced by nWords().

128 {
129  using namespace sipixelobjects;
130 
131  int nWords = rawData.size()/sizeof(Word64);
132  if (nWords==0) return;
133 
135 
136  // check CRC bit
137  const Word64* trailer = reinterpret_cast<const Word64* >(rawData.data())+(nWords-1);
138  if(!errorcheck.checkCRC(errorsInEvent, fedId, trailer, errors)) return;
139 
140  // check headers
141  const Word64* header = reinterpret_cast<const Word64* >(rawData.data()); header--;
142  bool moreHeaders = true;
143  while (moreHeaders) {
144  header++;
145  LogTrace("")<<"HEADER: " << print(*header);
146  bool headerStatus = errorcheck.checkHeader(errorsInEvent, fedId, header, errors);
147  moreHeaders = headerStatus;
148  }
149 
150  // check trailers
151  bool moreTrailers = true;
152  trailer++;
153  while (moreTrailers) {
154  trailer--;
155  LogTrace("")<<"TRAILER: " << print(*trailer);
156  bool trailerStatus = errorcheck.checkTrailer(errorsInEvent, fedId, nWords, trailer, errors);
157  moreTrailers = trailerStatus;
158  }
159 
160  // data words
161  theWordCounter += 2*(nWords-2);
162  LogTrace("")<<"data words: "<< (trailer-header-1);
163 
164  int link = -1;
165  int roc = -1;
166  int layer = 0;
167  PixelROC const * rocp=nullptr;
168  bool skipROC=false;
169  edm::DetSet<PixelDigi> * detDigis=nullptr;
170 
171  const Word32 * bw =(const Word32 *)(header+1);
172  const Word32 * ew =(const Word32 *)(trailer);
173  if ( *(ew-1) == 0 ) { ew--; theWordCounter--;}
174  for (auto word = bw; word < ew; ++word) {
175  LogTrace("")<<"DATA: " << print(*word);
176 
177  auto ww = *word;
178  if unlikely(ww==0) { theWordCounter--; continue;}
179  int nlink = (ww >> LINK_shift) & LINK_mask;
180  int nroc = (ww >> ROC_shift) & ROC_mask;
181 
182  //if(DANEK) cout<<" fed, link, roc "<<fedId<<" "<<nlink<<" "<<nroc<<endl;
183 
184  if ( (nlink!=link) | (nroc!=roc) ) { // new roc
185  link = nlink; roc=nroc;
186  skipROC = likely(roc<maxROCIndex) ? false : !errorcheck.checkROC(errorsInEvent, fedId, &converter, ww, errors);
187  if (skipROC) continue;
188  rocp = converter.toRoc(link,roc);
189  if unlikely(!rocp) {
190  errorsInEvent = true;
192  skipROC=true;
193  continue;
194  }
195  auto rawId = rocp->rawId();
196  bool barrel = PixelModuleName::isBarrel(rawId);
197  if(barrel) layer = PixelROC::bpixLayerPhase1(rawId);
198  else layer=0;
199 
200  //if(DANEK) cout<<" rocp "<<rocp->print()<<" layer "<<rocp->bpixLayerPhase1(rawId)<<" "
201  // <<layer<<" phase1 "<<phase1<<" rawid "<<rawId<<endl;
202 
203  if (useQualityInfo&(nullptr!=badPixelInfo)) {
204  short rocInDet = (short) rocp->idInDetUnit();
205  skipROC = badPixelInfo->IsRocBad(rawId, rocInDet);
206  if (skipROC) continue;
207  }
208  skipROC= modulesToUnpack && ( modulesToUnpack->find(rawId) == modulesToUnpack->end());
209  if (skipROC) continue;
210 
211  detDigis = &digis.find_or_insert(rawId);
212  if ( (*detDigis).empty() ) (*detDigis).data.reserve(32); // avoid the first relocations
213  }
214 
215  // skip is roc to be skipped ot invalid
216  if unlikely(skipROC || !rocp) continue;
217 
218  int adc = (ww >> ADC_shift) & ADC_mask;
219  std::unique_ptr<LocalPixel> local;
220 
221  if(phase1 && layer==1) { // special case for layer 1ROC
222  // for l1 roc use the roc column and row index instead of dcol and pixel index.
223  int col = (ww >> COL_shift) & COL_mask;
224  int row = (ww >> ROW_shift) & ROW_mask;
225  //if(DANEK) cout<<" layer 1: raw2digi "<<link<<" "<<roc<<" "
226  // <<col<<" "<<row<<" "<<adc<<endl;
227 
228  LocalPixel::RocRowCol localCR = { row, col }; // build pixel
229  //if(DANEK)cout<<localCR.rocCol<<" "<<localCR.rocRow<<endl;
230  if unlikely(!localCR.valid()) {
231  LogDebug("PixelDataFormatter::interpretRawData")
232  << "status #3";
233  errorsInEvent = true;
235  continue;
236  }
237  local = std::make_unique<LocalPixel>(localCR); // local pixel coordinate
238  //if(DANEK) cout<<local->dcol()<<" "<<local->pxid()<<" "<<local->rocCol()<<" "<<local->rocRow()<<endl;
239 
240  } else { // phase0 and phase1 except bpix layer 1
241  int dcol = (ww >> DCOL_shift) & DCOL_mask;
242  int pxid = (ww >> PXID_shift) & PXID_mask;
243  //if(DANEK) cout<<" raw2digi "<<link<<" "<<roc<<" "
244  //<<dcol<<" "<<pxid<<" "<<adc<<" "<<layer<<endl;
245 
246  LocalPixel::DcolPxid localDP = { dcol, pxid };
247  //if(DANEK) cout<<localDP.dcol<<" "<<localDP.pxid<<endl;
248 
249  if unlikely(!localDP.valid()) {
250  LogDebug("PixelDataFormatter::interpretRawData")
251  << "status #3";
252  errorsInEvent = true;
254  continue;
255  }
256  local = std::make_unique<LocalPixel>(localDP); // local pixel coordinate
257  //if(DANEK) cout<<local->dcol()<<" "<<local->pxid()<<" "<<local->rocCol()<<" "<<local->rocRow()<<endl;
258  }
259 
260  GlobalPixel global = rocp->toGlobal( *local ); // global pixel coordinate (in module)
261  (*detDigis).data.emplace_back(global.row, global.col, adc);
262  //if(DANEK) cout<<global.row<<" "<<global.col<<" "<<adc<<endl;
263  LogTrace("") << (*detDigis).data.back();
264  }
265 
266 }
#define LogDebug(id)
int adc(sample_type sample)
get the ADC sample (12 bits)
bool checkTrailer(bool &errorsInEvent, int fedId, int nWords, const Word64 *trailer, Errors &errors)
Definition: ErrorChecker.cc:87
bool IsRocBad(const uint32_t &detid, const short &rocNb) const
identify pixel inside single ROC
Definition: LocalPixel.h:7
bool checkROC(bool &errorsInEvent, int fedId, const SiPixelFrameConverter *converter, Word32 &errorWord, Errors &errors)
global coordinates (row and column in DetUnit, as in PixelDigi)
Definition: GlobalPixel.h:6
#define unlikely(x)
#define likely(x)
bool checkCRC(bool &errorsInEvent, int fedId, const Word64 *trailer, Errors &errors)
Definition: ErrorChecker.cc:56
unsigned int idInDetUnit() const
id of this ROC in DetUnit etermined by token path
Definition: PixelROC.h:40
uint32_t rawId() const
return the DetUnit to which this ROC belongs to.
Definition: PixelROC.h:37
std::string print(const PixelDigi &digi) const
uint64_t Word64
const std::set< unsigned int > * modulesToUnpack
const SiPixelQuality * badPixelInfo
#define LogTrace(id)
double collumn and pixel ID in double collumn representation
Definition: LocalPixel.h:22
virtual bool isBarrel() const
true for barrel modules
void conversionError(int fedId, const SiPixelFrameConverter *converter, int status, Word32 &errorWord, Errors &errors)
row and collumn in ROC representation
Definition: LocalPixel.h:15
collection_type data
Definition: DetSet.h:78
if(dp >Float(M_PI)) dp-
col
Definition: cuy.py:1008
Definition: errors.py:1
SiPixelFedCabling const * theCablingTree
GlobalPixel toGlobal(const LocalPixel &loc) const
Definition: PixelROC.h:59
bool checkHeader(bool &errorsInEvent, int fedId, const Word64 *header, Errors &errors)
Definition: ErrorChecker.cc:69
int PixelDataFormatter::nDigis ( ) const
inline

Definition at line 78 of file PixelDataFormatter.h.

References theDigiCounter.

78 { return theDigiCounter; }
int PixelDataFormatter::nWords ( ) const
inline
void PixelDataFormatter::passFrameReverter ( const SiPixelFrameReverter reverter)

Definition at line 122 of file PixelDataFormatter.cc.

References theFrameReverter.

Referenced by SiPixelDigiToRaw::produce().

123 {
124  theFrameReverter = reverter;
125 }
const SiPixelFrameReverter * theFrameReverter
std::string PixelDataFormatter::print ( const PixelDigi digi) const
private

Definition at line 470 of file PixelDataFormatter.cc.

References PixelDigi::adc(), PixelDigi::column(), PixelDigi::row(), and harvestTrackValidationPlots::str.

Referenced by digi2word(), digi2wordPhase1Layer1(), formatRawData(), and interpretRawData().

471 {
472  ostringstream str;
473  str << " DIGI: row: " << digi.row() <<", col: " << digi.column() <<", adc: " << digi.adc();
474  return str.str();
475 }
int row() const
Definition: PixelDigi.h:56
unsigned short adc() const
Definition: PixelDigi.h:59
int column() const
Definition: PixelDigi.h:57
std::string PixelDataFormatter::print ( const Word64 word) const
private

Definition at line 477 of file PixelDataFormatter.cc.

References harvestTrackValidationPlots::str.

478 {
479  ostringstream str;
480  str <<"word64: " << reinterpret_cast<const bitset<64>&> (word);
481  return str.str();
482 }
void PixelDataFormatter::setErrorStatus ( bool  ErrorStatus)

Definition at line 105 of file PixelDataFormatter.cc.

References errorcheck, includeErrors, and ErrorChecker::setErrorStatus().

Referenced by SiPixelRawToDigi::produce().

106 {
107  includeErrors = ErrorStatus;
109 }
void setErrorStatus(bool ErrorStatus)
Definition: ErrorChecker.cc:51
void PixelDataFormatter::setModulesToUnpack ( const std::set< unsigned int > *  moduleIds)

Definition at line 117 of file PixelDataFormatter.cc.

References modulesToUnpack.

118 {
119  modulesToUnpack = moduleIds;
120 }
const std::set< unsigned int > * modulesToUnpack
void PixelDataFormatter::setQualityStatus ( bool  QualityStatus,
const SiPixelQuality QualityInfo 
)

Definition at line 111 of file PixelDataFormatter.cc.

References badPixelInfo, and useQualityInfo.

112 {
113  useQualityInfo = QualityStatus;
114  badPixelInfo = QualityInfo;
115 }
const SiPixelQuality * badPixelInfo
int PixelDataFormatter::word2digi ( const int  fedId,
const SiPixelFrameConverter converter,
const bool  includeError,
const bool  useQuality,
const Word32 word,
Digis digis 
) const
private

Definition at line 420 of file PixelDataFormatter.cc.

References ecalMGPA::adc(), ADC_mask, ADC_shift, badPixelInfo, sipixelobjects::DetectorIndex::col, sipixelobjects::ElectronicIndex::dcol, DCOL_mask, DCOL_shift, debug, l1t::stage2::layer2::fedId, SiPixelFedCabling::findItem(), sipixelobjects::PixelROC::idInDetUnit(), SiPixelQuality::IsRocBad(), sipixelobjects::ElectronicIndex::link, LINK_mask, LINK_shift, DTRecHitQuality_cfi::local, LogTrace, modulesToUnpack, callgraph::path, digi_MixPreMix_cfi::pixel, sipixelobjects::ElectronicIndex::pxid, PXID_mask, PXID_shift, sipixelobjects::DetectorIndex::rawId, sipixelobjects::ElectronicIndex::roc, ROC_mask, ROC_shift, sipixelobjects::LocalPixel::rocCol(), sipixelobjects::LocalPixel::rocRow(), sipixelobjects::DetectorIndex::row, mps_update::status, theCablingTree, theDigiCounter, and SiPixelFrameConverter::toDetector().

422 {
423  // do not interpret false digis
424  if (word == 0 ) return 0;
425 
426  ElectronicIndex cabling;
427  cabling.dcol = (word >> DCOL_shift) & DCOL_mask;
428  cabling.pxid = (word >> PXID_shift) & PXID_mask;
429  cabling.link = (word >> LINK_shift) & LINK_mask;
430  cabling.roc = (word >> ROC_shift) & ROC_mask;
431  int adc = (word >> ADC_shift) & ADC_mask;
432 
433  if (debug) {
434  LocalPixel::DcolPxid pixel = {cabling.dcol,cabling.pxid};
435  LocalPixel local(pixel);
436  LogTrace("")<<" link: "<<cabling.link<<", roc: "<<cabling.roc
437  <<" rocRow: "<<local.rocRow()<<", rocCol:"<<local.rocCol()
438  <<" (dcol: "<<cabling.dcol<<", pxid:"<<cabling.pxid<<"), adc:"<<adc;
439  }
440 
441  if (!converter) return 0;
442 
443  DetectorIndex detIdx;
444  int status = converter->toDetector(cabling, detIdx);
445  if (status) return status;
446 
447  // exclude ROC(raw) based on bad ROC list bad in SiPixelQuality
448  // enable: process.siPixelDigis.UseQualityInfo = True
449  // 20-10-2010 A.Y.
450  if (useQuality&&badPixelInfo) {
451  CablingPathToDetUnit path = {static_cast<unsigned int>(fedId),
452  static_cast<unsigned int>(cabling.link),
453  static_cast<unsigned int>(cabling.roc)};
454  const PixelROC * roc = theCablingTree->findItem(path);
455  short rocInDet = (short) roc->idInDetUnit();
456  bool badROC = badPixelInfo->IsRocBad(detIdx.rawId, rocInDet);
457  if (badROC) return 0;
458  }
459 
460  if (modulesToUnpack && modulesToUnpack->find(detIdx.rawId) == modulesToUnpack->end()) return 0;
461 
462  digis[detIdx.rawId].emplace_back(detIdx.row, detIdx.col, adc);
463 
464  theDigiCounter++;
465 
466  if (debug) LogTrace("") << digis[detIdx.rawId].back();
467  return 0;
468 }
int adc(sample_type sample)
get the ADC sample (12 bits)
bool IsRocBad(const uint32_t &detid, const short &rocNb) const
identify pixel inside single ROC
Definition: LocalPixel.h:7
unsigned int idInDetUnit() const
id of this ROC in DetUnit etermined by token path
Definition: PixelROC.h:40
const std::set< unsigned int > * modulesToUnpack
const SiPixelQuality * badPixelInfo
#define LogTrace(id)
double collumn and pixel ID in double collumn representation
Definition: LocalPixel.h:22
virtual const sipixelobjects::PixelROC * findItem(const sipixelobjects::CablingPathToDetUnit &) const =0
int toDetector(const sipixelobjects::ElectronicIndex &cabling, sipixelobjects::DetectorIndex &detector) const
SiPixelFedCabling const * theCablingTree

Member Data Documentation

Word32 PixelDataFormatter::ADC_mask
private

Definition at line 105 of file PixelDataFormatter.h.

Referenced by interpretRawData(), PixelDataFormatter(), and word2digi().

int PixelDataFormatter::ADC_shift
private
int PixelDataFormatter::allDetDigis
private

Definition at line 97 of file PixelDataFormatter.h.

Referenced by formatRawData(), and PixelDataFormatter().

const SiPixelQuality* PixelDataFormatter::badPixelInfo
private

Definition at line 91 of file PixelDataFormatter.h.

Referenced by interpretRawData(), setQualityStatus(), and word2digi().

Word32 PixelDataFormatter::COL_mask
private

Definition at line 105 of file PixelDataFormatter.h.

Referenced by interpretRawData(), and PixelDataFormatter().

int PixelDataFormatter::COL_shift
private
Word32 PixelDataFormatter::DCOL_mask
private

Definition at line 105 of file PixelDataFormatter.h.

Referenced by interpretRawData(), PixelDataFormatter(), and word2digi().

int PixelDataFormatter::DCOL_shift
private

Definition at line 103 of file PixelDataFormatter.h.

Referenced by digi2word(), interpretRawData(), PixelDataFormatter(), and word2digi().

bool PixelDataFormatter::debug
private
ErrorChecker PixelDataFormatter::errorcheck
private

Definition at line 99 of file PixelDataFormatter.h.

Referenced by interpretRawData(), and setErrorStatus().

int PixelDataFormatter::hasDetDigis
private

Definition at line 98 of file PixelDataFormatter.h.

Referenced by formatRawData(), and PixelDataFormatter().

bool PixelDataFormatter::includeErrors
private

Definition at line 94 of file PixelDataFormatter.h.

Referenced by PixelDataFormatter(), and setErrorStatus().

Word32 PixelDataFormatter::LINK_mask
private

Definition at line 105 of file PixelDataFormatter.h.

Referenced by interpretRawData(), PixelDataFormatter(), and word2digi().

int PixelDataFormatter::LINK_shift
private
int PixelDataFormatter::maxROCIndex
private

Definition at line 107 of file PixelDataFormatter.h.

Referenced by interpretRawData(), and PixelDataFormatter().

const std::set<unsigned int>* PixelDataFormatter::modulesToUnpack
private

Definition at line 92 of file PixelDataFormatter.h.

Referenced by interpretRawData(), setModulesToUnpack(), and word2digi().

bool PixelDataFormatter::phase1
private

Definition at line 108 of file PixelDataFormatter.h.

Referenced by formatRawData(), interpretRawData(), and PixelDataFormatter().

Word32 PixelDataFormatter::PXID_mask
private

Definition at line 105 of file PixelDataFormatter.h.

Referenced by interpretRawData(), PixelDataFormatter(), and word2digi().

int PixelDataFormatter::PXID_shift
private

Definition at line 103 of file PixelDataFormatter.h.

Referenced by digi2word(), interpretRawData(), PixelDataFormatter(), and word2digi().

Word32 PixelDataFormatter::ROC_mask
private

Definition at line 105 of file PixelDataFormatter.h.

Referenced by interpretRawData(), PixelDataFormatter(), and word2digi().

int PixelDataFormatter::ROC_shift
private
Word32 PixelDataFormatter::ROW_mask
private

Definition at line 105 of file PixelDataFormatter.h.

Referenced by interpretRawData(), and PixelDataFormatter().

int PixelDataFormatter::ROW_shift
private
SiPixelFedCabling const* PixelDataFormatter::theCablingTree
private

Definition at line 89 of file PixelDataFormatter.h.

Referenced by interpretRawData(), and word2digi().

int PixelDataFormatter::theDigiCounter
mutableprivate

Definition at line 86 of file PixelDataFormatter.h.

Referenced by formatRawData(), nDigis(), and word2digi().

const SiPixelFrameReverter* PixelDataFormatter::theFrameReverter
private

Definition at line 90 of file PixelDataFormatter.h.

Referenced by digi2word(), digi2wordPhase1Layer1(), and passFrameReverter().

int PixelDataFormatter::theWordCounter
mutableprivate

Definition at line 87 of file PixelDataFormatter.h.

Referenced by digi2word(), digi2wordPhase1Layer1(), interpretRawData(), and nWords().

bool PixelDataFormatter::useQualityInfo
private

Definition at line 95 of file PixelDataFormatter.h.

Referenced by interpretRawData(), PixelDataFormatter(), and setQualityStatus().