22 : theOriginalBuffer(0),
25 theTMBHeader(2007, 0x50c3),
26 theCLCTData(&theTMBHeader),
27 theTMBScopeIsPresent(
false),
29 theTMBMiniScopeIsPresent(
false),
31 theBlockedCFEBIsPresent(
false),
33 theTMBTrailer(theTMBHeader.sizeInWords()+theCLCTData.sizeInWords(), 2007),
36 theRPCDataIsPresent(
false)
43 : theOriginalBuffer(0),
46 theTMBHeader(firmwareVersion, firmwareRevision),
47 theCLCTData(&theTMBHeader),
48 theTMBScopeIsPresent(
false),
50 theTMBMiniScopeIsPresent(
false),
52 theBlockedCFEBIsPresent(
false),
54 theTMBTrailer(theTMBHeader.sizeInWords()+theCLCTData.sizeInWords(), firmwareVersion),
57 theRPCDataIsPresent(
false)
68 : theOriginalBuffer(buf),
69 theTMBHeader(2007, 0x50c3),
70 theCLCTData(&theTMBHeader),
71 theTMBScopeIsPresent(
false),
73 theTMBMiniScopeIsPresent(
false),
75 theBlockedCFEBIsPresent(
false),
77 theTMBTrailer(theTMBHeader.sizeInWords()+theCLCTData.sizeInWords(), 2007),
78 theRPCDataIsPresent(
false){
85 theOriginalBuffer(data.theOriginalBuffer),
86 theB0CLine(data.theB0CLine), theE0FLine(data.theE0FLine),
87 theTMBHeader(data.theTMBHeader),
88 theCLCTData(data.theCLCTData), theRPCData(data.theRPCData),
89 theTMBScopeIsPresent(data.theTMBScopeIsPresent),
90 theTMBMiniScopeIsPresent(data.theTMBMiniScopeIsPresent),
91 theBlockedCFEBIsPresent(data.theBlockedCFEBIsPresent),
92 theTMBTrailer(data.theTMBTrailer),
94 theRPCDataIsPresent(data.theRPCDataIsPresent)
139 for(
int i = first;
i < maxToDo; ++
i) {
140 if(buf[
i] == marker) {
154 if ( theTotalTMBData.size() > 0 ) {
155 std::bitset<22> CRC=
calCRC22(theTotalTMBData);
156 LogTrace(
"CSCTMBData|CSCRawToDigi") <<
" Test here " << CRC.to_ulong();
157 return CRC.to_ulong();
160 LogTrace(
"CSCTMBData|CSCRawToDigi") <<
"theTotalTMBData doesn't exist";
167 unsigned short int firmwareVersion=0;
169 int NHeaderFrames = 0;
176 NHeaderFrames++; NHeaderFrames--;
178 if (buf[b0cLine]==0xdb0c) {
179 firmwareVersion=2007;
180 Ntbins = buf[b0cLine+19]&0xF8;
181 NRPCtbins = (buf[b0cLine+36]>>5)&0x1F;
182 NHeaderFrames = buf[b0cLine+5]&0x3F;
184 else if (buf[b0cLine]==0x6b0c) {
185 firmwareVersion=2006;
186 Ntbins = buf[b0cLine+1]&0x1f ;
188 NHeaderFrames = buf[b0cLine+4]&0x1f;
191 LogTrace(
"CSCTMBData|CSCRawToDigi") <<
"+++ Can't find b0C flag";
194 if ((firmwareVersion==2007)&&(!(((buf[b0cLine]&0xFFFF)==0xDB0C)&&((buf[b0cLine+1]&0xf000)==0xD000)
195 &&((buf[b0cLine+2]&0xf000)==0xD000)&&((buf[b0cLine+3]&0xf000)==0xD000)))){
196 LogTrace(
"CSCTMBData|CSCRawToDigi") <<
"+++ CSCTMBData warning: error in header in 2007 format!";
199 int MaxSizeRPC = 1+NRPCtbins*2*4+1;
202 switch (firmwareVersion) {
210 edm::LogError(
"CSCTMBData|CSCRawToDigi") <<
"+++ undetermined firmware format - cant find e0bLine";
216 LogTrace(
"CSCTMBData|CSCRawToDigi") <<
"+++ CSCTMBData warning: Bad TMB header e0bLine=" << std::hex << buf[e0bLine];
226 LogTrace(
"CSCTMBData|CSCRawToDigi") <<
"+++ CSCTMBData warning: Bad CLCT data";
237 int b04Line = currentPosition;
239 if(buf[b04Line]==0x6b04) {
241 int e04Line =
findLine(buf, 0x6e04, currentPosition, currentPosition+MaxSizeRPC);
248 LogTrace(
"CSCTMBData|CSCRawToDigi") <<
"CSCTMBData::corrupt RPC data! Failed to find end! ";
254 switch (firmwareVersion) {
256 TotTMBReadout= 43+Ntbins*6*5+1+NRPCtbins*2*4+2+8*256+8;
259 TotTMBReadout= 27+Ntbins*6*5+1+NRPCtbins*2*4+2+8*256+8;
262 edm::LogError(
"CSCTMBData|CSCRawToDigi") <<
"can't find TotTMBReadout - unknown firmware version!";
267 if (buf[currentPosition]==0x6b05) {
268 int b05Line = currentPosition;
269 LogTrace(
"CSCTMBData|CSCRawToDigi") <<
"found scope!";
270 int e05Line =
findLine(buf, 0x6e05, currentPosition, TotTMBReadout-currentPosition);
277 currentPosition+=(e05Line-b05Line+1);
281 <<
"+++ CSCTMBData warning: found 0x6b05 line, but not 0x6e05! +++";
286 if (buf[currentPosition]==0x6b07){
287 int Line6b07 = currentPosition;
288 LogTrace(
"CSCTMBData") <<
" TMBData ---> Begin of MiniScope found " ;
289 int Line6E07 =
findLine(buf, 0x6E07, currentPosition, TotTMBReadout-currentPosition);
291 LogTrace(
"CSCTMBData") <<
" TMBData --> End of MiniScope found " << Line6E07-Line6b07+1 <<
" words ";
294 currentPosition += (Line6E07-Line6b07+1);
298 <<
"+++ CSCTMBData warning MiniScope!: found 0x6b07 line, but not 0x6e07! +++";
304 if (buf[currentPosition]==0x6BCB){
305 int Line6BCB = currentPosition;
306 LogTrace(
"CSCTMBData") <<
" TMBData ---> Begin of Blocked CFEB found " ;
307 int Line6ECB =
findLine(buf, 0x6ECB, currentPosition, TotTMBReadout-currentPosition);
309 LogTrace(
"CSCTMBData") <<
" TMBData --> End of Blocked CFEB found " << Line6ECB-Line6BCB+1 <<
" words ";
312 currentPosition += (Line6ECB-Line6BCB+1);
316 <<
"+++ CSCTMBData warning Blocked CFEB!: found 0x6BCB line, but not 0x6ECB! +++";
321 int maxLine =
findLine(buf, 0xde0f, currentPosition, TotTMBReadout-currentPosition);
324 LogTrace(
"CSCTMBData|CSCRawToDigi") <<
"+++ CSCTMBData warning: No e0f line!";
334 int e0cLine =
findLine(buf, 0x6e0c, currentPosition, maxLine);
337 LogTrace(
"CSCTMBData|CSCRawToDigi") <<
"+++ CSCTMBData warning: No e0c line!";
350 LogTrace(
"CSCTMBData") <<
"Dump of TMB data:";
353 <<
"Adr= " << std::setw(4) <<
line
354 <<
" Data= " << std::setfill(
'0') << std::setw(5)
355 << std::uppercase << std::hex << buf[
line] <<
std::dec << std::endl;
374 for(
unsigned int i=0;
i<datain.size()-3;++
i)
402 const std::bitset<22>&
C)
404 std::bitset<22> NewCRC;
406 NewCRC[ 0] = D[ 0] ^ C[ 6];
407 NewCRC[ 1] = D[ 1] ^ D[ 0] ^ C[ 6] ^ C[ 7];
408 NewCRC[ 2] = D[ 2] ^ D[ 1] ^ C[ 7] ^ C[ 8];
409 NewCRC[ 3] = D[ 3] ^ D[ 2] ^ C[ 8] ^ C[ 9];
410 NewCRC[ 4] = D[ 4] ^ D[ 3] ^ C[ 9] ^ C[10];
411 NewCRC[ 5] = D[ 5] ^ D[ 4] ^ C[10] ^ C[11];
412 NewCRC[ 6] = D[ 6] ^ D[ 5] ^ C[11] ^ C[12];
413 NewCRC[ 7] = D[ 7] ^ D[ 6] ^ C[12] ^ C[13];
414 NewCRC[ 8] = D[ 8] ^ D[ 7] ^ C[13] ^ C[14];
415 NewCRC[ 9] = D[ 9] ^ D[ 8] ^ C[14] ^ C[15];
416 NewCRC[10] = D[10] ^ D[ 9] ^ C[15] ^ C[16];
417 NewCRC[11] = D[11] ^ D[10] ^ C[16] ^ C[17];
418 NewCRC[12] = D[12] ^ D[11] ^ C[17] ^ C[18];
419 NewCRC[13] = D[13] ^ D[12] ^ C[18] ^ C[19];
420 NewCRC[14] = D[14] ^ D[13] ^ C[19] ^ C[20];
421 NewCRC[15] = D[15] ^ D[14] ^ C[20] ^ C[21];
422 NewCRC[16] = D[15] ^ C[ 0] ^ C[21];
440 boost::dynamic_bitset<> newResult =
result;
448 std::vector<std::bitset<16> > wordVector;
450 for(
unsigned pos = 0; pos < result.size()-16; pos += 16)
452 std::bitset<16> word;
453 for(
int i = 0;
i < 16; ++
i)
455 word[
i] = result[pos+
i];
457 wordVector.push_back(word);
int sizeInWords() const
in 16-bit words
CSCTMBTrailer * tmbTrailer()
CSCTMBTrailer theTMBTrailer
static void selfTest()
tests packing
unsigned short * theOriginalBuffer
boost::dynamic_bitset pack()
not const because it sets size int TMBTrailer
bool theBlockedCFEBIsPresent
boost::dynamic_bitset append(const boost::dynamic_bitset<> &bs1, const boost::dynamic_bitset<> &bs2)
this method takes two bitsets bs1 and bs2 and returns result of bs2 appended to the end of bs1 ...
std::bitset< 22 > nextCRC22_D16(const std::bitset< 16 > &D, const std::bitset< 22 > &C)
bool theTMBMiniScopeIsPresent
int sizeInWords() const
in 16-bit frames
CSCTMBBlockedCFEB & tmbBlockedCFEB() const
bool cscClassPackerCompare(T &t)
std::bitset< 22 > calCRC22(const std::vector< std::bitset< 16 > > &datain)
CSCTMBHeader theTMBHeader
static std::atomic< bool > debug
CSCTMBBlockedCFEB * theTMBBlockedCFEB
CSCTMBScope & tmbScope() const
CSCTMBMiniScope * theTMBMiniScope
DecomposeProduct< arg, typename Div::arg > D
bool theTMBScopeIsPresent
The TMB scope is not present in most of data hence its dynamic.
CSCTMBScope * theTMBScope
bool checkSize() const
sees if the size adds up to the word count
boost::dynamic_bitset ushortToBitset(const unsigned int numberOfBits, unsigned short *buf)
this method takes numberOfBits bits from unsigned short * array and returns them in the bitset obj...
volatile std::atomic< bool > shutdown_flag false
int UnpackTMB(unsigned short *buf)
CSCTMBMiniScope & tmbMiniScope() const
int findLine(unsigned short *buf, unsigned short marker, int first, int maxToDo)