]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDrawData.cxx
Fix bug in tracklet reconstruction and add option to AliTRDfeeParam
[u/mrichter/AliRoot.git] / TRD / AliTRDrawData.cxx
index 38f5e9b1a337a62d1ce753da021257a6e596fb46..bb68aa9022589ac39df274db65f29e077b90e32a 100644 (file)
 //                                                                           //
 ///////////////////////////////////////////////////////////////////////////////
 
-#include <Riostream.h>
 #include <TMath.h>
 #include "TClass.h"
 
 #include "AliDAQ.h"
-#include "AliRawDataHeader.h"
+#include "AliRawDataHeaderSim.h"
 #include "AliRawReader.h"
 #include "AliLog.h"
+#include "AliFstream.h"
 
 #include "AliTRDrawData.h"
 #include "AliTRDdigitsManager.h"
 #include "AliTRDgeometry.h"
 #include "AliTRDdataArrayI.h"
+#include "AliTRDdataArrayS.h"
+#include "AliTRDrawStreamBase.h"
 #include "AliTRDRawStream.h"
 #include "AliTRDRawStreamV2.h"
-
 #include "AliTRDcalibDB.h"
-#include "AliFstream.h"
-
 #include "AliTRDSignalIndex.h"
-
 #include "AliTRDfeeParam.h"
 #include "AliTRDmcmSim.h"
 
@@ -57,8 +55,10 @@ AliTRDrawData::AliTRDrawData()
   //
   // Default constructor
   //
+
   fFee = AliTRDfeeParam::Instance();
   fNumberOfDDLs = AliDAQ::NumberOfDdls("TRD");
+
 }
 
 //_____________________________________________________________________________
@@ -71,8 +71,10 @@ AliTRDrawData::AliTRDrawData(const AliTRDrawData &r)
   //
   // Copy constructor
   //
+
   fFee = AliTRDfeeParam::Instance();
   fNumberOfDDLs = AliDAQ::NumberOfDdls("TRD");
+
 }
 
 //_____________________________________________________________________________
@@ -81,6 +83,7 @@ AliTRDrawData::~AliTRDrawData()
   //
   // Destructor
   //
+
 }
 
 //_____________________________________________________________________________
@@ -142,13 +145,19 @@ Bool_t AliTRDrawData::Digits2Raw(AliTRDdigitsManager *digitsManager)
   // This version simulate only raw data with ADC data and not with tracklet.
   //
 
-  const Int_t kMaxHcWords = (fGeo->TBmax()/3)*fGeo->ADCmax()*fGeo->MCMmax()*fGeo->ROBmaxC1()/2 + 100 + 20;
+  const Int_t kMaxHcWords = (fGeo->TBmax()/3)
+                          * fGeo->ADCmax()
+                          * fGeo->MCMmax()
+                          * fGeo->ROBmaxC1()/2 
+                          + 100 + 20;
 
   // Buffer to temporary store half chamber data
-  UInt_t     *hc_buffer   = new UInt_t[kMaxHcWords];
+  UInt_t     *hcBuffer    = new UInt_t[kMaxHcWords];
+  
+  Bool_t newEvent = kFALSE;  // only for correct readout tree
 
   // sect is same as iDDL, so I use only sect here.
-  for (Int_t sect = 0; sect < fGeo->Nsect(); sect++) { 
+  for (Int_t sect = 0; sect < fGeo->Nsector(); sect++) { 
 
     char name[1024];
     sprintf(name,"TRD_%d.ddl",sect + AliTRDRawStream::kDDLOffset);
@@ -156,53 +165,74 @@ Bool_t AliTRDrawData::Digits2Raw(AliTRDdigitsManager *digitsManager)
     AliFstream* of = new AliFstream(name);
 
     // Write a dummy data header
-    AliRawDataHeader  header;  // the event header
+    AliRawDataHeaderSim  header;  // the event header
     UInt_t hpos = of->Tellp();
     of->WriteBuffer((char *) (& header), sizeof(header));
 
     // Reset payload byte size (payload does not include header).
     Int_t npayloadbyte = 0;
 
+    
+
     // GTU common data header (5x4 bytes per super module, shows link mask)
-    for( Int_t cham = 0; cham < fGeo->Ncham(); cham++ ) {
-      UInt_t GtuCdh = (UInt_t)(0xe << 28);
-      for( Int_t plan = 0; plan < fGeo->Nplan(); plan++) {
-       Int_t iDet = fGeo->GetDetector(plan, cham, sect);
+    for( Int_t stack = 0; stack < fGeo->Nstack(); stack++ ) {
+      UInt_t gtuCdh = (UInt_t)(0xe << 28);
+      for( Int_t layer = 0; layer < fGeo->Nlayer(); layer++) {
+       Int_t iDet = fGeo->GetDetector(layer, stack, sect);
+       
        // If chamber status is ok, we assume that the optical link is also OK.
         // This is shown in the GTU link mask.
        if ( AliTRDcalibDB::Instance()->GetChamberStatus(iDet) )
-         GtuCdh = GtuCdh | (3 << (2*plan));
+         gtuCdh = gtuCdh | (3 << (2*layer));
       }
-      of->WriteBuffer((char *) (& GtuCdh), sizeof(GtuCdh));
+      of->WriteBuffer((char *) (& gtuCdh), sizeof(gtuCdh));
       npayloadbyte += 4;
     }
 
     // Prepare chamber data
-    for( Int_t cham = 0; cham < fGeo->Ncham(); cham++) {
-      for( Int_t plan = 0; plan < fGeo->Nplan(); plan++) {
+    for( Int_t stack = 0; stack < fGeo->Nstack(); stack++) {
+      for( Int_t layer = 0; layer < fGeo->Nlayer(); layer++) {
 
-        Int_t iDet = fGeo->GetDetector(plan,cham,sect);
+        Int_t iDet = fGeo->GetDetector(layer,stack,sect);
+       if (iDet == 0) newEvent = kTRUE; // it is expected that each event has at least one tracklet; this is only needed for correct readout tree
+       // Get the digits array
+        AliTRDdataArrayS *digits = (AliTRDdataArrayS *) digitsManager->GetDigits(iDet);
+        if (digits->HasData() ) {  // second part is new!! and is for indicating a new event
 
-        // Get the digits array
-        AliTRDdataArrayI *digits = digitsManager->GetDigits(iDet);
-        digits->Expand();
+          digits->Expand();
 
-        Int_t hcwords = 0;
-       Int_t rv = fFee->GetRAWversion();
+          Int_t hcwords = 0;
+         Int_t rv = fFee->GetRAWversion();
 
-        // Process A side of the chamber
-       if ( rv >= 1 && rv <= 2 ) hcwords = ProduceHcDataV1andV2(digits,0,iDet,hc_buffer,kMaxHcWords);
-       if ( rv == 3 )            hcwords = ProduceHcDataV3     (digits,0,iDet,hc_buffer,kMaxHcWords);
+          // Process A side of the chamber
+         if ( rv >= 1 && rv <= 2 ) {
+            hcwords = ProduceHcDataV1andV2(digits,0,iDet,hcBuffer,kMaxHcWords);
+         }
+         if ( rv == 3 ) { 
+   
+             hcwords = ProduceHcDataV3     (digits,0,iDet,hcBuffer,kMaxHcWords,newEvent);
+             //hcwords = ProduceHcDataV3     (digits,0,iDet,hcBuffer,kMaxHcWords);
+           if(newEvent == kTRUE) newEvent = kFALSE;
+         }
 
-        of->WriteBuffer((char *) hc_buffer, hcwords*4);
-        npayloadbyte += hcwords*4;
+          of->WriteBuffer((char *) hcBuffer, hcwords*4);
+          npayloadbyte += hcwords*4;
 
-        // Process B side of the chamber
-       if ( rv >= 1 && rv <= 2 ) hcwords = ProduceHcDataV1andV2(digits,1,iDet,hc_buffer,kMaxHcWords);
-       if ( rv >= 3 )            hcwords = ProduceHcDataV3     (digits,1,iDet,hc_buffer,kMaxHcWords);
+          // Process B side of the chamber
+         if ( rv >= 1 && rv <= 2 ) {
+            hcwords = ProduceHcDataV1andV2(digits,1,iDet,hcBuffer,kMaxHcWords);
+         }
+         if ( rv >= 3 ) {
+          
+             hcwords = ProduceHcDataV3     (digits,1,iDet,hcBuffer,kMaxHcWords,newEvent);
+             //hcwords = ProduceHcDataV3     (digits,1,iDet,hcBuffer,kMaxHcWords);
+         }
+
+          of->WriteBuffer((char *) hcBuffer, hcwords*4);
+          npayloadbyte += hcwords*4;
+
+       }
 
-        of->WriteBuffer((char *) hc_buffer, hcwords*4);
-        npayloadbyte += hcwords*4;
       }
     }
 
@@ -214,13 +244,14 @@ Bool_t AliTRDrawData::Digits2Raw(AliTRDdigitsManager *digitsManager)
     delete of;
   }
 
-  delete [] hc_buffer;
+  delete [] hcBuffer;
+
   return kTRUE;
 
 }
 
 //_____________________________________________________________________________
-Int_t AliTRDrawData::ProduceHcDataV1andV2(AliTRDdataArrayI *digits, Int_t side
+Int_t AliTRDrawData::ProduceHcDataV1andV2(AliTRDdataArrayS *digits, Int_t side
                                         , Int_t det, UInt_t *buf, Int_t maxSize)
 {
   //
@@ -242,18 +273,18 @@ Int_t AliTRDrawData::ProduceHcDataV1andV2(AliTRDdataArrayI *digits, Int_t side
   // the function will finish without crash (this behaviour is similar to the MCM).
   //
 
-  Int_t          nw = 0;                       // Number of written    words
-  Int_t          of = 0;                       // Number of overflowed words
-  Int_t        plan = fGeo->GetPlane( det );   // Plane
-  Int_t        cham = fGeo->GetChamber( det ); // Chamber
-  Int_t        sect = fGeo->GetSector( det );  // Sector (=iDDL)
-  Int_t        nRow = fGeo->GetRowMax( plan, cham, sect );
-  Int_t        nCol = fGeo->GetColMax( plan );
-  const Int_t nTBin = AliTRDcalibDB::Instance()->GetNumberOfTimeBins();
-  Int_t      kCtype = 0;                       // Chamber type (0:C0, 1:C1)
-  Int_t         iEv = 0xA;                     // Event ID. Now fixed to 10, how do I get event id?
-  UInt_t          x = 0;                       // General used number
-  Int_t          rv = fFee->GetRAWversion();
+  Int_t           nw = 0;                       // Number of written    words
+  Int_t           of = 0;                       // Number of overflowed words
+  Int_t        layer = fGeo->GetLayer( det );   // Layer
+  Int_t        stack = fGeo->GetStack( det );   // Stack
+  Int_t         sect = fGeo->GetSector( det );  // Sector (=iDDL)
+  Int_t         nRow = fGeo->GetRowMax( layer, stack, sect );
+  Int_t         nCol = fGeo->GetColMax( layer );
+  const Int_t kNTBin = AliTRDcalibDB::Instance()->GetNumberOfTimeBins();
+  Int_t       kCtype = 0;                       // Chamber type (0:C0, 1:C1)
+  Int_t          iEv = 0xA;                     // Event ID. Now fixed to 10, how do I get event id?
+  UInt_t           x = 0;                       // General used number
+  Int_t           rv = fFee->GetRAWversion();
 
   // Check the nCol and nRow.
   if ((nCol == 144) && 
@@ -266,8 +297,8 @@ Int_t AliTRDrawData::ProduceHcDataV1andV2(AliTRDdataArrayI *digits, Int_t side
     return 0;
   }
 
-  AliDebug(1,Form("Producing raw data for sect=%d plan=%d cham=%d side=%d"
-                 ,sect,plan,cham,side));
+  AliDebug(1,Form("Producing raw data for sect=%d layer=%d stack=%d side=%d"
+                 ,sect,layer,stack,side));
 
   // Tracklet should be processed here but not implemented yet
 
@@ -283,7 +314,7 @@ Int_t AliTRDrawData::ProduceHcDataV1andV2(AliTRDdataArrayI *digits, Int_t side
   if      ( rv == 1 ) {
     // Now it is the same version as used in SM-I commissioning.
     Int_t  dcs = det+100;      // DCS Serial (in simulation, it is meaningless
-    x = (dcs<<20) | (sect<<15) | (plan<<12) | (cham<<9) | (side<<8) | 1;
+    x = (dcs<<20) | (sect<<15) | (layer<<12) | (stack<<9) | (side<<8) | 1;
     if (nw < maxSize) {
       buf[nw++] = x; 
     }
@@ -295,7 +326,7 @@ Int_t AliTRDrawData::ProduceHcDataV1andV2(AliTRDdataArrayI *digits, Int_t side
     // h[0] (there are 3 HC header)
     Int_t minorv = 0;      // The minor version number
     Int_t add    = 2;      // The number of additional header words to follow
-    x = (1<<31) | (rv<<24) | (minorv<<17) | (add<<14) | (sect<<9) | (plan<<6) | (cham<<3) | (side<<2) | 1;
+    x = (1<<31) | (rv<<24) | (minorv<<17) | (add<<14) | (sect<<9) | (layer<<6) | (stack<<3) | (side<<2) | 1;
     if (nw < maxSize) {
       buf[nw++] = x; 
     }
@@ -303,10 +334,10 @@ Int_t AliTRDrawData::ProduceHcDataV1andV2(AliTRDdataArrayI *digits, Int_t side
       of++;
     }
     // h[1]
-    Int_t bc_ctr   = 99; // bunch crossing counter. Here it is set to 99 always for no reason
-    Int_t pt_ctr   = 15; // pretrigger counter. Here it is set to 15 always for no reason
-    Int_t pt_phase = 11; // pretrigger phase. Here it is set to 11 always for no reason
-    x = (bc_ctr<<16) | (pt_ctr<<12) | (pt_phase<<8) | ((nTBin-1)<<2) | 1;
+    Int_t bcCtr   = 99; // bunch crossing counter. Here it is set to 99 always for no reason
+    Int_t ptCtr   = 15; // pretrigger counter. Here it is set to 15 always for no reason
+    Int_t ptPhase = 11; // pretrigger phase. Here it is set to 11 always for no reason
+    x = (bcCtr<<16) | (ptCtr<<12) | (ptPhase<<8) | ((kNTBin-1)<<2) | 1;
     if (nw < maxSize) {
       buf[nw++] = x; 
     }
@@ -314,15 +345,15 @@ Int_t AliTRDrawData::ProduceHcDataV1andV2(AliTRDdataArrayI *digits, Int_t side
       of++;
     }
     // h[2]
-    Int_t ped_setup       = 1;    // Pedestal filter setup (0:1). Here it is always 1 for no reason
-    Int_t gain_setup      = 1;    // Gain filter setup (0:1). Here it is always 1 for no reason
-    Int_t tail_setup      = 1;    // Tail filter setup (0:1). Here it is always 1 for no reason
-    Int_t xt_setup        = 0;    // Cross talk filter setup (0:1). Here it is always 0 for no reason
-    Int_t nonlin_setup    = 0;    // Nonlinearity filter setup (0:1). Here it is always 0 for no reason
-    Int_t bypass_setup    = 0;    // Filter bypass (for raw data) setup (0:1). Here it is always 0 for no reason
-    Int_t common_additive = 10;   // Digital filter common additive (0:63). Here it is always 10 for no reason
-    x = (ped_setup<<31) | (gain_setup<<30) | (tail_setup<<29) | (xt_setup<<28) | (nonlin_setup<<27)
-      | (bypass_setup<<26) | (common_additive<<20) | 1;
+    Int_t pedSetup       = 1;    // Pedestal filter setup (0:1). Here it is always 1 for no reason
+    Int_t gainSetup      = 1;    // Gain filter setup (0:1). Here it is always 1 for no reason
+    Int_t tailSetup      = 1;    // Tail filter setup (0:1). Here it is always 1 for no reason
+    Int_t xtSetup        = 0;    // Cross talk filter setup (0:1). Here it is always 0 for no reason
+    Int_t nonlinSetup    = 0;    // Nonlinearity filter setup (0:1). Here it is always 0 for no reason
+    Int_t bypassSetup    = 0;    // Filter bypass (for raw data) setup (0:1). Here it is always 0 for no reason
+    Int_t commonAdditive = 10;   // Digital filter common additive (0:63). Here it is always 10 for no reason
+    x = (pedSetup<<31) | (gainSetup<<30) | (tailSetup<<29) | (xtSetup<<28) | (nonlinSetup<<27)
+      | (bypassSetup<<26) | (commonAdditive<<20) | 1;
     if (nw < maxSize) {
       buf[nw++] = x; 
     }
@@ -350,13 +381,13 @@ Int_t AliTRDrawData::ProduceHcDataV1andV2(AliTRDdataArrayI *digits, Int_t side
       for (Int_t iAdc = 0; iAdc < 21; iAdc++ ) {
        Int_t padcol = fFee->GetPadColFromADC(iRob, iMcm, iAdc);
        UInt_t aa = !(iAdc & 1) + 2;
-        UInt_t *a = new UInt_t[nTBin+2];
+        UInt_t *a = new UInt_t[kNTBin+2];
         // 3 timebins are packed into one 32 bits word
-        for (Int_t iT = 0; iT < nTBin; iT+=3) { 
+        for (Int_t iT = 0; iT < kNTBin; iT+=3) { 
           if ((padcol >=    0) && (padcol <  nCol)) {
-           a[iT  ] = ((iT    ) < nTBin ) ? digits->GetDataUnchecked(padrow,padcol,iT    ) : 0;
-           a[iT+1] = ((iT + 1) < nTBin ) ? digits->GetDataUnchecked(padrow,padcol,iT + 1) : 0;
-           a[iT+2] = ((iT + 2) < nTBin ) ? digits->GetDataUnchecked(padrow,padcol,iT + 2) : 0; 
+           a[iT  ] = ((iT    ) < kNTBin ) ? digits->GetDataUnchecked(padrow,padcol,iT    ) : 0;
+           a[iT+1] = ((iT + 1) < kNTBin ) ? digits->GetDataUnchecked(padrow,padcol,iT + 1) : 0;
+           a[iT+2] = ((iT + 2) < kNTBin ) ? digits->GetDataUnchecked(padrow,padcol,iT + 2) : 0; 
          } 
          else {
            a[iT] = a[iT+1] = a[iT+2] = 0; // This happenes at the edge of chamber (should be pedestal! How?)
@@ -372,14 +403,14 @@ Int_t AliTRDrawData::ProduceHcDataV1andV2(AliTRDdataArrayI *digits, Int_t side
         // Diagnostics
         Float_t avg = 0;
         Float_t rms = 0;
-        for (Int_t iT = 0; iT < nTBin; iT++) {
+        for (Int_t iT = 0; iT < kNTBin; iT++) {
           avg += (Float_t) (a[iT]);
        }
-        avg /= (Float_t) nTBin;
-        for (Int_t iT = 0; iT < nTBin; iT++) {
+        avg /= (Float_t) kNTBin;
+        for (Int_t iT = 0; iT < kNTBin; iT++) {
           rms += ((Float_t) (a[iT]) - avg) * ((Float_t) (a[iT]) - avg);
        }
-        rms = TMath::Sqrt(rms / (Float_t) nTBin);
+        rms = TMath::Sqrt(rms / (Float_t) kNTBin);
         if (rms > 1.7) {
           AliDebug(2,Form("Large RMS (>1.7)  (ROB,MCM,ADC)=(%02d,%02d,%02d), avg=%03.1f, rms=%03.1f"
                          ,iRob,iMcm,iAdc,avg,rms));
@@ -404,27 +435,29 @@ Int_t AliTRDrawData::ProduceHcDataV1andV2(AliTRDdataArrayI *digits, Int_t side
 
 }
 
-
 //_____________________________________________________________________________
-Int_t AliTRDrawData::ProduceHcDataV3(AliTRDdataArrayI *digits, Int_t side
-                                    , Int_t det, UInt_t *buf, Int_t maxSize)
+
+//Int_t AliTRDrawData::ProduceHcDataV3(AliTRDdataArrayS *digits, Int_t side , Int_t det, UInt_t *buf, Int_t maxSize)
+Int_t AliTRDrawData::ProduceHcDataV3(AliTRDdataArrayS *digits, Int_t side , Int_t det, UInt_t *buf, Int_t maxSize, Bool_t newEvent = kFALSE)
 {
   //
   // This function simulates: Raw Version == 3 (Zero Suppression Prototype)
   //
 
-  Int_t          nw = 0;                       // Number of written    words
-  Int_t          of = 0;                       // Number of overflowed words
-  Int_t        plan = fGeo->GetPlane( det );   // Plane
-  Int_t        cham = fGeo->GetChamber( det ); // Chamber
-  Int_t        sect = fGeo->GetSector( det );  // Sector (=iDDL)
-  Int_t        nRow = fGeo->GetRowMax( plan, cham, sect );
-  Int_t        nCol = fGeo->GetColMax( plan );
-  const Int_t nTBin = AliTRDcalibDB::Instance()->GetNumberOfTimeBins();
-  Int_t      kCtype = 0;                       // Chamber type (0:C0, 1:C1)
-  Int_t         iEv = 0xA;                     // Event ID. Now fixed to 10, how do I get event id?
-  UInt_t          x = 0;                       // General used number
-  Int_t          rv = fFee->GetRAWversion();
+  Int_t           nw = 0;                       // Number of written    words
+  Int_t           of = 0;                       // Number of overflowed words
+  Int_t        layer = fGeo->GetLayer( det );   // Layer
+  Int_t        stack = fGeo->GetStack( det );   // Stack
+  Int_t         sect = fGeo->GetSector( det );  // Sector (=iDDL)
+  Int_t         nRow = fGeo->GetRowMax( layer, stack, sect );
+  Int_t         nCol = fGeo->GetColMax( layer );
+  const Int_t kNTBin = AliTRDcalibDB::Instance()->GetNumberOfTimeBins();
+  Int_t       kCtype = 0;                       // Chamber type (0:C0, 1:C1)
+  //Int_t          iEv = 0xA;                     // Event ID. Now fixed to 10, how do I get event id?
+
+
+  Bool_t tracklet_on = fFee->GetTracklet();     // **new**
 
   // Check the nCol and nRow.
   if ((nCol == 144) && 
@@ -437,99 +470,118 @@ Int_t AliTRDrawData::ProduceHcDataV3(AliTRDdataArrayI *digits, Int_t side
     return 0;
   }
 
-  AliDebug(1,Form("Producing raw data for sect=%d plan=%d cham=%d side=%d"
-                 ,sect,plan,cham,side));
+  AliDebug(1,Form("Producing raw data for sect=%d layer=%d stack=%d side=%d"
+                 ,sect,layer,stack,side));
 
-  // Tracklet should be processed here but not implemented yet
+  AliTRDmcmSim** mcm = new AliTRDmcmSim*[(kCtype + 3)*(fGeo->MCMmax())];
 
-  // Write end of tracklet marker
-  if (nw < maxSize) {
-    buf[nw++] = kEndoftrackletmarker;
-  } 
-  else {
-    of++;
+  // in case no tracklet-words are processed: write the tracklet-endmarker as well as all additional words immediately and write 
+  // raw-data in one go; if tracklet-processing is enabled, first all tracklet-words of a half-chamber have to be processed before the
+  // additional words (tracklet-endmarker,headers,...)are written. Raw-data is written in a second loop;
+  
+  if (!tracklet_on) {
+      WriteIntermediateWords(buf,nw,of,maxSize,det,side); 
   }
-
-  // Half Chamber header
-  // h[0] (there are 3 HC header)
-  Int_t minorv = 0;    // The minor version number
-  Int_t add    = 2;    // The number of additional header words to follow
-  x = (1<<31) | (rv<<24) | (minorv<<17) | (add<<14) | (sect<<9) | (plan<<6) | (cham<<3) | (side<<2) | 1;
-  if (nw < maxSize) {
-    buf[nw++] = x; 
-  }
-  else {
-    of++;
-  }
-  // h[1]
-  Int_t bc_ctr   = 99; // bunch crossing counter. Here it is set to 99 always for no reason
-  Int_t pt_ctr   = 15; // pretrigger counter. Here it is set to 15 always for no reason
-  Int_t pt_phase = 11; // pretrigger phase. Here it is set to 11 always for no reason
-  x = (bc_ctr<<16) | (pt_ctr<<12) | (pt_phase<<8) | ((nTBin-1)<<2) | 1;
-  if (nw < maxSize) {
-    buf[nw++] = x; 
-  }
-  else {
-    of++;
-  }
-  // h[2]
-  Int_t ped_setup       = 1;  // Pedestal filter setup (0:1). Here it is always 1 for no reason
-  Int_t gain_setup      = 1;  // Gain filter setup (0:1). Here it is always 1 for no reason
-  Int_t tail_setup      = 1;  // Tail filter setup (0:1). Here it is always 1 for no reason
-  Int_t xt_setup        = 0;  // Cross talk filter setup (0:1). Here it is always 0 for no reason
-  Int_t nonlin_setup    = 0;  // Nonlinearity filter setup (0:1). Here it is always 0 for no reason
-  Int_t bypass_setup    = 0;  // Filter bypass (for raw data) setup (0:1). Here it is always 0 for no reason
-  Int_t common_additive = 10; // Digital filter common additive (0:63). Here it is always 10 for no reason
-  x = (ped_setup<<31) | (gain_setup<<30) | (tail_setup<<29) | (xt_setup<<28) | (nonlin_setup<<27)
-    | (bypass_setup<<26) | (common_additive<<20) | 1;
-  if (nw < maxSize) {
-    buf[nw++] = x; 
-  }
-  else {
-    of++;
-  }
-
-
+  
   // Scan for ROB and MCM
-  for (Int_t iRobRow = 0; iRobRow < (kCtype + 3); iRobRow++ ) {
+  // scanning direction such, that tracklet-words are sorted in ascending z and then in ascending y order
+  // ROB numbering on chamber and MCM numbering on ROB increase with decreasing z and increasing y
+  for (Int_t iRobRow =  (kCtype + 3)-1; iRobRow >= 0; iRobRow-- ) {
     Int_t iRob = iRobRow * 2 + side;
-    for (Int_t iMcm = 0; iMcm < fGeo->MCMmax(); iMcm++ ) {
-
-      AliTRDmcmSim *mcm = new AliTRDmcmSim();
-      mcm->Init( det, iRob, iMcm );
-      Int_t padrow = mcm->GetRow();
+    // MCM on one ROB
+    for (Int_t iMcmRB = 0; iMcmRB < fGeo->MCMmax(); iMcmRB++ ) {
+       Int_t iMcm = 16 - 4*(iMcmRB/4 + 1) + (iMcmRB%4);
+       Int_t entry = iRobRow*(fGeo->MCMmax()) + iMcm;
+       
+       mcm[entry] = new AliTRDmcmSim();
+       mcm[entry]->Init( det, iRob, iMcm , newEvent);
+       //mcm[entry]->Init( det, iRob, iMcm);
+       if (newEvent == kTRUE) newEvent = kFALSE; // only one mcm is concerned with new event
+       Int_t padrow = mcm[entry]->GetRow();
+
+       // Copy ADC data to MCM simulator
+       for (Int_t iAdc = 0; iAdc < 21; iAdc++ ) {
+           Int_t padcol = mcm[entry]->GetCol( iAdc );
+           if ((padcol >=    0) && (padcol <  nCol)) {
+               for (Int_t iT = 0; iT < kNTBin; iT++) { 
+                   mcm[entry]->SetData( iAdc, iT, digits->GetDataUnchecked( padrow, padcol, iT) );
+               } 
+           } 
+           else {  // this means it is out of chamber, and masked ADC
+               mcm[entry]->SetDataPedestal( iAdc );
+           }
+       }
 
-      // Copy ADC data to MCM simulator
-      for (Int_t iAdc = 0; iAdc < 21; iAdc++ ) {
-       Int_t padcol = mcm->GetCol( iAdc );
-       if ((padcol >=    0) && (padcol <  nCol)) {
-         for (Int_t iT = 0; iT < nTBin; iT++) { 
-           mcm->SetData( iAdc, iT, digits->GetDataUnchecked( padrow, padcol, iT) );
-         } 
-       } else {  // this means it is out of chamber, and masked ADC
-         mcm->SetDataPedestal( iAdc );
+       // Simulate process in MCM
+       mcm[entry]->Filter();     // Apply filter
+       mcm[entry]->ZSMapping();  // Calculate zero suppression mapping
+
+       if (tracklet_on) {
+           mcm[entry]->Tracklet(); 
+           Int_t tempNw =  mcm[entry]->ProduceTrackletStream( &buf[nw], maxSize - nw );
+           //Int_t tempNw = 0;
+           if( tempNw < 0 ) {
+               of += tempNw;
+               nw += maxSize - nw;
+               AliError(Form("Buffer overflow detected. Please increase the buffer size and recompile."));
+           } else {
+               nw += tempNw;
+           }
        }
-      }
-      // Simulate process in MCM
-      mcm->Filter();     // Apply filter
-      mcm->ZSMapping();  // Calculate zero suppression mapping
-      //mcm->DumpData( "trdmcmdata.txt", "RFZS" ); // debugging purpose
-
-      // Write MCM data to buffer
-      Int_t temp_nw =  mcm->ProduceRawStream( &buf[nw], maxSize - nw );
-      if( temp_nw < 0 ) {
-       of += temp_nw;
-       nw += maxSize - nw;
-       AliError(Form("Buffer overflow detected. Please increase the buffer size and recompile."));
-      } else {
-       nw += temp_nw;
-      }
+       // no tracklets: write raw-data already in this loop
+       else {
+            // Write MCM data to buffer
+           Int_t tempNw =  mcm[entry]->ProduceRawStream( &buf[nw], maxSize - nw );
+           if( tempNw < 0 ) {
+               of += tempNw;
+               nw += maxSize - nw;
+               AliError(Form("Buffer overflow detected. Please increase the buffer size and recompile."));
+           } else {
+               nw += tempNw;
+           }
+           
+           delete mcm[entry];
+       }
+           
+       
 
-      delete mcm;
 
+       //mcm->DumpData( "trdmcmdata.txt", "RFZS" ); // debugging purpose
     }
   }
 
+  // if tracklets are switched on, raw-data can be written only after all tracklets
+  if (tracklet_on) {
+      WriteIntermediateWords(buf,nw,of,maxSize,det,side); 
+  
+  
+      // Scan for ROB and MCM
+      for (Int_t iRobRow =  (kCtype + 3)-1; iRobRow >= 0; iRobRow-- ) {
+         //Int_t iRob = iRobRow * 2 + side;
+         // MCM on one ROB
+         for (Int_t iMcmRB = 0; iMcmRB < fGeo->MCMmax(); iMcmRB++ ) {
+             Int_t iMcm = 16 - 4*(iMcmRB/4 + 1) + (iMcmRB%4);
+             
+             Int_t entry = iRobRow*(fGeo->MCMmax()) + iMcm; 
+             
+             // Write MCM data to buffer
+             Int_t tempNw =  mcm[entry]->ProduceRawStream( &buf[nw], maxSize - nw );
+             if( tempNw < 0 ) {
+                 of += tempNw;
+                 nw += maxSize - nw;
+                 AliError(Form("Buffer overflow detected. Please increase the buffer size and recompile."));
+             } else {
+                 nw += tempNw;
+             }
+             
+             delete mcm[entry];
+         
+         }
+      }
+  }
+
+  delete [] mcm;
+  
   // Write end of raw data marker
   if (nw < maxSize) {
     buf[nw++] = kEndofrawdatamarker; 
@@ -541,6 +593,7 @@ Int_t AliTRDrawData::ProduceHcDataV3(AliTRDdataArrayI *digits, Int_t side
     AliError("Buffer overflow. Data is truncated. Please increase buffer size and recompile.");
   }
 
+
   return nw;
 
 }
@@ -552,7 +605,121 @@ AliTRDdigitsManager *AliTRDrawData::Raw2Digits(AliRawReader *rawReader)
   // Vx of the raw data reading
   //
 
-  AliTRDdataArrayI *digits = 0;
+  AliTRDdataArrayS *digits = 0;
+  AliTRDdataArrayI *track0 = 0;
+  AliTRDdataArrayI *track1 = 0;
+  AliTRDdataArrayI *track2 = 0; 
+
+  //AliTRDSignalIndex *indexes = 0;
+  // Create the digits manager
+  AliTRDdigitsManager* digitsManager = new AliTRDdigitsManager();
+  digitsManager->CreateArrays();
+
+  //AliTRDRawStream input(rawReader);
+  //   AliTRDRawStreamV2 input(rawReader);
+  //   input.SetRawVersion( fFee->GetRAWversion() );
+  //   input.Init();
+
+  AliTRDrawStreamBase *pinput = AliTRDrawStreamBase::GetRawStream(rawReader);
+  AliTRDrawStreamBase &input = *pinput;
+
+  AliInfo(Form("Stream version: %s", input.IsA()->GetName()));
+
+  // Loop through the digits
+  Int_t det    = 0;
+
+  while (det >= 0)
+    {
+      det = input.NextChamber(digitsManager);
+      if (det >= 0)
+       {
+         // get...
+         digits = (AliTRDdataArrayS *) digitsManager->GetDigits(det);
+         track0 = (AliTRDdataArrayI *) digitsManager->GetDictionary(det,0);
+         track1 = (AliTRDdataArrayI *) digitsManager->GetDictionary(det,1);
+         track2 = (AliTRDdataArrayI *) digitsManager->GetDictionary(det,2);
+         // and compress
+         if (digits) digits->Compress(1,0);
+         if (track0) track0->Compress(1,0);
+         if (track1) track1->Compress(1,0);
+         if (track2) track2->Compress(1,0);
+       }
+    }
+
+  delete pinput;
+  pinput = NULL;
+
+  return digitsManager;
+}
+
+
+//_____________________________________________________________________________
+void AliTRDrawData::WriteIntermediateWords(UInt_t* buf, Int_t& nw, Int_t& of, const Int_t& maxSize, const Int_t& det, const Int_t& side) {
+    
+    Int_t        layer = fGeo->GetLayer( det );   // Layer
+    Int_t        stack = fGeo->GetStack( det );   // Stack
+    Int_t         sect = fGeo->GetSector( det );  // Sector (=iDDL)
+    Int_t           rv = fFee->GetRAWversion();
+    const Int_t kNTBin = AliTRDcalibDB::Instance()->GetNumberOfTimeBins();
+    UInt_t           x = 0;
+
+    // Write end of tracklet marker
+    if (nw < maxSize) {
+       buf[nw++] = kEndoftrackletmarker;
+    } 
+    else {
+       of++;
+    }
+    
+  // Half Chamber header
+  // h[0] (there are 3 HC header)
+    Int_t minorv = 0;    // The minor version number
+    Int_t add    = 2;    // The number of additional header words to follow
+    x = (1<<31) | (rv<<24) | (minorv<<17) | (add<<14) | (sect<<9) | (layer<<6) | (stack<<3) | (side<<2) | 1;
+    if (nw < maxSize) {
+       buf[nw++] = x; 
+    }
+    else {
+       of++;
+    }
+    // h[1]
+    Int_t bcCtr   = 99; // bunch crossing counter. Here it is set to 99 always for no reason
+    Int_t ptCtr   = 15; // pretrigger counter. Here it is set to 15 always for no reason
+    Int_t ptPhase = 11; // pretrigger phase. Here it is set to 11 always for no reason
+    x = (bcCtr<<16) | (ptCtr<<12) | (ptPhase<<8) | ((kNTBin-1)<<2) | 1;
+    if (nw < maxSize) {
+       buf[nw++] = x; 
+    }
+    else {
+       of++;
+    }
+    // h[2]
+    Int_t pedSetup       = 1;  // Pedestal filter setup (0:1). Here it is always 1 for no reason
+    Int_t gainSetup      = 1;  // Gain filter setup (0:1). Here it is always 1 for no reason
+    Int_t tailSetup      = 1;  // Tail filter setup (0:1). Here it is always 1 for no reason
+    Int_t xtSetup        = 0;  // Cross talk filter setup (0:1). Here it is always 0 for no reason
+    Int_t nonlinSetup    = 0;  // Nonlinearity filter setup (0:1). Here it is always 0 for no reason
+    Int_t bypassSetup    = 0;  // Filter bypass (for raw data) setup (0:1). Here it is always 0 for no reason
+    Int_t commonAdditive = 10; // Digital filter common additive (0:63). Here it is always 10 for no reason
+    x = (pedSetup<<31) | (gainSetup<<30) | (tailSetup<<29) | (xtSetup<<28) | (nonlinSetup<<27)
+       | (bypassSetup<<26) | (commonAdditive<<20) | 1;
+    if (nw < maxSize) {
+       buf[nw++] = x; 
+    }
+    else {
+       of++;
+    } 
+}
+
+
+//_____________________________________________________________________________
+AliTRDdigitsManager *AliTRDrawData::Raw2DigitsOLD(AliRawReader *rawReader)
+{
+  //
+  // Vx of the raw data reading
+  //
+
+  AliTRDdataArrayS *digits = 0;
   AliTRDdataArrayI *track0 = 0;
   AliTRDdataArrayI *track1 = 0;
   AliTRDdataArrayI *track2 = 0; 
@@ -587,10 +754,10 @@ AliTRDdigitsManager *AliTRDrawData::Raw2Digits(AliRawReader *rawReader)
          if (track2) track2->Compress(1,0);
        
          // Add a container for the digits of this detector
-         digits = digitsManager->GetDigits(det);
-         track0 = digitsManager->GetDictionary(det,0);
-         track1 = digitsManager->GetDictionary(det,1);
-         track2 = digitsManager->GetDictionary(det,2);
+         digits = (AliTRDdataArrayS *) digitsManager->GetDigits(det);
+         track0 = (AliTRDdataArrayI *) digitsManager->GetDictionary(det,0);
+         track1 = (AliTRDdataArrayI *) digitsManager->GetDictionary(det,1);
+         track2 = (AliTRDdataArrayI *) digitsManager->GetDictionary(det,2);
 
          // Allocate memory space for the digits buffer
          if (digits->GetNtime() == 0)