]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
correcting a typo in the error message for invalid RCU trailer and including some...
authorrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 27 Oct 2011 07:38:47 +0000 (07:38 +0000)
committerrichterm <richterm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 27 Oct 2011 07:38:47 +0000 (07:38 +0000)
HLT/TPCLib/AliHLTTPCHWCFData.cxx

index 576afd7ad4d411e84b826f1fb13d1a6dea8216c7..4ef197b7c9d87e4812f151cb02b53c8bca9bc763 100644 (file)
@@ -86,7 +86,7 @@ int AliHLTTPCHWCFData::Init(const AliHLTUInt8_t* pBuffer, int bufferSize)
     // check if the first RCU trailer word starts with pattern '10'
     rcuTrailer-=nofRCUTrailerWords-1;
     if ((*rcuTrailer >> 30) != 2) {
-      HLTError("inconsistent RCU trailer word: can not find indicator patter '10' in bit 30 and 31 (0x08x)", *rcuTrailer);
+      HLTError("inconsistent first RCU trailer word: can not find indicator pattern '10' in bit 31 and 30 (0x%08x): trailer size %d word(s), buffer size %d byte", *rcuTrailer, nofRCUTrailerWords, bufferSize);
       return -ENODATA;
     }