]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDrawStream.cxx
Fix
[u/mrichter/AliRoot.git] / TRD / AliTRDrawStream.cxx
index efe2e6aa9a5b46182b9ccf1bbe9b5902697167c3..85ec5c8ed7ea56e759b1b4353c54efa045773533 100644 (file)
@@ -1,3 +1,30 @@
+/**************************************************************************
+ * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ *                                                                        *
+ * Author: The ALICE Off-line Project.                                    *
+ * Contributors are mentioned in the code where appropriate.              *
+ *                                                                        *
+ * Permission to use, copy, modify and distribute this software and its   *
+ * documentation strictly for non-commercial purposes is hereby granted   *
+ * without fee, provided that the above copyright notice appears in all   *
+ * copies and that both the copyright notice and this permission notice   *
+ * appear in the supporting documentation. The authors make no claims     *
+ * about the suitability of this software for any purpose. It is          *
+ * provided "as is" without express or implied warranty.                  *
+ **************************************************************************/
+
+////////////////////////////////////////////////////////////////////////////
+//                                                                        //
+//  Decoding data from the TRD raw stream                                 //
+//  and translation into ADC values, on-line tracklets and tracks         //
+//                                                                        //
+//  Author: J. Klein (jochen.klein@cern.ch)                               //
+//                                                                        //
+////////////////////////////////////////////////////////////////////////////
+
+#include <cstdio>
+#include <cstdarg>
+
 #include "TClonesArray.h"
 #include "TTree.h"
 
@@ -10,6 +37,9 @@
 #include "AliTRDarrayDictionary.h"
 #include "AliTRDSignalIndex.h"
 #include "AliTRDtrackletWord.h"
+#include "AliESDTrdTrack.h"
+#include "AliTreeLoader.h"
+#include "AliLoader.h"
 
 #include "AliTRDrawStream.h"
 
 
 ClassImp(AliTRDrawStream)
 
-// some static information 
-const Int_t AliTRDrawStream::fgkMcmOrder[] = {12, 13, 14, 15, 
-                                                   8, 9, 10, 11, 
-                                                   4, 5, 6, 7, 
-                                                   0, 1, 2, 3};
-const Int_t  AliTRDrawStream::fgkRobOrder [] = {0, 1, 2, 3};
+// some static information
+Int_t AliTRDrawStream::fgMcmOrder[] = {12, 13, 14, 15,
+                                      8, 9, 10, 11,
+                                      4, 5, 6, 7,
+                                      0, 1, 2, 3};
+Int_t  AliTRDrawStream::fgRobOrder [] = {0, 1, 2, 3};
 const Int_t  AliTRDrawStream::fgkNlinks = 12;
 const Int_t  AliTRDrawStream::fgkNstacks = 5;
+const Int_t  AliTRDrawStream::fgkNsectors = 18;
+const Int_t  AliTRDrawStream::fgkNtriggers = 12;
 const UInt_t AliTRDrawStream::fgkDataEndmarker     = 0x00000000;
 const UInt_t AliTRDrawStream::fgkTrackletEndmarker = 0x10001000;
 
-char* AliTRDrawStream::fgErrorMessages[] = {
+const char* AliTRDrawStream::fgkErrorMessages[] = {
   "Unknown error",
   "Link monitor active",
   "Pretrigger counter mismatch",
@@ -50,12 +82,57 @@ char* AliTRDrawStream::fgErrorMessages[] = {
   "Missing MCM headers"
 };
 
+Int_t AliTRDrawStream::fgErrorDebugLevel[] = {
+  0,
+  0,
+  2, 
+  1, 
+  0, 
+  1, 
+  1, 
+  1,
+  1, 
+  2,
+  1,
+  1,
+  1,
+  1, 
+  2, 
+  1, 
+  1, 
+  1
+};
+
+AliTRDrawStream::ErrorBehav_t AliTRDrawStream::fgErrorBehav[] = {
+  AliTRDrawStream::kTolerate,
+  AliTRDrawStream::kDiscardHC,
+  AliTRDrawStream::kTolerate,
+  AliTRDrawStream::kAbort,
+  AliTRDrawStream::kAbort,
+  AliTRDrawStream::kAbort,
+  AliTRDrawStream::kAbort,
+  AliTRDrawStream::kDiscardHC,
+  AliTRDrawStream::kDiscardHC,
+  AliTRDrawStream::kTolerate,
+  AliTRDrawStream::kTolerate,
+  AliTRDrawStream::kTolerate,
+  AliTRDrawStream::kTolerate,
+  AliTRDrawStream::kTolerate,
+  AliTRDrawStream::kTolerate,
+  AliTRDrawStream::kTolerate,
+  AliTRDrawStream::kTolerate,
+  AliTRDrawStream::kTolerate
+};
+
 AliTRDrawStream::AliTRDrawStream(AliRawReader *rawReader) :
+  fStats(), 
+  fStoreError(&AliTRDrawStream::ForgetError),
   fRawReader(rawReader),
   fDigitsManager(0x0),
   fDigitsParam(0x0),
   fErrors(0x0),
   fLastError(),
+  fErrorFlags(0),
   fPayloadStart(0x0),
   fPayloadCurr(0x0),
   fPayloadSize(0),
@@ -66,18 +143,30 @@ AliTRDrawStream::AliTRDrawStream(AliRawReader *rawReader) :
   fCurrRobPos(-1),
   fCurrMcmPos(-1),
   fCurrEquipmentId(0),
-  fCurrSmuIndexHeaderSize(0),
-  fCurrSmuIndexHeaderVersion(0),
+  fCurrSmHeaderSize(0),
+  fCurrSmHeaderVersion(0),
+  fCurrTrailerReadout(0),
+  fCurrTrgHeaderAvail(0),
+  fCurrTrgHeaderReadout(0),
+  fCurrTrkHeaderAvail(0),
+  fCurrEvType(0),
+  fCurrTriggerEnable(0),
+  fCurrTriggerFired(0),
   fCurrTrackEnable(0),
   fCurrTrackletEnable(0),
   fCurrStackMask(0),
+  fCurrTrkHeaderIndexWord(0x0),
+  fCurrTrkHeaderSize(0x0),
+  fCurrTrgHeaderIndexWord(0x0),
+  fCurrTrgHeaderSize(0x0),
   fCurrStackIndexWord(0x0),
   fCurrStackHeaderSize(0x0),
   fCurrStackHeaderVersion(0x0),
   fCurrLinkMask(0x0),
   fCurrCleanCheckout(0x0),
   fCurrBoardId(0x0),
-  fCurrHwRev(0x0),
+  fCurrHwRev(-1),
+  fCurrHwRevTMU(0x0),
   fCurrLinkMonitorFlags(0x0),
   fCurrLinkDataTypeFlags(0x0),
   fCurrLinkDebugFlags(0x0),
@@ -95,23 +184,33 @@ AliTRDrawStream::AliTRDrawStream(AliRawReader *rawReader) :
   fCurrBC(-1),
   fCurrPtrgCnt(-1),
   fCurrPtrgPhase(-1),
+  fNDumpMCMs(0),
   fTrackletArray(0x0),
   fAdcArray(0x0),
   fSignalIndex(0x0),
-  fTrackletTree(0x0)
+  fTrackletTree(0x0),
+  fTracklets(0x0),
+  fTracks(0x0),
+  fMarkers(0x0)
 {
   // default constructor
 
+  fCurrTrkHeaderIndexWord = new UInt_t[fgkNstacks];
+  fCurrTrkHeaderSize      = new UInt_t[fgkNstacks];
+  fCurrTrgHeaderIndexWord = new UInt_t[fgkNtriggers];
+  fCurrTrgHeaderSize      = new UInt_t[fgkNtriggers];
   fCurrStackIndexWord     = new UInt_t[fgkNstacks];     
   fCurrStackHeaderSize    = new UInt_t[fgkNstacks];     
   fCurrStackHeaderVersion = new UInt_t[fgkNstacks];
   fCurrLinkMask           = new UInt_t[fgkNstacks];             
   fCurrCleanCheckout      = new UInt_t[fgkNstacks];     
   fCurrBoardId            = new UInt_t[fgkNstacks];             
-  fCurrHwRev              = new UInt_t[fgkNstacks];             
+  fCurrHwRevTMU           = new UInt_t[fgkNstacks];
   fCurrLinkMonitorFlags   = new UInt_t[fgkNstacks * fgkNlinks];
   fCurrLinkDataTypeFlags  = new UInt_t[fgkNstacks * fgkNlinks];
   fCurrLinkDebugFlags     = new UInt_t[fgkNstacks * fgkNlinks];
+  for (Int_t i = 0; i < 100; i++)
+    fDumpMCM[i] = 0;
 
   // preparing TClonesArray
   fTrackletArray = new TClonesArray("AliTRDtrackletWord", 256);
@@ -119,8 +218,12 @@ AliTRDrawStream::AliTRDrawStream(AliRawReader *rawReader) :
   // setting up the error tree
   fErrors = new TTree("errorStats", "Error statistics");
   fErrors->SetDirectory(0x0);
-  fErrors->Branch("error", &fLastError, "sector/I:stack:link:error:rob:mcm");
+  fErrors->Branch("error", &fLastError);
   fErrors->SetCircular(1000);
+  for (Int_t i = 0; i < 100; i++) {
+    fErrorBuffer[i] = 0;
+  }
+
 }
 
 AliTRDrawStream::~AliTRDrawStream()
@@ -129,13 +232,17 @@ AliTRDrawStream::~AliTRDrawStream()
 
   delete fErrors;
 
+  delete [] fCurrTrkHeaderIndexWord;
+  delete [] fCurrTrkHeaderSize;
+  delete [] fCurrTrgHeaderIndexWord;
+  delete [] fCurrTrgHeaderSize;
   delete [] fCurrStackIndexWord;
   delete [] fCurrStackHeaderSize;
   delete [] fCurrStackHeaderVersion;
   delete [] fCurrLinkMask;
   delete [] fCurrCleanCheckout;
   delete [] fCurrBoardId;
-  delete [] fCurrHwRev;
+  delete [] fCurrHwRevTMU;
   delete [] fCurrLinkMonitorFlags;
   delete [] fCurrLinkDataTypeFlags;
   delete [] fCurrLinkDebugFlags;
@@ -151,23 +258,13 @@ Bool_t AliTRDrawStream::ReadEvent(TTree *trackletTree)
   }
 
   // tracklet output
-  fTrackletTree = trackletTree;
-  if (fTrackletTree) {
-    if (!fTrackletTree->GetBranch("trkl")) {
-      fTrackletTree->Branch("hc", &fCurrHC, "hc/I");
-      fTrackletTree->Branch("trkl", &fTrackletArray);
-    } 
-    else {
-      fTrackletTree->SetBranchAddress("hc", &fCurrHC);
-      fTrackletTree->SetBranchAddress("trkl", &fTrackletArray);
-    }
-  }
+  ConnectTracklets(trackletTree);
 
   // some preparations
   fDigitsParam = 0x0;
 
   // loop over all DDLs
-  // data starts with GTU payload, i.e. SMU index word
+  // data starts with GTU payload, i.e. SM index word
   UChar_t *buffer = 0x0;
 
   while (fRawReader->ReadNextData(buffer)) {
@@ -175,65 +272,57 @@ Bool_t AliTRDrawStream::ReadEvent(TTree *trackletTree)
     fCurrEquipmentId = fRawReader->GetEquipmentId();
     AliDebug(2, Form("equipment: %i", fCurrEquipmentId));
 
-    if (fCurrEquipmentId < 1024 || fCurrEquipmentId > 1041) {
-      AliError(EquipmentError(kNonTrdEq, "Skipping"));
+    if (fCurrEquipmentId < kDDLOffset || fCurrEquipmentId > kDDLMax) {
+      EquipmentError(kNonTrdEq, "Skipping");
       continue;
     }
 
-    // setting the pointer to data and current reading position
-    fPayloadCurr = fPayloadStart = (UInt_t*) (buffer);
-    fPayloadSize = fRawReader->GetDataSize() / sizeof(UInt_t);
-    AliDebug(2, Form("Read buffer of size: %i", fRawReader->GetDataSize()));
+    if (fMarkers)
+      new ((*fMarkers)[fMarkers->GetEntriesFast()])
+       AliTRDrawStreamError(-kSecactive, fCurrEquipmentId - kDDLOffset);
 
-    // read SMU index header
-    if (ReadSmHeader() < 0) {
-      AliError(Form("Reading SMU header failed, skipping this DDL %i", fCurrEquipmentId));
-      continue;
-    }
+    ReadGTUHeaders((UInt_t*) buffer);
 
-    // read stack index header
-    for (Int_t iStack = 0; iStack < 5; iStack++) {
-      if (fCurrStackMask & (1 << iStack) != 0) 
-       ReadStackIndexHeader(iStack);
-    }
+    if (fCurrTrailerReadout)
+      ReadGTUTrailer();
 
-    for (Int_t iStack = 0; iStack < 5; iStack++) {
+    // loop over all active links
+    AliDebug(2, Form("Stack mask 0x%02x", fCurrStackMask));
+    for (Int_t iStack = 0; iStack < fgkNstacks; iStack++) {
       fCurrSlot = iStack;
-      if (fCurrStackMask & (1 << fCurrSlot) == 0) 
+      if ((fCurrStackMask & (1 << fCurrSlot)) == 0)
        continue;
 
       AliDebug(2, Form("Stack %i, Link mask: 0x%02x", fCurrSlot, fCurrLinkMask[fCurrSlot]));
-      for (Int_t iLink = 0; iLink < 12; iLink++) {
+      for (Int_t iLink = 0; iLink < fgkNlinks; iLink++) {
        fCurrLink = iLink;
-       fCurrHC   = fCurrSm * 60 + fCurrSlot * 12 + iLink;
+       fCurrHC   = (fCurrEquipmentId - kDDLOffset) * fgkNstacks * fgkNlinks +
+         fCurrSlot * fgkNlinks + iLink;
        if ((fCurrLinkMask[fCurrSlot] & (1 << fCurrLink)) == 0)
          continue;
-       
+
+       fErrorFlags = 0;
+       // check for link monitor error flag
        if (fCurrLinkMonitorFlags[fCurrSlot*fgkNlinks + fCurrLink] != 0)
          LinkError(kLinkMonitor);
-       AliDebug(2, Form("Payload for S%il%i", fCurrSlot, fCurrLink));
-       for (Int_t i = 0; i < 10; i++) //???
-         AliDebug(5, Form("%3i: 0x%08x 0x%08x 0x%08x 0x%08x", i*4,
-                fPayloadCurr[4*i], fPayloadCurr[4*i+1], 
-                fPayloadCurr[4*i+2], fPayloadCurr[4*i+3]));
-
-       // read the data from one HC
-       ReadLinkData();
+       else
+         // read the data from one HC
+         ReadLinkData();
 
        // read all data endmarkers
-       while (fPayloadCurr - fPayloadStart < fPayloadSize &&
-              *fPayloadCurr == fgkDataEndmarker)
-         fPayloadCurr++;
-
+       SeekNextLink();
       }
     }
   }
+
   return kTRUE;
 }
 
 
 Bool_t AliTRDrawStream::NextDDL()
 {
+  // continue reading with the next equipment
+
   if (!fRawReader)
     return kFALSE;
 
@@ -248,28 +337,20 @@ Bool_t AliTRDrawStream::NextDDL()
     fCurrEquipmentId = fRawReader->GetEquipmentId();
     AliDebug(2, Form("equipment: %i", fCurrEquipmentId));
     
-    if (fCurrEquipmentId < 1024 || fCurrEquipmentId > 1041) {
-      AliError(EquipmentError(kNonTrdEq, "Skipping"));
+    if (fCurrEquipmentId < kDDLOffset || fCurrEquipmentId > kDDLMax) {
+      EquipmentError(kNonTrdEq, "Skipping");
       continue;
     }
 
-    // setting the pointer to data and current reading position
-    fPayloadCurr = fPayloadStart = (UInt_t*) (buffer);
-    fPayloadSize = fRawReader->GetDataSize() / sizeof(UInt_t);
-    AliDebug(2, Form("Read buffer of size: %i", fRawReader->GetDataSize()));
+    if (fMarkers)
+      new ((*fMarkers)[fMarkers->GetEntriesFast()])
+       AliTRDrawStreamError(-kSecactive, fCurrEquipmentId - kDDLOffset);
+
+    ReadGTUHeaders((UInt_t*) buffer);
+
+    if (fCurrTrailerReadout)
+      ReadGTUTrailer();
 
-    // read SMU index header
-    if (ReadSmHeader() < 0) {
-      AliError(Form("Reading SMU header failed, skipping this DDL %i", fCurrEquipmentId));
-      continue;
-    }
-    
-    // read stack index header
-    for (Int_t iStack = 0; iStack < 5; iStack++) {
-      if (fCurrStackMask & (1 << iStack) != 0) {
-       ReadStackIndexHeader(iStack);
-      }
-    }
     return kTRUE;
   }
 
@@ -277,100 +358,462 @@ Bool_t AliTRDrawStream::NextDDL()
 }
 
 
-Int_t AliTRDrawStream::NextChamber(AliTRDdigitsManager *digMgr, UInt_t ** /* trackletContainer */, UShort_t ** /* errorContainer */)
+Int_t AliTRDrawStream::NextChamber(AliTRDdigitsManager *digMgr)
 {
+  // read the data for the next chamber
+  // in case you only want to read the data of a single chamber
+  // to read all data ReadEvent(...) is recommended
+
   fDigitsManager = digMgr; 
   fDigitsParam   = 0x0;
 
+  fErrorFlags = 0;
+
   // tracklet output preparation
-  fTrackletTree = 0x0;
-  //AliDataLoader *trklLoader = AliRunLoader::Instance()->GetLoader("TRDLoader")->GetDataLoader("tracklets");
-  //if (trklLoader) 
-  //  fTrackletTree = trklLoader->Tree();
+  TTree *trklTree = 0x0;
+  AliRunLoader *rl = AliRunLoader::Instance();
+  AliLoader* trdLoader = rl ? rl->GetLoader("TRDLoader") : NULL;
+  AliDataLoader *trklLoader = trdLoader ? trdLoader->GetDataLoader("tracklets") : NULL;
+  if (trklLoader) {
+    AliTreeLoader *trklTreeLoader = (AliTreeLoader*) trklLoader->GetBaseLoader("tracklets-raw");
+    if (trklTreeLoader) 
+      trklTree = trklTreeLoader->Tree();
+    else 
+      trklTree = trklLoader->Tree();
+  }
+
+  if (fTrackletTree != trklTree)
+    ConnectTracklets(trklTree);
 
   if (!fRawReader) {
     AliError("No raw reader available");
     return -1;
   }
 
-  if (fCurrSlot < 0 || fCurrSlot >= 5) {
+  while (fCurrSlot < 0 || fCurrSlot >= fgkNstacks) {
     if (!NextDDL()) {
       fCurrSlot = -1;
       return -1;
     }
+    while ((fCurrSlot < fgkNstacks) &&
+          (((fCurrStackMask & (1 << fCurrSlot)) == 0) ||
+           ((fCurrLinkMask[fCurrSlot] & (1 << fCurrLink))) == 0)) {
+      fCurrLink++;
+      if (fCurrLink >= fgkNlinks) {
+       fCurrLink = 0;
+       fCurrSlot++;
+      }
+    }
   }
 
   AliDebug(2, Form("Stack %i, Link %i, mask: 0x%02x", fCurrSlot, fCurrLink, fCurrLinkMask[fCurrSlot]));
-  fCurrHC   = (fCurrEquipmentId - 1024) * 60 + fCurrSlot * 12 + fCurrLink;
+  fCurrHC   = (fCurrEquipmentId - kDDLOffset) * fgkNlinks * fgkNstacks +
+    fCurrSlot * fgkNlinks + fCurrLink;
 
   if (fCurrLinkMonitorFlags[fCurrSlot*fgkNlinks + fCurrLink] != 0)
     LinkError(kLinkMonitor);
-
-  // read the data from one HC
-  ReadLinkData();
+  else
+    // read the data from one HC
+    ReadLinkData();
   
   // read all data endmarkers
-  while (fPayloadCurr - fPayloadStart < fPayloadSize && 
-        *fPayloadCurr == fgkDataEndmarker) 
-    fPayloadCurr++;
+  SeekNextLink();
 
   if (fCurrLink % 2 == 0) {
     // if we just read the A-side HC then also check the B-side
     fCurrLink++;
+    fCurrHC++;
     if (fCurrLinkMask[fCurrSlot] & (1 << fCurrLink)) {
       ReadLinkData();
-      while (fPayloadCurr - fPayloadStart < fPayloadSize && 
-            *fPayloadCurr == fgkDataEndmarker) 
-       fPayloadCurr++;
+      SeekNextLink();
     }
   }
 
   //??? to check 
   do {
     fCurrLink++; 
-    if (fCurrLink > 11) {
+    if (fCurrLink >= fgkNlinks) {
       fCurrLink = 0;
       fCurrSlot++;
     }
-  } while ((fCurrSlot < 5) && 
-          ((fCurrStackMask & (1 << fCurrSlot) == 0) || 
-           (fCurrLinkMask[fCurrSlot] & (1 << fCurrLink)) == 0));
-
-  return fCurrHC / 2;
+  } while ((fCurrSlot < fgkNstacks) && 
+          (((fCurrStackMask & (1 << fCurrSlot)) == 0) || 
+           ((fCurrLinkMask[fCurrSlot] & (1 << fCurrLink))) == 0));
+
+  // return chamber information from HC if it is valid
+  // otherwise return information from link position
+  if (fCurrSm < 0 || fCurrSm >= fgkNsectors || fCurrStack < 0 || fCurrStack >= fgkNstacks || fCurrLayer < 0 || fCurrLayer >= fgkNlinks/2)
+    return ((fCurrEquipmentId-kDDLOffset) + fCurrSlot * fgkNlinks/2 + fCurrLink/2);
+  else
+    return (fCurrSm * fgkNstacks*fgkNlinks/2 + fCurrStack * fgkNlinks/2 + fCurrLayer);
 }
 
 
+Int_t AliTRDrawStream::ReadGTUHeaders(UInt_t *buffer)
+{
+  // check the data source and read the headers
+
+  if (fCurrEquipmentId >= kDDLOffset && fCurrEquipmentId <= kDDLMax) {
+    // this is ROC data
+
+    // setting the pointer to data and current reading position
+    fPayloadCurr = fPayloadStart = buffer;
+    fPayloadSize = fRawReader->GetDataSize() / sizeof(UInt_t);
+    fStats.fStatsSector[fCurrEquipmentId - kDDLOffset].fBytes = fRawReader->GetDataSize();
+    AliDebug(2, Form("Read buffer of size: %i", fRawReader->GetDataSize()));
+
+    AliDebug(1, DumpRaw("raw data", fPayloadCurr, TMath::Min(fPayloadSize, 1000)));
+
+    // read SM header
+    if (ReadSmHeader() < 0) {
+      AliError(Form("Reading SM header failed, skipping this DDL %i", fCurrEquipmentId));
+      return -1;
+    }
+
+    // read tracking headers (if available)
+    if (fCurrTrkHeaderAvail) {
+      for (Int_t iStack = 0; iStack < fgkNstacks; iStack++) {
+       if ((fCurrStackMask & (1 << iStack)) != 0)
+         ReadTrackingHeader(iStack);
+      }
+    }
+
+    // read trigger header(s) (if available)
+    if (fCurrTrgHeaderAvail)
+      ReadTriggerHeaders();
+
+    // read stack header
+    for (Int_t iStack = 0; iStack < fgkNstacks; iStack++) {
+      if ((fCurrStackMask & (1 << iStack)) != 0)
+       ReadStackHeader(iStack);
+    }
+
+    return 0;
+  }
+  else
+    return -1;
+}
+
 Int_t AliTRDrawStream::ReadSmHeader()
 {
   // read the SMU index header at the current reading position 
   // and store the information in the corresponding variables
 
   if (fPayloadCurr - fPayloadStart >= fPayloadSize - 1) {
-    AliError(EquipmentError(kUnknown, "SM Header aborted"));
+    EquipmentError(kUnknown, "SM Header incomplete");
     return -1;
   }
 
-  fCurrSmuIndexHeaderSize     = ((*fPayloadCurr) >> 16) & 0xffff;
-  fCurrSmuIndexHeaderVersion  = ((*fPayloadCurr) >> 12) &    0xf;
+  fCurrSmHeaderSize           = ((*fPayloadCurr) >> 16) & 0xffff;
+  fCurrSmHeaderVersion        = ((*fPayloadCurr) >> 12) &    0xf;
   fCurrTrackEnable            = ((*fPayloadCurr) >>  6) &    0x1;
   fCurrTrackletEnable         = ((*fPayloadCurr) >>  5) &    0x1;
   fCurrStackMask              = ((*fPayloadCurr)      ) &   0x1f;
+  fCurrHwRev                  = (fPayloadCurr[1] >> 12) & 0xffff;
 
-  AliDebug(5, Form("SMU header: size: %i, version: %i, track enable: %i, tracklet enable: %i, stack mask: %2x",
-                  fCurrSmuIndexHeaderSize, 
-                  fCurrSmuIndexHeaderVersion, 
-                  fCurrTrackEnable, 
+  switch (fCurrSmHeaderVersion) {
+  case 0xb:
+    fCurrTrailerReadout = 0;
+    fCurrTrgHeaderAvail = 0;
+    fCurrEvType = 0;
+    fCurrTrkHeaderAvail = 0;
+
+    DecodeGTUtracks();
+    break;
+
+  case 0xc:
+    fCurrTrailerReadout = ((*fPayloadCurr) >> 10) &    0x1;
+    fCurrTrgHeaderAvail = 1;
+    fCurrTrgHeaderReadout = ((*fPayloadCurr) >>  9) &    0x1;
+    fCurrEvType         = ((*fPayloadCurr) >>  7) &    0x3;
+    fCurrTrkHeaderAvail = fCurrTrackEnable;
+    fCurrTriggerEnable  = (fPayloadCurr[2] >>  8) &  0xfff;
+    fCurrTriggerFired   = (fPayloadCurr[2] >>  20) &  0xfff;
+    break;
+
+  default:
+    AliError(Form("unknown SM header version: 0x%x", fCurrSmHeaderVersion));
+  }
+
+  AliDebug(5, Form("SM header: size: %i, version: %i, track enable: %i, tracklet enable: %i, stack mask: %2x, trailer: %i, trgheader: %i, trkheader: %i",
+                  fCurrSmHeaderSize,
+                  fCurrSmHeaderVersion,
+                  fCurrTrackEnable,
                   fCurrTrackletEnable,
-                  fCurrStackMask));
-  
-  fPayloadCurr += fCurrSmuIndexHeaderSize + 1;
+                  fCurrStackMask,
+                  fCurrTrailerReadout,
+                  fCurrTrgHeaderAvail,
+                  fCurrTrkHeaderAvail ));
 
-  return fCurrSmuIndexHeaderSize + 1;
+  // jump to the first word after the SM header
+  fPayloadCurr += fCurrSmHeaderSize + 1;
+
+  return fCurrSmHeaderSize + 1;
 }
 
-Int_t AliTRDrawStream::ReadStackIndexHeader(Int_t stack)
+Int_t AliTRDrawStream::DecodeGTUtracks()
 {
-  // read the stack index header 
+  // decode GTU track words
+  // this depends on the hardware revision of the SMU
+
+  AliDebug(1, DumpRaw(Form("GTU tracks (hw rev %i)", fCurrHwRev),
+                     fPayloadCurr + 4, 10, 0xffe0ffff));
+
+  if (fCurrHwRev < 1772) {
+    UInt_t trackWord[2] = { 0, 0 };
+    Int_t stack = 0;
+    Int_t idx = 0;
+    for (UInt_t iWord = 4; iWord < fCurrSmHeaderSize; iWord++) {
+      if (fPayloadCurr[iWord] == 0x10000000) {
+        stack++;
+        idx = 0;
+      }
+      else {
+        if ((idx == 0) &&
+           ((fPayloadCurr[iWord] & 0xfffff0f0) == 0x13370000)) {
+         AliDebug(1, Form("stack %i: fast trigger word: 0x%08x", stack, fPayloadCurr[iWord]));
+         continue;
+        }
+        else if ((idx & 0x1) == 0x1) {
+         trackWord[1] = fPayloadCurr[iWord];
+         AliDebug(1,Form("track debug word: 0x%08x%08x", trackWord[1], trackWord[0]));
+         // if (fTracks)
+         //   new ((*fTracks)[fTracks->GetEntriesFast()]) AliESDTrdTrack(0, 0, trackWord[0], trackWord[1], fCurrEquipmentId-kDDLOffset);
+        }
+        else {
+         trackWord[0] = fPayloadCurr[iWord];
+        }
+        idx++;
+      }
+    }
+  }
+  else if (fCurrHwRev < 1804) {
+    UInt_t trackWord[2] = { 0, 0 };
+    Int_t stack = 0;
+    Int_t idx = 0;
+    for (UInt_t iWord = 4; iWord < fCurrSmHeaderSize; iWord++) {
+      if (fPayloadCurr[iWord] == 0xffe0ffff) {
+        stack++;
+        idx = 0;
+      }
+      else {
+        if ((idx == 0) &&
+           ((fPayloadCurr[iWord] & 0xfffff0f0) == 0x13370000)) {
+         AliDebug(1, Form("stack %i: fast trigger word: 0x%08x", stack, fPayloadCurr[iWord]));
+         continue;
+        }
+        else if ((idx & 0x1) == 0x1) {
+         trackWord[1] = fPayloadCurr[iWord];
+         AliDebug(1, Form("track debug word: 0x%08x%08x", trackWord[1], trackWord[0]));
+         Float_t pt = (trackWord[0] & 0x8000) ? -1. * ((~(trackWord[0] & 0xffff)&0xffff) + 1)/128. : (trackWord[0] & 0xffff)/128.;
+         AliDebug(1, Form("pt = %f", pt));
+         // if (fTracks) {
+         //   AliESDTrdTrack *trk = new ((*fTracks)[fTracks->GetEntriesFast()]) AliESDTrdTrack(0, 0, trackWord[0], trackWord[1], fCurrEquipmentId-kDDLOffset);
+         //   if (TMath::Abs(pt) > 0.1) {
+         //     trk->SetA((Int_t) (0.15*51625./100./pt / 160e-4 * 2));
+         //   }
+         //   trk->SetStack((trackWord[1] >> 28) & 0x7);
+         // }
+        }
+        else {
+         trackWord[0] = fPayloadCurr[iWord];
+        }
+        idx++;
+      }
+    }
+  }
+  else if (fCurrHwRev < 1819) {
+    UInt_t trackWord[2];
+    Int_t stack = 0;
+    Int_t idx = 0;
+    for (UInt_t iWord = 4; iWord < fCurrSmHeaderSize; iWord++) {
+      if (fPayloadCurr[iWord] == 0xffe0ffff) {
+       stack++;
+       idx = 0;
+      }
+      else {
+       if ((idx == 0) &&
+           ((fPayloadCurr[iWord] & 0xfffff0f0) == 0x13370000)) {
+         AliDebug(1, Form("stack %i: fast trigger word: 0x%08x", stack, fPayloadCurr[iWord]));
+         continue;
+       }
+       else if ((idx & 0x1) == 0x1) {
+         trackWord[idx&0x1] = fPayloadCurr[iWord];
+         AliDebug(1, Form("track debug word: 0x%08x%08x", trackWord[1], trackWord[0]));
+         printf("%4i %2i %i ",
+                fRawReader->GetEventIndex(),
+                fCurrEquipmentId-kDDLOffset, (trackWord[1] >> 28) & 0x7);
+         Float_t pt = (trackWord[0] & 0x8000) ? -1. * ((~(trackWord[0] & 0xffff)&0xffff) + 1)/128. : (trackWord[0] & 0xffff)/128.;
+         printf("%+7.2f ", pt);
+         printf("%i%i%i%i%i%i ", ((trackWord[0] >> 21) & 0x1),
+                ((trackWord[0] >> 20) & 0x1),
+                ((trackWord[0] >> 19) & 0x1),
+                ((trackWord[0] >> 18) & 0x1),
+                ((trackWord[0] >> 17) & 0x1),
+                ((trackWord[0] >> 16) & 0x1));
+         printf("0x%08x%08x\n", trackWord[1], trackWord[0]);
+         // if (fTracks) {
+         //   AliESDTrdTrack *trk = new ((*fTracks)[fTracks->GetEntriesFast()]) AliESDTrdTrack(0, 0, trackWord[0], trackWord[1], fCurrEquipmentId-kDDLOffset);
+         //   if (TMath::Abs(pt) > 0.1) {
+         //     trk->SetA((Int_t) (0.15*51625./100./pt / 160e-4 * 2));
+         //   }
+         //   trk->SetStack((trackWord[1] >> 28) & 0x7);
+         // }
+       }
+       else {
+         trackWord[idx&0x1] = fPayloadCurr[iWord];
+       }
+       idx++;
+      }
+    }
+  }
+  else if (fCurrHwRev < 1860) {
+    AliError(Form("unsupported hardware rev %i", fCurrHwRev));
+  }
+  else {
+    UInt_t trackWord[2] = { 0, 0 };
+    Int_t stack = 0;
+    Int_t idx = 0;
+    Bool_t upperWord = kFALSE;
+    Int_t word = 0;
+    for (UInt_t iWord = 4; iWord < fCurrSmHeaderSize; iWord++) {
+      if (fPayloadCurr[iWord] == 0xffe0ffff) {
+        stack++;
+        idx = 0;
+       upperWord = kFALSE;
+      }
+      else {
+       // assemble the 32-bit words out of 16-bit blocks
+       if (upperWord) {
+         word |= (fPayloadCurr[iWord] & 0xffff0000);
+         upperWord = kFALSE;
+       }
+       else {
+         // lower word is read first
+         word = (fPayloadCurr[iWord] & 0xffff0000) >> 16;
+         upperWord = kTRUE;
+         continue;
+       }
+
+        if ((word & 0xffff0008) == 0x13370008) {
+         AliDebug(1, Form("stack %i: fast track word: 0x%08x", stack, word));
+         continue;
+        }
+        else if ((word & 0xffff0010) == 0x13370010) {
+         AliDebug(1, Form("stack %i: tracking done word: 0x%08x", stack, word));
+         continue;
+       }
+        else if ((idx & 0x1) == 0x1) {
+         trackWord[1] = word;
+         AliDebug(1, Form("track debug word: 0x%08x%08x", trackWord[1], trackWord[0]));
+         // if (fTracks) {
+         //   AliESDTrdTrack *trk = new ((*fTracks)[fTracks->GetEntriesFast()]) AliESDTrdTrack(0, 0, trackWord[0], trackWord[1], fCurrEquipmentId-kDDLOffset);
+         //   if (TMath::Abs(trk->GetPt()) > 0.1) {
+         //     trk->SetA((Int_t) (0.15*51625./100./trk->GetPt() / 160e-4 * 2));
+         //   }
+         //   trk->SetStack((trackWord[1] >> 28) & 0x7);
+         // }
+        }
+        else {
+         trackWord[0] = word;
+        }
+        idx++;
+      }
+    }
+  }
+  return 0;
+}
+
+Int_t AliTRDrawStream::ReadTrackingHeader(Int_t stack)
+{
+  // read the tracking information and store it for the given stack
+
+  // index word
+
+  fCurrTrkHeaderIndexWord[stack] = *fPayloadCurr;
+  fCurrTrkHeaderSize[stack]      = ((*fPayloadCurr) >> 16) & 0x3ff;
+  fPayloadCurr++;
+
+  AliDebug(1, Form("tracking header index word: 0x%08x, size: %i\n",
+                  fCurrTrkHeaderIndexWord[stack], fCurrTrkHeaderSize[stack]));
+
+  // data words
+  UInt_t trackWord[2] = { 0, 0 };
+  Int_t idx = 0;
+  Bool_t upperWord = kFALSE;
+  Int_t word = 0;
+  for (UInt_t iWord = 0; iWord < fCurrTrkHeaderSize[stack]; iWord++) {
+    // assemble the 32-bit words out of 16-bit blocks
+    if (upperWord) {
+      word |= (fPayloadCurr[iWord] & 0xffff0000);
+      upperWord = kFALSE;
+    }
+    else {
+      // lower word is read first
+      word = (fPayloadCurr[iWord] & 0xffff0000) >> 16;
+      upperWord = kTRUE;
+      continue;
+    }
+    
+    if ((word & 0xffff0008) == 0x13370008) {
+      AliDebug(1, Form("stack %i: fast track word: 0x%08x", stack, word));
+      continue;
+    }
+    else if ((word & 0xffff0010) == 0x13370010) {
+      AliDebug(1, Form("stack %i: tracking done word: 0x%08x", stack, word));
+      continue;
+    }
+    else if ((idx & 0x1) == 0x1) {
+      trackWord[1] = word;
+      AliDebug(1, Form("track debug word: 0x%08x%08x", trackWord[1], trackWord[0]));
+      // if (fTracks) {
+      //       AliESDTrdTrack *trk = new ((*fTracks)[fTracks->GetEntriesFast()]) AliESDTrdTrack(0, 0, trackWord[0], trackWord[1], fCurrEquipmentId-kDDLOffset);
+      //       if (TMath::Abs(trk->GetPt()) > 0.1) {
+      //         trk->SetA((Int_t) (0.15*51625./100./trk->GetPt() / 160e-4 * 2));
+      //       }
+      //       trk->SetStack((trackWord[1] >> 28) & 0x7);
+      // }
+    }
+    else {
+      trackWord[0] = word;
+    }
+    idx++;
+  }
+
+  fPayloadCurr += fCurrTrkHeaderSize[stack];
+
+  return fCurrTrkHeaderSize[stack];
+}
+
+Int_t AliTRDrawStream::ReadTriggerHeaders()
+{
+  // read all trigger headers present
+
+  AliDebug(1, Form("trigger mask: 0x%03x, fired: 0x%03x\n",
+                  fCurrTriggerEnable, fCurrTriggerFired));
+  // loop over potential trigger blocks
+  for (Int_t iTrigger = 0; iTrigger < fgkNtriggers; iTrigger++) {
+    // check for trigger enable
+    if (fCurrTriggerEnable & (1 << iTrigger)) {
+      // check for readout mode and trigger fired
+      if ((fCurrTrgHeaderReadout == 0) || (fCurrTriggerFired & (1 << iTrigger))) {
+       // index word
+       AliDebug(1, Form("trigger index word %i: 0x%08x\n", iTrigger, *fPayloadCurr));
+       fCurrTrgHeaderIndexWord[iTrigger] = *fPayloadCurr;
+       fCurrTrgHeaderSize[iTrigger]      = ((*fPayloadCurr) >> 16) & 0xffff;
+       fPayloadCurr++;
+       // data words
+       fPayloadCurr += fCurrTrgHeaderSize[iTrigger];
+      }
+    }
+  }
+
+  return 0;
+}
+
+Int_t AliTRDrawStream::ReadStackHeader(Int_t stack)
+{
+  // read the stack header
   // and store the information in the corresponding variables
 
   fCurrStackIndexWord[stack]     = *fPayloadCurr;
@@ -378,22 +821,25 @@ Int_t AliTRDrawStream::ReadStackIndexHeader(Int_t stack)
   fCurrStackHeaderVersion[stack] = ((*fPayloadCurr) >> 12) & 0xf;
   fCurrLinkMask[stack]           = (*fPayloadCurr) & 0xfff;
 
-  if (fPayloadCurr - fPayloadStart >= fPayloadSize - fCurrStackHeaderSize[stack]) {
-    AliError(StackError(kStackHeaderInvalid, "Stack index header aborted"));
+  // dumping stack header
+  AliDebug(1, DumpRaw(Form("stack %i header", stack), fPayloadCurr, fCurrStackHeaderSize[stack]));
+
+  if (fPayloadCurr - fPayloadStart >= fPayloadSize - (Int_t) fCurrStackHeaderSize[stack]) {
+    LinkError(kStackHeaderInvalid, "Stack index header aborted");
     return -1;
   }
 
   switch (fCurrStackHeaderVersion[stack]) {
-  case 0xa: 
+  case 0xa:
     if (fCurrStackHeaderSize[stack] < 8) {
-      AliError(StackError(kStackHeaderInvalid, "Stack header smaller than expected!"));
+      LinkError(kStackHeaderInvalid, "Stack header smaller than expected!");
       return -1;
     }
-    
+
     fCurrCleanCheckout[stack] = fPayloadCurr[1] & 0x1;
     fCurrBoardId[stack]       = (fPayloadCurr[1] >> 8) & 0xff;
-    fCurrHwRev[stack]         = (fPayloadCurr[1] >> 16) & 0xffff;
-    
+    fCurrHwRevTMU[stack]      = (fPayloadCurr[1] >> 16) & 0xffff;
+
     for (Int_t iLayer = 0; iLayer < 6; iLayer++) {
       // A side
       fCurrLinkMonitorFlags  [stack*fgkNlinks + iLayer*2]      = fPayloadCurr[iLayer+2] & 0xf;
@@ -405,26 +851,69 @@ Int_t AliTRDrawStream::ReadStackIndexHeader(Int_t stack)
       fCurrLinkDebugFlags    [stack*fgkNlinks + iLayer*2 + 1]  = (fPayloadCurr[iLayer+2] >> 28) & 0xf;
     }
     break;
-    
+
   default:
-    AliError(StackError(kStackHeaderInvalid, Form("Invalid Stack Index Header version %x", 
-                                                 fCurrStackHeaderVersion[stack])));
+    LinkError(kStackHeaderInvalid, "Invalid Stack Header version %x", fCurrStackHeaderVersion[stack]);
   }
-  
+
   fPayloadCurr += fCurrStackHeaderSize[stack];
 
   return fCurrStackHeaderSize[stack];
 }
 
+Int_t AliTRDrawStream::ReadGTUTrailer()
+{
+  // read the SM trailer containing CRCs from various stages
+
+  UInt_t* trailer = fPayloadStart + fPayloadSize -1;
+
+  // look for the trailer index word from the end
+  for (Int_t iWord = 0; iWord < fPayloadSize; iWord++) {
+    if ((fPayloadStart[fPayloadSize-1-iWord] & 0xffff) == 0x1f51) {
+      trailer = fPayloadStart + fPayloadSize - 1 - iWord;
+      break;
+    }
+  }
+
+  if (((*trailer) & 0xffff) == 0x1f51) {
+    UInt_t trailerIndexWord = (*trailer);
+    Int_t trailerSize = (trailerIndexWord >> 16) & 0xffff;
+    AliDebug(2, DumpRaw("GTU trailer", trailer, trailerSize+1));
+    // parse the trailer
+  }
+  else
+    EquipmentError(kUnknown, "trailer index marker mismatch");
+
+  return 0;
+}
+
 Int_t AliTRDrawStream::ReadLinkData()
 {
   // read the data in one link (one HC) until the data endmarker is reached
+  // returns the number of words read!
 
   Int_t count = 0;
+  UInt_t* startPosLink = fPayloadCurr;
+
+  AliDebug(1, DumpRaw(Form("link data from seg %2i slot %i link %2i", fCurrEquipmentId-kDDLOffset, fCurrSlot, fCurrLink),
+                     fPayloadCurr, TMath::Min((Int_t) (fPayloadSize - (fPayloadCurr-fPayloadStart)), 100), 0x00000000));
 
+  if (fMarkers)
+    new ((*fMarkers)[fMarkers->GetEntriesFast()])
+      AliTRDrawStreamError(-kHCactive, fCurrEquipmentId-kDDLOffset, fCurrStack, fCurrLink);
+
+  if (fErrorFlags & kDiscardHC)
+    return count;
+
+  //??? add check whether tracklets are enabled
   count += ReadTracklets();
+  if (fErrorFlags & kDiscardHC)
+    return count;
 
+  AliDebug(1, DumpRaw("HC header", fPayloadCurr, 4, 0x00000000));
   count += ReadHcHeader();
+  if (fErrorFlags & kDiscardHC)
+    return count;
 
   Int_t det = fCurrSm * 30 + fCurrStack * 6 + fCurrLayer;
 
@@ -436,7 +925,7 @@ Int_t AliTRDrawStream::ReadLinkData()
        fAdcArray->Allocate(16, 144, fCurrNtimebins);
     }
     else {
-      AliError(LinkError(kNoDigits));
+      LinkError(kNoDigits);
     }
     
     if (!fDigitsParam) {
@@ -475,7 +964,7 @@ Int_t AliTRDrawStream::ReadLinkData()
        
        // feeding TRAP config
        AliTRDtrapConfig *trapcfg = AliTRDtrapConfig::Instance();
-       //      trapcfg->ReadPackedConfig(fCurrHC, startPos, fPayloadCurr - startPos);
+       trapcfg->ReadPackedConfig(fCurrHC, startPos, fPayloadCurr - startPos);
       }
       else {
        Int_t tpmode = fCurrMajor & 0x7;
@@ -493,14 +982,19 @@ Int_t AliTRDrawStream::ReadLinkData()
     }
   }
   else {
-    AliError(LinkError(kInvalidDetector, Form("%i", det)));
-    UInt_t *startPos = fPayloadCurr;
+    LinkError(kInvalidDetector, "%i", det);
     while (fPayloadCurr - fPayloadStart < fPayloadSize &&
           *fPayloadCurr != fgkDataEndmarker)
       fPayloadCurr++;
-    count += fPayloadCurr - startPos;
   }
-  
+
+  if (fCurrSm > -1 && fCurrSm < 18) {
+    fStats.fStatsSector[fCurrSm].fStatsHC[fCurrHC%60].fBytes     += (fPayloadCurr - startPosLink) * sizeof(UInt_t);
+    fStats.fStatsSector[fCurrSm].fStatsHC[fCurrHC%60].fBytesRead += count * sizeof(UInt_t);
+    fStats.fStatsSector[fCurrSm].fBytesRead                      += count * sizeof(UInt_t);
+    fStats.fBytesRead                                            += count * sizeof(UInt_t);
+  }
+
   return count;
 }
 
@@ -513,17 +1007,24 @@ Int_t AliTRDrawStream::ReadTracklets()
   UInt_t *start = fPayloadCurr;
   while (*(fPayloadCurr) != fgkTrackletEndmarker && 
         fPayloadCurr - fPayloadStart < fPayloadSize) {
-
-    new ((*fTrackletArray)[fTrackletArray->GetEntriesFast()]) AliTRDtrackletWord(*(fPayloadCurr));
+    new ((*fTrackletArray)[fTrackletArray->GetEntriesFast()]) AliTRDtrackletWord(*(fPayloadCurr), fCurrHC);
 
     fPayloadCurr++;
   }
 
   if (fTrackletArray->GetEntriesFast() > 0) {
     AliDebug(1, Form("Found %i tracklets in %i %i %i (ev. %i)", fTrackletArray->GetEntriesFast(), 
-                    fCurrSm, fCurrSlot, fCurrLink, fRawReader->GetEventIndex()));
+                    (fCurrEquipmentId-kDDLOffset), fCurrSlot, fCurrLink, fRawReader->GetEventIndex()));
+    if (fCurrSm > -1 && fCurrSm < 18) {
+      fStats.fStatsSector[fCurrSm].fStatsHC[fCurrHC%60].fNTracklets += fTrackletArray->GetEntriesFast();
+      fStats.fStatsSector[fCurrSm].fNTracklets                      += fTrackletArray->GetEntriesFast();
+    }
     if (fTrackletTree)
       fTrackletTree->Fill();
+    if (fTracklets)
+      for (Int_t iTracklet = 0; iTracklet < fTrackletArray->GetEntriesFast(); iTracklet++) {
+       new ((*fTracklets)[fTracklets->GetEntriesFast()]) AliTRDtrackletWord(*((AliTRDtrackletWord*)(*fTrackletArray)[iTracklet]));
+      }
   }
 
   // loop over remaining tracklet endmarkers
@@ -531,7 +1032,7 @@ Int_t AliTRDrawStream::ReadTracklets()
          fPayloadCurr - fPayloadStart < fPayloadSize)) 
     fPayloadCurr++;
   
-  return (fPayloadCurr - start) / sizeof(UInt_t);
+  return fPayloadCurr - start;
 }
 
 Int_t AliTRDrawStream::ReadHcHeader()
@@ -539,6 +1040,7 @@ Int_t AliTRDrawStream::ReadHcHeader()
   // read and parse the HC header of one HC
   // and store the information in the corresponding variables
 
+  AliDebug(1, Form("HC header: 0x%08x", *fPayloadCurr));
   UInt_t *start = fPayloadCurr;
   // check not to be at the data endmarker
   if (*fPayloadCurr == fgkDataEndmarker)
@@ -554,17 +1056,17 @@ Int_t AliTRDrawStream::ReadHcHeader()
   fCurrSide       = (*fPayloadCurr >> 2) & 0x1;
   fCurrCheck      = (*fPayloadCurr) & 0x3;
 
-  if (fCurrSm != (fCurrEquipmentId - 1024) || 
-      fCurrStack != fCurrSlot || 
-      fCurrLayer != fCurrLink / 2 || 
-      fCurrSide != fCurrLink % 2) {
-    AliError(LinkError(kHCmismatch,
-                      Form("HC: %i, %i, %i, %i\n 0x%08x 0x%08x 0x%08x 0x%08x", 
-                           fCurrSm, fCurrStack, fCurrLayer, fCurrSide,
-                           fPayloadCurr[0], fPayloadCurr[1], fPayloadCurr[2], fPayloadCurr[3]) ));
+  if ((fCurrSm != (((Int_t) fCurrEquipmentId) - kDDLOffset)) || 
+      (fCurrStack != fCurrSlot) || 
+      (fCurrLayer != fCurrLink / 2) || 
+      (fCurrSide != fCurrLink % 2)) {
+    LinkError(kHCmismatch,
+             "HC: %i, %i, %i, %i\n 0x%08x 0x%08x 0x%08x 0x%08x", 
+             fCurrSm, fCurrStack, fCurrLayer, fCurrSide,
+             fPayloadCurr[0], fPayloadCurr[1], fPayloadCurr[2], fPayloadCurr[3]);
   }
   if (fCurrCheck != 0x1) {
-    AliError(LinkError(kHCcheckFailed));
+    LinkError(kHCcheckFailed);
   }
   
   if (fCurrAddHcWords > 0) {
@@ -576,7 +1078,7 @@ Int_t AliTRDrawStream::ReadHcHeader()
   
   fPayloadCurr += 1 + fCurrAddHcWords;
   
-  return (fPayloadCurr - start) / sizeof(UInt_t);
+  return (fPayloadCurr - start);
 }
 
 Int_t AliTRDrawStream::ReadTPData(Int_t mode)
@@ -610,7 +1112,7 @@ Int_t AliTRDrawStream::ReadTPData(Int_t mode)
       lastrobpos = GetROBReadoutPos(ROB(*fPayloadCurr) / 2);
     }
     else {
-      AliError(ROBError(kPosUnexp));
+      ROBError(kPosUnexp, Form("#%i after #%i in readout order", GetROBReadoutPos(ROB(*fPayloadCurr) / 2), lastrobpos));
     }
     fCurrRobPos = ROB(*fPayloadCurr);
     
@@ -619,7 +1121,7 @@ Int_t AliTRDrawStream::ReadTPData(Int_t mode)
       lastmcmpos = GetMCMReadoutPos(MCM(*fPayloadCurr));
     }
     else {
-      AliError(MCMError(kPosUnexp));
+      MCMError(kPosUnexp, Form("#%i after #%i in readout order", GetMCMReadoutPos(MCM(*fPayloadCurr)), lastmcmpos));
     }
     fCurrMcmPos = MCM(*fPayloadCurr);
     
@@ -665,14 +1167,14 @@ Int_t AliTRDrawStream::ReadTPData(Int_t mode)
        }
        else {
          expword = 0;
-         AliError(LinkError(kTPmodeInvalid, "Just reading"));
+         LinkError(kTPmodeInvalid, "Just reading");
        }
 
        diff = *fPayloadCurr ^ expword;
        if (diff != 0) {
-         AliError(MCMError(kTPmismatch,
-                           Form("Seen 0x%08x, expected 0x%08x, diff: 0x%08x (0x%02x)", 
-                                *fPayloadCurr, expword, diff, 0xff & (diff | diff >> 8 | diff >> 16 | diff >> 24)) ));
+         MCMError(kTPmismatch,
+                  "Seen 0x%08x, expected 0x%08x, diff: 0x%08x (0x%02x)", 
+                  *fPayloadCurr, expword, diff, 0xff & (diff | diff >> 8 | diff >> 16 | diff >> 24));;
        }
        fPayloadCurr++;
        count++;
@@ -693,10 +1195,10 @@ Int_t AliTRDrawStream::ReadZSData()
   UInt_t *start = fPayloadCurr;
   
   Int_t mcmcount = 0;
-  Int_t mcmcount_exp = fCurrStack == 2 ? 48 : 64;
+  Int_t mcmcountExp = fCurrStack == 2 ? 48 : 64;
   Int_t channelcount = 0;
-  Int_t channelcount_exp = 0;
-  Int_t channelcount_max = 0;
+  Int_t channelcountExp = 0;
+  Int_t channelcountMax = 0;
   Int_t timebins;
   Int_t currentTimebin = 0;
   Int_t adcwc = 0;
@@ -706,8 +1208,8 @@ Int_t AliTRDrawStream::ReadZSData()
 
   if (fCurrNtimebins != fNtimebins) {
     if (fNtimebins > 0) 
-      AliError(LinkError(kNtimebinsChanged,
-                        Form("No. of timebins changed from %i to %i", fNtimebins, fCurrNtimebins) ));
+      LinkError(kNtimebinsChanged,
+               "No. of timebins changed from %i to %i", fNtimebins, fCurrNtimebins);
     fNtimebins = fCurrNtimebins;
   }
   
@@ -717,23 +1219,28 @@ Int_t AliTRDrawStream::ReadZSData()
         fPayloadCurr - fPayloadStart < fPayloadSize) {
     
     // ----- Checking MCM Header -----
-    AliDebug(2, Form("MCM header: 0x%08x", *fPayloadCurr));
+    AliDebug(2, DumpMcmHeader("MCM header: ", *fPayloadCurr));
+    UInt_t *startPosMCM = fPayloadCurr;
     
     // ----- checking for proper readout order - ROB -----
     if (GetROBReadoutPos(ROB(*fPayloadCurr) / 2) >= lastrobpos) {
+      if (GetROBReadoutPos(ROB(*fPayloadCurr) / 2) > lastrobpos)
+       lastmcmpos = -1;
       lastrobpos = GetROBReadoutPos(ROB(*fPayloadCurr) / 2);
     }
     else {
-      AliError(ROBError(kPosUnexp));
+      ROBError(kPosUnexp, Form("#%i after #%i and #%i in readout order",
+                              GetROBReadoutPos(ROB(*fPayloadCurr) / 2), lastrobpos, GetROBReadoutPos(fCurrRobPos)));
     }
     fCurrRobPos = ROB(*fPayloadCurr);
     
     // ----- checking for proper readout order - MCM -----
     if (GetMCMReadoutPos(MCM(*fPayloadCurr)) > lastmcmpos) {
-      lastmcmpos = GetMCMReadoutPos(lastmcmpos);
+      lastmcmpos = GetMCMReadoutPos(MCM(*fPayloadCurr));
     }
     else {
-      AliError(MCMError(kPosUnexp));
+      MCMError(kPosUnexp, Form("#%i after #%i and #%i in readout order",
+                              GetMCMReadoutPos(MCM(*fPayloadCurr)), lastmcmpos, GetMCMReadoutPos(fCurrMcmPos)));
     }
     fCurrMcmPos = MCM(*fPayloadCurr);
     
@@ -741,8 +1248,7 @@ Int_t AliTRDrawStream::ReadZSData()
       if (evno == -1)
        evno = EvNo(*fPayloadCurr);
       else {
-       AliError(MCMError(kPtrgCntMismatch,
-                         Form("%i <-> %i", evno, EvNo(*fPayloadCurr)) ));
+       MCMError(kPtrgCntMismatch, "%i <-> %i", evno, EvNo(*fPayloadCurr));
       }
     }
     Int_t adccoloff = AdcColOffset(*fPayloadCurr);
@@ -751,45 +1257,45 @@ Int_t AliTRDrawStream::ReadZSData()
     fPayloadCurr++;
     
     // ----- Reading ADC channels -----
-    AliDebug(2, Form("ADC mask: 0x%08x", *fPayloadCurr));
+    AliDebug(2, DumpAdcMask("ADC mask: ", *fPayloadCurr));
     
     // ----- analysing the ADC mask -----
     channelcount = 0;
-    channelcount_exp = GetNActiveChannelsFromMask(*fPayloadCurr);
-    channelcount_max = GetNActiveChannels(*fPayloadCurr);
+    channelcountExp = GetNActiveChannelsFromMask(*fPayloadCurr);
+    channelcountMax = GetNActiveChannels(*fPayloadCurr);
     Int_t channelmask = GetActiveChannels(*fPayloadCurr);
     Int_t channelno = -1;
     fPayloadCurr++; 
 
-    if (channelcount_exp != channelcount_max) {
-      if (channelcount_exp > channelcount_max) {
-       Int_t temp = channelcount_exp;
-       channelcount_exp = channelcount_max;
-       channelcount_max = temp;
+    if (channelcountExp != channelcountMax) {
+      if (channelcountExp > channelcountMax) {
+       Int_t temp = channelcountExp;
+       channelcountExp = channelcountMax;
+       channelcountMax = temp;
       }
-      while (channelcount_exp < channelcount_max && channelcount_exp < 21 && 
-            fPayloadCurr - fPayloadStart < fPayloadSize - 10 * channelcount_exp - 1) {
-       AliError(MCMError(kAdcMaskInconsistent,
-                         Form("Possible MCM-H: 0x%08x, possible ADC-mask: 0x%08x", 
-                              *(fPayloadCurr + 10 * channelcount_exp), 
-                              *(fPayloadCurr + 10 * channelcount_exp + 1) ) ));
-       if (!CouldBeMCMhdr( *(fPayloadCurr + 10 * channelcount_exp)) && !CouldBeADCmask( *(fPayloadCurr + 10 * channelcount_exp + 1))) 
-         channelcount_exp++;
+      while (channelcountExp < channelcountMax && channelcountExp < 21 && 
+            fPayloadCurr - fPayloadStart < fPayloadSize - 10 * channelcountExp - 1) {
+       MCMError(kAdcMaskInconsistent,
+                "Possible MCM-H: 0x%08x, possible ADC-mask: 0x%08x", 
+                *(fPayloadCurr + 10 * channelcountExp), 
+                *(fPayloadCurr + 10 * channelcountExp + 1) );
+       if (!CouldBeMCMhdr( *(fPayloadCurr + 10 * channelcountExp)) && !CouldBeADCmask( *(fPayloadCurr + 10 * channelcountExp + 1))) 
+         channelcountExp++;
        else {
          break;
        }
       }
-      AliError(MCMError(kAdcMaskInconsistent,
-                       Form("Inconsistency in no. of active channels: Counter: %i, Mask: %i, chosen: %i!", 
-                            GetNActiveChannels(fPayloadCurr[-1]), GetNActiveChannelsFromMask(fPayloadCurr[-1]), channelcount_exp) ));
+      MCMError(kAdcMaskInconsistent,
+              "Inconsistency in no. of active channels: Counter: %i, Mask: %i, chosen: %i!", 
+              GetNActiveChannels(fPayloadCurr[-1]), GetNActiveChannelsFromMask(fPayloadCurr[-1]), channelcountExp);
     }
-    AliDebug(2, Form("expecting %i active channels, timebins: %i", channelcount_exp, fCurrNtimebins));
+    AliDebug(2, Form("expecting %i active channels, %i timebins", channelcountExp, fCurrNtimebins));
     
     // ----- reading marked ADC channels -----
-    while (channelcount < channelcount_exp && *(fPayloadCurr) != fgkDataEndmarker) {
-      if (channelno < 21)
+    while (channelcount < channelcountExp && *(fPayloadCurr) != fgkDataEndmarker) {
+      if (channelno < 20)
        channelno++;
-      while (channelno < 21 && (channelmask & 1 << channelno) == 0)
+      while (channelno < 20 && (channelmask & 1 << channelno) == 0)
        channelno++;
       
       if (fCurrNtimebins > 30) {
@@ -801,25 +1307,29 @@ Int_t AliTRDrawStream::ReadZSData()
       }
       
       adcwc = 0;
-      AliDebug(2, Form("Now looking %i words", timebins / 3));
+      AliDebug(3, Form("Now reading %i words for channel %2i", timebins / 3, channelno));
       Int_t adccol = adccoloff - channelno;
       Int_t padcol = padcoloff - channelno;
+//      if (adccol < 3 || adccol > 165) 
+//     AliInfo(Form("writing channel %i of det %3i %i:%2i to adcrow/-col: %i/%i padcol: %i", 
+//                  channelno, fCurrHC/2, fCurrRobPos, fCurrMcmPos, row, adccol, padcol));
+
       while (adcwc < timebins / 3 && 
             *(fPayloadCurr) != fgkDataEndmarker && 
             fPayloadCurr - fPayloadStart < fPayloadSize) {
        int check = 0x3 & *fPayloadCurr;
        if (channelno % 2 != 0) { // odd channel
          if (check != 0x2 && channelno < 21) {
-           AliError(MCMError(kAdcCheckInvalid,
-                             Form("Invalid check bits: %i for %2i. ADC word in odd channel: %i", 
-                                  check, adcwc+1, channelno) ));
+           MCMError(kAdcCheckInvalid,
+                    "%i for %2i. ADC word in odd channel %i", 
+                    check, adcwc+1, channelno);
          }
        }
        else {                  // even channel
          if (check != 0x3 && channelno < 21) {
-           AliError(MCMError(kAdcCheckInvalid,
-                             Form("Invalid check bits: %i for %2i. ADC word in even channel: %i", 
-                                  check, adcwc+1, channelno) ));
+           MCMError(kAdcCheckInvalid,
+                    "%i for %2i. ADC word in even channel %i", 
+                    check, adcwc+1, channelno);
          }
        }
        
@@ -839,7 +1349,7 @@ Int_t AliTRDrawStream::ReadZSData()
       }
       
       if (adcwc != timebins / 3) 
-       AliError(MCMError(kAdcDataAbort));
+       MCMError(kAdcDataAbort);
       
       // adding index 
       if (padcol > 0 && padcol < 144) {
@@ -848,19 +1358,33 @@ Int_t AliTRDrawStream::ReadZSData()
       
       channelcount++;
     }
-    
-    if (channelcount != channelcount_exp)
-      AliError(MCMError(kAdcChannelsMiss));
+
+    if (fCurrSm > -1 && fCurrSm < 18) {
+      fStats.fStatsSector[fCurrSm].fStatsHC[fCurrHC%60].fNChannels += channelcount;
+      fStats.fStatsSector[fCurrSm].fNChannels                      += channelcount;
+    }
+    if (channelcount != channelcountExp)
+      MCMError(kAdcChannelsMiss);
     
     mcmcount++;
+    if (fCurrSm > -1 && fCurrSm < 18) {
+      fStats.fStatsSector[fCurrSm].fStatsHC[fCurrHC%60].fNMCMs++;
+      fStats.fStatsSector[fCurrSm].fNMCMs++;
+    }
+
+    if (IsDumping() && DumpingMCM(fCurrHC/2, fCurrRobPos, fCurrMcmPos)) {
+      AliInfo(DumpRaw(Form("Event %i: Det %3i ROB %i MCM %2i", fRawReader->GetEventIndex(), fCurrHC/2, fCurrRobPos, fCurrMcmPos),
+                     startPosMCM, fPayloadCurr - startPosMCM));
+    }
+
     // continue with next MCM
   }
 
   // check for missing MCMs (if header suppression is inactive)
-  if (fCurrMajor & 0x1 == 0 && mcmcount != mcmcount_exp) {
-    AliError(LinkError(kMissMcmHeaders,
-                      Form("No. of MCM headers %i not as expected: %i", 
-                           mcmcount, mcmcount_exp) ));
+  if (((fCurrMajor & 0x1) == 0) && (mcmcount != mcmcountExp)) {
+    LinkError(kMissMcmHeaders,
+             "No. of MCM headers %i not as expected: %i", 
+             mcmcount, mcmcountExp);
   }
 
   return (fPayloadCurr - start);
@@ -873,9 +1397,9 @@ Int_t AliTRDrawStream::ReadNonZSData()
   UInt_t *start = fPayloadCurr;
   
   Int_t mcmcount = 0;
-  Int_t mcmcount_exp = fCurrStack == 2 ? 48 : 64;
+  Int_t mcmcountExp = fCurrStack == 2 ? 48 : 64;
   Int_t channelcount = 0;
-  Int_t channelcount_exp = 0;
+  Int_t channelcountExp = 0;
   Int_t timebins;
   Int_t currentTimebin = 0;
   Int_t adcwc = 0;
@@ -885,8 +1409,8 @@ Int_t AliTRDrawStream::ReadNonZSData()
 
   if (fCurrNtimebins != fNtimebins) {
     if (fNtimebins > 0) 
-      AliError(LinkError(kNtimebinsChanged,
-                        Form("No. of timebins changed from %i to %i", fNtimebins, fCurrNtimebins) ));
+      LinkError(kNtimebinsChanged,
+               "No. of timebins changed from %i to %i", fNtimebins, fCurrNtimebins);
     fNtimebins = fCurrNtimebins;
   }
   
@@ -903,16 +1427,16 @@ Int_t AliTRDrawStream::ReadNonZSData()
       lastrobpos = GetROBReadoutPos(ROB(*fPayloadCurr) / 2);
     }
     else {
-      AliError(ROBError(kPosUnexp));
+      ROBError(kPosUnexp, Form("#%i after #%i in readout order", GetROBReadoutPos(ROB(*fPayloadCurr) / 2), lastrobpos));
     }
     fCurrRobPos = ROB(*fPayloadCurr);
     
     // ----- checking for proper readout order - MCM -----
     if (GetMCMReadoutPos(MCM(*fPayloadCurr)) >= (lastmcmpos + 1) % 16) {
-      lastmcmpos = GetMCMReadoutPos(*fPayloadCurr);
+      lastmcmpos = GetMCMReadoutPos(MCM(*fPayloadCurr));
     }
     else {
-      AliError(MCMError(kPosUnexp));
+      MCMError(kPosUnexp, Form("#%i after #%i in readout order", GetMCMReadoutPos(MCM(*fPayloadCurr)), lastmcmpos));
     }
     fCurrMcmPos = MCM(*fPayloadCurr);
     
@@ -920,13 +1444,12 @@ Int_t AliTRDrawStream::ReadNonZSData()
       if (evno == -1)
        evno = EvNo(*fPayloadCurr);
       else {
-       AliError(MCMError(kPtrgCntMismatch,
-                         Form("%i <-> %i", evno, EvNo(*fPayloadCurr)) ));
+       MCMError(kPtrgCntMismatch, "%i <-> %i", evno, EvNo(*fPayloadCurr));
       }
     }
     
     channelcount = 0;
-    channelcount_exp = 21;
+    channelcountExp = 21;
     int channelno = -1;
 
     Int_t adccoloff = AdcColOffset(*fPayloadCurr);
@@ -936,9 +1459,9 @@ Int_t AliTRDrawStream::ReadNonZSData()
     fPayloadCurr++;
 
     // ----- reading marked ADC channels -----
-    while (channelcount < channelcount_exp && 
+    while (channelcount < channelcountExp && 
           *(fPayloadCurr) != fgkDataEndmarker) {
-      if (channelno < 21)
+      if (channelno < 20)
        channelno++;
       
       currentTimebin = 0;
@@ -953,16 +1476,16 @@ Int_t AliTRDrawStream::ReadNonZSData()
        int check = 0x3 & *fPayloadCurr;
        if (channelno % 2 != 0) { // odd channel
          if (check != 0x2 && channelno < 21) {
-           AliError(MCMError(kAdcCheckInvalid,
-                             Form("Invalid check bits: %i for %2i. ADC word in odd channel: %i", 
-                                  check, adcwc+1, channelno) ));
+           MCMError(kAdcCheckInvalid,
+                    "%i for %2i. ADC word in odd channel %i", 
+                    check, adcwc+1, channelno);
          }
        }
        else {                  // even channel
          if (check != 0x3 && channelno < 21) {
-           AliError(MCMError(kAdcCheckInvalid,
-                             Form("Invalid check bits: %i for %2i. ADC word in even channel: %i", 
-                                  check, adcwc+1, channelno) ));
+           MCMError(kAdcCheckInvalid,
+                    "%i for %2i. ADC word in even channel %i", 
+                    check, adcwc+1, channelno);
          }
        }
        
@@ -982,7 +1505,7 @@ Int_t AliTRDrawStream::ReadNonZSData()
       }
 
       if (adcwc != timebins / 3) 
-       AliError(MCMError(kAdcDataAbort));
+       MCMError(kAdcDataAbort);
       
       // adding index 
       if (padcol > 0 && padcol < 144) {
@@ -992,109 +1515,334 @@ Int_t AliTRDrawStream::ReadNonZSData()
       channelcount++;
     }
 
-    if (channelcount != channelcount_exp)
-      AliError(MCMError(kAdcChannelsMiss));
+    if (channelcount != channelcountExp)
+      MCMError(kAdcChannelsMiss);
     mcmcount++;
     // continue with next MCM
   }
 
   // check for missing MCMs (if header suppression is inactive)
-  if (mcmcount != mcmcount_exp) {
-    AliError(LinkError(kMissMcmHeaders,
-                      Form("%i not as expected: %i", mcmcount, mcmcount_exp) ));
+  if (mcmcount != mcmcountExp) {
+    LinkError(kMissMcmHeaders,
+             "%i not as expected: %i", mcmcount, mcmcountExp);
   }
 
   return (fPayloadCurr - start);
 }
 
+Int_t AliTRDrawStream::SeekNextLink()
+{
+  // proceed in raw data stream till the next link
+
+  UInt_t *start = fPayloadCurr;
+
+  // read until data endmarkers
+  while (fPayloadCurr - fPayloadStart < fPayloadSize &&
+        *fPayloadCurr != fgkDataEndmarker)
+    fPayloadCurr++;
+
+  // read all data endmarkers
+  while (fPayloadCurr - fPayloadStart < fPayloadSize &&
+        *fPayloadCurr == fgkDataEndmarker)
+    fPayloadCurr++;
 
-Int_t AliTRDrawStream::GetNActiveChannelsFromMask(UInt_t adcmask) 
+  return (fPayloadCurr - start);
+}
+
+Bool_t AliTRDrawStream::ConnectTracklets(TTree *trklTree) 
 {
-  adcmask = GetActiveChannels(adcmask);
-  adcmask = adcmask - ((adcmask >> 1) & 0x55555555);
-  adcmask = (adcmask & 0x33333333) + ((adcmask >> 2) & 0x33333333);
-  return (((adcmask + (adcmask >> 4)) & 0xF0F0F0F) * 0x1010101) >> 24;
+  // connect the tracklet tree used to store the tracklet output
+
+  fTrackletTree = trklTree;
+  if (!fTrackletTree) 
+    return kTRUE;
+
+  if (!fTrackletTree->GetBranch("hc")) 
+    fTrackletTree->Branch("hc", &fCurrHC, "hc/I");
+  else 
+    fTrackletTree->SetBranchAddress("hc", &fCurrHC);
+
+  if (!fTrackletTree->GetBranch("trkl")) 
+    fTrackletTree->Branch("trkl", &fTrackletArray);
+  else 
+    fTrackletTree->SetBranchAddress("trkl", &fTrackletArray);
+
+  return kTRUE;
 }
 
 
-TString AliTRDrawStream::EquipmentError(ErrorCode_t err, TString msg)
+void AliTRDrawStream::EquipmentError(ErrorCode_t err, const char *const msg, ...)
 { 
-  fLastError.fSector = fCurrEquipmentId - 1024;
+  // register error according to error code on equipment level 
+  // and return the corresponding error message
+
+  fLastError.fSector = fCurrEquipmentId - kDDLOffset;
   fLastError.fStack  = -1;
   fLastError.fLink   = -1;
   fLastError.fRob    = -1;
   fLastError.fMcm    = -1;
   fLastError.fError  = err;
-  fErrors->Fill();
-
-  return (Form("Event %6i: Eq. %2d - %s : ", 
-              fRawReader->GetEventIndex(), fCurrEquipmentId, fgErrorMessages[err]) + msg); 
+  (this->*fStoreError)();
+
+  va_list ap;
+  if (fgErrorDebugLevel[err] > 10) 
+    AliDebug(fgErrorDebugLevel[err],
+            Form("Event %6i: Eq. %2d - %s : %s", 
+                 fRawReader->GetEventIndex(), fCurrEquipmentId, fgkErrorMessages[err],
+                 (va_start(ap, msg), vsprintf(fErrorBuffer, msg, ap), va_end(ap), fErrorBuffer) ));
+  else 
+    AliError(Form("Event %6i: Eq. %2d - %s : %s", 
+                 fRawReader->GetEventIndex(), fCurrEquipmentId, fgkErrorMessages[err],
+                 (va_start(ap, msg), vsprintf(fErrorBuffer, msg, ap), va_end(ap), fErrorBuffer) ));
+  fErrorFlags |= fgErrorBehav[err];
 }                                                                              
 
 
-TString AliTRDrawStream::StackError(ErrorCode_t err, TString msg)
+void AliTRDrawStream::StackError(ErrorCode_t err, const char *const msg, ...)
 { 
-  fLastError.fSector = fCurrEquipmentId - 1024;
+  // register error according to error code on stack level 
+  // and return the corresponding error message
+
+  fLastError.fSector = fCurrEquipmentId - kDDLOffset;
   fLastError.fStack  = fCurrSlot;
   fLastError.fLink   = -1;
   fLastError.fRob    = -1;
   fLastError.fMcm    = -1;
   fLastError.fError  = err;
-  fErrors->Fill();
-
-  return (Form("Event %6i: Eq. %2d S %i - %s : ", 
-              fRawReader->GetEventIndex(), fCurrEquipmentId, fCurrSlot, fgErrorMessages[err]) + msg); 
+  (this->*fStoreError)();
+
+  va_list ap;
+  if (fgErrorDebugLevel[err] > 0) 
+    AliDebug(fgErrorDebugLevel[err], 
+            Form("Event %6i: Eq. %2d S %i - %s : %s", 
+                 fRawReader->GetEventIndex(), fCurrEquipmentId, fCurrSlot, fgkErrorMessages[err],
+                 (va_start(ap, msg), vsprintf(fErrorBuffer, msg, ap), va_end(ap), fErrorBuffer) ));
+  else 
+    AliError(Form("Event %6i: Eq. %2d S %i - %s : %s", 
+                 fRawReader->GetEventIndex(), fCurrEquipmentId, fCurrSlot, fgkErrorMessages[err],
+                 (va_start(ap, msg), vsprintf(fErrorBuffer, msg, ap), va_end(ap), fErrorBuffer) ));
+  fErrorFlags |= fgErrorBehav[err];
 } 
 
 
-TString AliTRDrawStream::LinkError(ErrorCode_t err, TString msg)
+void AliTRDrawStream::LinkError(ErrorCode_t err, const char *const msg, ...)
 { 
-  fLastError.fSector = fCurrEquipmentId - 1024;
+  // register error according to error code on link level 
+  // and return the corresponding error message
+
+  fLastError.fSector = fCurrEquipmentId - kDDLOffset;
   fLastError.fStack  = fCurrSlot;
   fLastError.fLink   = fCurrLink;
   fLastError.fRob    = -1;
   fLastError.fMcm    = -1;
   fLastError.fError  = err;
-  fErrors->Fill();
-
-  return (Form("Event %6i: Eq. %2d S %i l %2i - %s : ", 
-              fRawReader->GetEventIndex(), fCurrEquipmentId, fCurrSlot, fCurrLink, fgErrorMessages[err]) + msg); 
+  (this->*fStoreError)();
+
+  va_list ap;
+  if (fgErrorDebugLevel[err] > 0)
+    AliDebug(fgErrorDebugLevel[err], 
+            Form("Event %6i: Eq. %2d S %i l %2i - %s : %s", 
+                 fRawReader->GetEventIndex(), fCurrEquipmentId, fCurrSlot, fCurrLink, fgkErrorMessages[err],
+                 (va_start(ap, msg), vsprintf(fErrorBuffer, msg, ap), va_end(ap), fErrorBuffer) ));
+  else 
+    AliError(Form("Event %6i: Eq. %2d S %i l %2i - %s : %s", 
+                 fRawReader->GetEventIndex(), fCurrEquipmentId, fCurrSlot, fCurrLink, fgkErrorMessages[err],
+                 (va_start(ap, msg), vsprintf(fErrorBuffer, msg, ap), va_end(ap), fErrorBuffer) ));
+  fErrorFlags |= fgErrorBehav[err];
 } 
 
 
-TString AliTRDrawStream::ROBError(ErrorCode_t err, TString msg)
+void AliTRDrawStream::ROBError(ErrorCode_t err, const char *const msg, ...)
 { 
-  fLastError.fSector = fCurrEquipmentId - 1024;
+  // register error according to error code on ROB level 
+  // and return the corresponding error message
+
+  fLastError.fSector = fCurrEquipmentId - kDDLOffset;
   fLastError.fStack  = fCurrSlot;
   fLastError.fLink   = fCurrLink;
   fLastError.fRob    = fCurrRobPos;
   fLastError.fMcm    = -1;
   fLastError.fError  = err;
-  fErrors->Fill();
-
-  return (Form("Event %6i: Eq. %2d S %i l %2i ROB %i - %s : ", 
-              fRawReader->GetEventIndex(), fCurrEquipmentId, fCurrSlot, fCurrLink, fCurrRobPos, fgErrorMessages[err]) + msg); 
+  (this->*fStoreError)();
+
+  va_list ap;
+  if (fgErrorDebugLevel[err] > 0) 
+    AliDebug(fgErrorDebugLevel[err], 
+            Form("Event %6i: Eq. %2d S %i l %2i ROB %i - %s : %s", 
+                 fRawReader->GetEventIndex(), fCurrEquipmentId, fCurrSlot, fCurrLink, fCurrRobPos, fgkErrorMessages[err],
+                 (va_start(ap, msg), vsprintf(fErrorBuffer, msg, ap), va_end(ap), fErrorBuffer) ));
+  else 
+    AliError(Form("Event %6i: Eq. %2d S %i l %2i ROB %i - %s : %s", 
+                 fRawReader->GetEventIndex(), fCurrEquipmentId, fCurrSlot, fCurrLink, fCurrRobPos, fgkErrorMessages[err], 
+                 (va_start(ap, msg), vsprintf(fErrorBuffer, msg, ap), va_end(ap), fErrorBuffer) ));
+  fErrorFlags |= fgErrorBehav[err];
 } 
 
 
-TString AliTRDrawStream::MCMError(ErrorCode_t err, TString msg)
+void AliTRDrawStream::MCMError(ErrorCode_t err, const char *const msg, ...)
 { 
-  fLastError.fSector = fCurrEquipmentId - 1024;
+  // register error according to error code on MCM level 
+  // and return the corresponding error message
+
+  fLastError.fSector = fCurrEquipmentId - kDDLOffset;
   fLastError.fStack  = fCurrSlot;
   fLastError.fLink   = fCurrLink;
   fLastError.fRob    = fCurrRobPos;
   fLastError.fMcm    = fCurrMcmPos;
   fLastError.fError  = err;
-  fErrors->Fill();
-
-  return (Form("Event %6i: Eq. %2d S %i l %2i ROB %i MCM %2i - %s : ", 
-              fRawReader->GetEventIndex(), fCurrEquipmentId, fCurrSlot, fCurrLink, fCurrRobPos, fCurrMcmPos, fgErrorMessages[err]) + msg); 
+  (this->*fStoreError)();
+
+  va_list ap;
+  if (fgErrorDebugLevel[err] > 0) 
+    AliDebug(fgErrorDebugLevel[err], 
+            Form("Event %6i: Eq. %2d S %i l %2i ROB %i MCM %2i - %s : %s",
+                 fRawReader->GetEventIndex(), fCurrEquipmentId, fCurrSlot, fCurrLink, fCurrRobPos, fCurrMcmPos, fgkErrorMessages[err], 
+                 (va_start(ap, msg), vsprintf(fErrorBuffer, msg, ap), va_end(ap), fErrorBuffer) ));
+  else 
+    AliError(Form("Event %6i: Eq. %2d S %i l %2i ROB %i MCM %2i - %s : %s",
+                 fRawReader->GetEventIndex(), fCurrEquipmentId, fCurrSlot, fCurrLink, fCurrRobPos, fCurrMcmPos, fgkErrorMessages[err], 
+                 (va_start(ap, msg), vsprintf(fErrorBuffer, msg, ap), va_end(ap), fErrorBuffer) ));
+  fErrorFlags |= fgErrorBehav[err];
 }
 
 const char* AliTRDrawStream::GetErrorMessage(ErrorCode_t errCode)
 { 
+  // return the error message for the given error code
+
   if (errCode > 0 && errCode < kLastErrorCode) 
-    return fgErrorMessages[errCode];
+    return fgkErrorMessages[errCode];
   else 
     return ""; 
 } 
+
+void AliTRDrawStream::AliTRDrawStats::ClearStats()
+{
+  // clear statistics (includes clearing sector-wise statistics)
+
+  fBytesRead = 0;
+  for (Int_t iSector = 0; iSector < 18; iSector++) {
+    fStatsSector[iSector].ClearStats();
+  }
+
+}
+
+void AliTRDrawStream::AliTRDrawStats::AliTRDrawStatsSector::ClearStats()
+{
+  // clear statistics (includes clearing HC-wise statistics)
+
+  fBytes = 0;
+  fBytesRead = 0;
+  fNTracklets = 0;
+  fNMCMs = 0;
+  fNChannels = 0;
+
+  for (Int_t iHC = 0; iHC < 60; iHC++) {
+    fStatsHC[iHC].ClearStats();
+  }
+}
+
+void AliTRDrawStream::AliTRDrawStats::AliTRDrawStatsSector::AliTRDrawStatsHC::ClearStats()
+{
+  // clear statistics
+
+  fBytes = 0;
+  fBytesRead = 0;
+  fNTracklets = 0;
+  fNMCMs = 0;
+  fNChannels = 0;
+}
+
+void AliTRDrawStream::SetDumpMCM(Int_t det, Int_t rob, Int_t mcm, Bool_t dump)
+{ 
+  // mark MCM for dumping of raw data
+
+  if (dump) {
+    fDumpMCM[fNDumpMCMs++] = (det << 7) | (rob << 4) | mcm; 
+  }
+  else {
+    Int_t iMCM;
+    for (iMCM = 0; iMCM < fNDumpMCMs; iMCM++) {
+      if (fDumpMCM[iMCM] == ((det << 7) | (rob << 4) | mcm)) {
+       fNDumpMCMs--;
+       break;
+      }
+    }
+    for ( ; iMCM < fNDumpMCMs; iMCM++) {
+      fDumpMCM[iMCM] = fDumpMCM[iMCM+1];
+    }
+  }
+}
+
+Bool_t AliTRDrawStream::DumpingMCM(Int_t det, Int_t rob, Int_t mcm)  const
+{
+  // check if MCM data should be dumped
+
+  for (Int_t iMCM = 0; iMCM < fNDumpMCMs; iMCM++) {
+    if (fDumpMCM[iMCM] == ((det << 7) | (rob << 4) | mcm)) {
+      return kTRUE;
+    }
+  }
+  return kFALSE;
+}
+
+TString AliTRDrawStream::DumpRaw(TString title, UInt_t *start, Int_t length, UInt_t endmarker)
+{
+  // dump raw data
+
+  title += "\n";
+  for (Int_t pos = 0; pos < length; pos += 4) {
+    if ((start[pos+0] != endmarker) && pos+0 < length)
+      if ((start[pos+1] != endmarker && pos+1 < length))
+       if ((start[pos+2] != endmarker && pos+2 < length))
+         if ((start[pos+3] != endmarker && pos+3 < length))
+           title += Form("   0x%08x 0x%08x 0x%08x 0x%08x\n", 
+                         start[pos+0], start[pos+1], start[pos+2], start[pos+3]);
+         else {
+           title += Form("   0x%08x 0x%08x 0x%08x 0x%08x\n", 
+                         start[pos+0], start[pos+1], start[pos+2], start[pos+3]);
+           return title;
+         }
+       else {
+         title += Form("   0x%08x 0x%08x 0x%08x\n", 
+                       start[pos+0], start[pos+1], start[pos+2]);
+         return title;
+       }
+      else {
+       title += Form("   0x%08x 0x%08x\n", 
+                     start[pos+0], start[pos+1]);
+       return title;
+      }
+    else {
+      title += Form("   0x%08x\n", 
+                   start[pos+0]);
+      return title;
+    }
+  }
+  return title;
+}
+
+TString AliTRDrawStream::DumpMcmHeader(TString title, UInt_t word)
+{
+  title += Form("0x%08x -> ROB: %i, MCM: %2i",
+               word, ROB(word), MCM(word));
+  return title;
+}
+
+TString AliTRDrawStream::DumpAdcMask(TString title, UInt_t word)
+{
+  title += Form("0x%08x -> #ch : %2i, 0x%06x (%2i ch)",
+               word, GetNActiveChannels(word), GetActiveChannels(word), GetNActiveChannelsFromMask(word));
+  return title;
+}
+
+AliTRDrawStream::AliTRDrawStreamError::AliTRDrawStreamError(Int_t error, Int_t sector, Int_t stack, Int_t link, Int_t rob, Int_t mcm) : 
+  fError(error),
+  fSector(sector),
+  fStack(stack),
+  fLink(link), 
+  fRob(rob),
+  fMcm(mcm)
+{
+  // ctor
+
+}