]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TOF/AliTOFRawStream.cxx
Update the wagon task with pi0 correlations and change histogram ranges, some cosmeti...
[u/mrichter/AliRoot.git] / TOF / AliTOFRawStream.cxx
index 16910ce318d5710c908bad6f5b87b7ecd95d421b..8976bc0f906b96a34dcae7949510135627c180f9 100644 (file)
@@ -102,6 +102,7 @@ Revision 0.01  2005/07/22 A. De Caro
 #include "Riostream.h"
 
 #include "TClonesArray.h"
+#include "TStopwatch.h"
 
 #include "AliDAQ.h"
 #include "AliLog.h"
@@ -111,6 +112,8 @@ Revision 0.01  2005/07/22 A. De Caro
 #include "AliTOFrawData.h"
 #include "AliTOFRawMap.h"
 #include "AliTOFRawStream.h"
+#include "AliTOFdigit.h"
+#include "AliTOFSDigit.h"
 //#include "AliTOFCableLengthMap.h"
 
 #include "AliTOFHitData.h"
@@ -122,31 +125,31 @@ ClassImp(AliTOFRawStream)
 
 const Int_t AliTOFRawStream::fgkddlBCshift[72] = 
 {
-  2, 2, -1, -1,
-  2, 2,  0,  0,
-  2, 2,  0,  0,
-  2, 2,  0,  0,
-  2, 2,  0,  0,
-  2, 2,  0,  0,
-  2, 2,  0,  0,
-  2, 2,  0,  0,
-  2, 2,  0,  0,
-  2, 2,  0,  0,
-  2, 2, -1, -1,
-  2, 2, -1, -1,
-  2, 2, -2, -2,
-  2, 2, -2, -2,
-  2, 2, -2, -2,
-  2, 2, -1, -1,
-  2, 2, -1, -1,
-  2, 2, -1, -1
+  0, 0, 0, 0,
+  0, 0, 0, 0,
+  0, 0, 0, 0,
+  0, 0, 0, 0,
+  0, 0, 0, 0,
+  0, 0, 0, 0,
+  0, 0, 0, 0,
+  0, 0, 0, 0,
+  0, 0, 0, 0,
+  0, 0, 0, 0,
+  0, 0, 0, 0,
+  0, 0, 0, 0,
+  0, 0, 0, 0,
+  0, 0, 0, 0,
+  0, 0, 0, 0,
+  0, 0, 0, 0,
+  0, 0, 0, 0,
+  0, 0, 0, 0
 };
 
 Bool_t AliTOFRawStream::fgApplyBCCorrections = kTRUE;
 //_____________________________________________________________________________
 AliTOFRawStream::AliTOFRawStream(AliRawReader* rawReader):
   fRawReader(rawReader),
-  fTOFrawData(0x0),
+  fTOFrawData(new TClonesArray("AliTOFrawData",1000)),
   fDecoder(new AliTOFDecoder()),
   fDDL(-1),
   fTRM(-1),
@@ -174,52 +177,46 @@ AliTOFRawStream::AliTOFRawStream(AliRawReader* rawReader):
   fInsideLTM(kFALSE),
   fInsideTRMchain0(kFALSE),
   fInsideTRMchain1(kFALSE),
+  //fDataBuffer(),
+  //fPackedDataBuffer(),
   fLocalEventCounterDRM(-1),
   fLocalEventCounterLTM(-1),
-  fLocalEventCounterTRM(0x0),
-  fLocalEventCounterChain(0x0),
-  fChainBunchID(0x0),
-  fCableLengthMap(0x0),
-  fEventID(0)
+  //fLocalEventCounterTRM(),
+  //fLocalEventCounterChain(),
+  //fChainBunchID(),
+  //fCableLengthMap(new AliTOFCableLengthMap()),
+  fEventID(0),
+  fNewDecoderVersion(0)
 {
   //
   // create an object to read TOF raw digits
   //
 
   for (Int_t i=0;i<AliDAQ::NumberOfDdls("TOF");i++){
-    fDataBuffer[i]=new AliTOFHitDataBuffer();
-    fPackedDataBuffer[i]=new AliTOFHitDataBuffer();
+    ResetDataBuffer(i);
+    ResetPackedDataBuffer(i);
   }
 
-  fTOFrawData = new TClonesArray("AliTOFrawData",1000);
+  //fTOFrawData = new TClonesArray("AliTOFrawData",1000);
   fTOFrawData->SetOwner();
 
   fRawReader->Reset();
   fRawReader->Select("TOF");
 
-  fLocalEventCounterTRM = new Int_t[13];
-  fLocalEventCounterChain = new Int_t*[13];
-  fChainBunchID = new Int_t*[13];
-  for (Int_t j=0;j<13;j++){
-    fLocalEventCounterTRM[j] = -1;
-    fLocalEventCounterChain[j] = new Int_t[2];
-    fChainBunchID[j] = new Int_t[2];
-    for (Int_t k=0;k<2;k++){
-      fLocalEventCounterChain[j][k] = -1;
-      fChainBunchID[j][k] = -1;
+  for (Int_t jj=0;jj<13;jj++) {
+    fLocalEventCounterTRM[jj] = -1;
+    for (Int_t ii=0;ii<2;ii++) {
+      fLocalEventCounterChain[jj][ii] = -1;
+      fChainBunchID[jj][ii] = -1;
     }
   }
 
-  fCableLengthMap = new AliTOFCableLengthMap();
-
-  fEventID = (Int_t)fRawReader->GetBCID(); //bunch crossing
-
 }
 
 //_____________________________________________________________________________
 AliTOFRawStream::AliTOFRawStream():
-  fRawReader(0x0), 
-  fTOFrawData(0x0),
+  fRawReader(0x0),
+  fTOFrawData(new TClonesArray("AliTOFrawData",1000)),
   fDecoder(new AliTOFDecoder()),
   fDDL(-1),
   fTRM(-1),
@@ -247,130 +244,92 @@ AliTOFRawStream::AliTOFRawStream():
   fInsideLTM(kFALSE),
   fInsideTRMchain0(kFALSE),
   fInsideTRMchain1(kFALSE),
+  //fDataBuffer(),
+  //fPackedDataBuffer(),
   fLocalEventCounterDRM(-1),
   fLocalEventCounterLTM(-1),
-  fLocalEventCounterTRM(0x0),
-  fLocalEventCounterChain(0x0),
-  fChainBunchID(0x0),
-  fCableLengthMap(0x0),
-  fEventID(0)
+  //fLocalEventCounterTRM(),
+  //fLocalEventCounterChain(),
+  //fChainBunchID(),
+  //fCableLengthMap(new AliTOFCableLengthMap()),
+  fEventID(0),
+  fNewDecoderVersion(0)
 {
   //
   // default ctr
   //
   for (Int_t i=0;i<AliDAQ::NumberOfDdls("TOF");i++){
-    fDataBuffer[i]=new AliTOFHitDataBuffer();
-    fPackedDataBuffer[i]=new AliTOFHitDataBuffer();
+    ResetDataBuffer(i);
+    ResetPackedDataBuffer(i);
   }
 
-  fTOFrawData = new TClonesArray("AliTOFrawData",1000);
+  //fTOFrawData = new TClonesArray("AliTOFrawData",1000);
   fTOFrawData->SetOwner();
 
-  fLocalEventCounterTRM = new Int_t[13];
-  fLocalEventCounterChain = new Int_t*[13];
-  fChainBunchID = new Int_t*[13];
   for (Int_t j=0;j<13;j++){
     fLocalEventCounterTRM[j] = -1;
-    fLocalEventCounterChain[j] = new Int_t[2];
-    fChainBunchID[j] = new Int_t[2];
     for (Int_t k=0;k<2;k++){
       fLocalEventCounterChain[j][k] = -1;
       fChainBunchID[j][k] = -1;
     }
   }
 
-  fCableLengthMap = new AliTOFCableLengthMap();
-
 }
 
 //_____________________________________________________________________________
 AliTOFRawStream::AliTOFRawStream(const AliTOFRawStream& stream) :
   TObject(stream),
-  fRawReader(0x0),
-  fTOFrawData(0x0),
+  fRawReader(stream.fRawReader),
+  fTOFrawData(stream.fTOFrawData),
   fDecoder(new AliTOFDecoder()),
-  fDDL(-1),
-  fTRM(-1),
-  fTRMchain(-1),
-  fTDC(-1),
-  fTDCchannel(-1),
-  fTime(-1),
-  fToT(-1),
-  fLeadingEdge(-1),
-  fTrailingEdge(-1),
-  fErrorFlag(-1),
-  fSector(-1),
-  fPlate(-1),
-  fStrip(-1),
-  fPadX(-1),
-  fPadZ(-1),
-  fPackedDigits(0),
-  fWordType(-1),
-  fSlotID(-1),
-  fACQ(-1),
-  fPSbit(-1),
-  fTDCerrorFlag(-1),
-  fInsideDRM(kFALSE),
-  fInsideTRM(kFALSE),
-  fInsideLTM(kFALSE),
-  fInsideTRMchain0(kFALSE),
-  fInsideTRMchain1(kFALSE),
-  fLocalEventCounterDRM(-1),
-  fLocalEventCounterLTM(-1),
-  fLocalEventCounterTRM(0x0),
-  fLocalEventCounterChain(0x0),
-  fChainBunchID(0x0),
-  fCableLengthMap(0x0),
-  fEventID(0)
+  fDDL(stream.fDDL),
+  fTRM(stream.fTRM),
+  fTRMchain(stream.fTRMchain),
+  fTDC(stream.fTDC),
+  fTDCchannel(stream.fTDCchannel),
+  fTime(stream.fTime),
+  fToT(-stream.fToT),
+  fLeadingEdge(stream.fLeadingEdge),
+  fTrailingEdge(stream.fTrailingEdge),
+  fErrorFlag(stream.fErrorFlag),
+  fSector(stream.fSector),
+  fPlate(stream.fPlate),
+  fStrip(stream.fStrip),
+  fPadX(stream.fPadX),
+  fPadZ(stream.fPadZ),
+  fPackedDigits(stream.fPackedDigits),
+  fWordType(stream.fWordType),
+  fSlotID(stream.fSlotID),
+  fACQ(stream.fACQ),
+  fPSbit(stream.fPSbit),
+  fTDCerrorFlag(stream.fTDCerrorFlag),
+  fInsideDRM(stream.fInsideDRM),
+  fInsideTRM(stream.fInsideTRM),
+  fInsideLTM(stream.fInsideLTM),
+  fInsideTRMchain0(stream.fInsideTRMchain0),
+  fInsideTRMchain1(stream.fInsideTRMchain1),
+  //fDataBuffer(),
+  //fPackedDataBuffer(),
+  fLocalEventCounterDRM(stream.fLocalEventCounterDRM),
+  fLocalEventCounterLTM(stream.fLocalEventCounterLTM),
+  //fLocalEventCounterTRM(),
+  //fLocalEventCounterChain(),
+  //fChainBunchID(),
+  //fCableLengthMap(stream.fCableLengthMap),
+  fEventID(stream.fEventID),
+  fNewDecoderVersion(stream.fNewDecoderVersion)
 {
   //
   // copy constructor
   //
 
-  fRawReader = stream.fRawReader;
-
-  fTOFrawData = stream.fTOFrawData;
-
-  fDDL = stream.fDDL;
-  fTRM = stream.fTRM;
-  fTRMchain = stream.fTRMchain;
-  fTDC = stream.fTDC;
-  fTDCchannel = stream.fTDCchannel;
-  fTime = stream.fTime;
-  fToT = stream.fToT;
-  fLeadingEdge = stream.fLeadingEdge;
-  fTrailingEdge = stream.fTrailingEdge;
-
-  fErrorFlag = stream.fErrorFlag;
-
-  fSector = stream.fSector;
-  fPlate = stream.fPlate;
-  fStrip = stream.fStrip;
-  fPadX = stream.fPadX;
-  fPadZ = stream.fPadZ;
-
-  fPackedDigits = stream.fPackedDigits;
-
-  fWordType = stream.fWordType;
-  fSlotID = stream.fSlotID;
-  fACQ = stream.fACQ;
-  fPSbit = stream.fPSbit;
-  fTDCerrorFlag = stream.fTDCerrorFlag;
-  fInsideDRM = stream.fInsideDRM;
-  fInsideTRM = stream.fInsideTRM;
-  fInsideLTM = stream.fInsideLTM;
-  fInsideTRMchain0 = stream.fInsideTRMchain0;
-  fInsideTRMchain1 = stream.fInsideTRMchain1;
-
   for (Int_t i=0;i<AliDAQ::NumberOfDdls("TOF");i++){
-    fDataBuffer[i]= new AliTOFHitDataBuffer(*stream.fDataBuffer[i]);
-    fPackedDataBuffer[i]= new AliTOFHitDataBuffer(*stream.fPackedDataBuffer[i]);
+    fDataBuffer[i] = stream.fDataBuffer[i];
+    fPackedDataBuffer[i] = stream.fPackedDataBuffer[i];
   }
 
   fTOFrawData = new TClonesArray(*stream.fTOFrawData);
 
-  fLocalEventCounterDRM = stream.fLocalEventCounterDRM;
-  fLocalEventCounterLTM = stream.fLocalEventCounterLTM;
   for (Int_t j=0;j<13;j++){
     fLocalEventCounterTRM[j] = stream.fLocalEventCounterTRM[j];
     for (Int_t k=0;k<2;k++){
@@ -379,10 +338,6 @@ AliTOFRawStream::AliTOFRawStream(const AliTOFRawStream& stream) :
     }
   }
 
-  fCableLengthMap = stream.fCableLengthMap;
-
-  fEventID = stream.fEventID;
-
 }
 
 //_____________________________________________________________________________
@@ -392,6 +347,11 @@ AliTOFRawStream& AliTOFRawStream::operator = (const AliTOFRawStream& stream)
   // assignment operator
   //
 
+  if (this == &stream)
+    return *this;
+
+  TObject::operator=(stream);
+
   fRawReader = stream.fRawReader;
 
   fTOFrawData = stream.fTOFrawData;
@@ -443,9 +403,10 @@ AliTOFRawStream& AliTOFRawStream::operator = (const AliTOFRawStream& stream)
     }
   }
 
-  fCableLengthMap = stream.fCableLengthMap;
+  //fCableLengthMap = stream.fCableLengthMap;
 
   fEventID = stream.fEventID;
+  fNewDecoderVersion = stream.fNewDecoderVersion;
 
   return *this;
 
@@ -458,22 +419,12 @@ AliTOFRawStream::~AliTOFRawStream()
 
   fPackedDigits = 0;
 
-  for (Int_t i=0;i<72;i++){ 
-    delete fDataBuffer[i];
-    delete fPackedDataBuffer[i];
-  }
-
   delete fDecoder;
 
   fTOFrawData->Clear();
   delete fTOFrawData;
 
-  delete [] fLocalEventCounterTRM;
-  for (Int_t ii=0; ii<2; ii++) {
-    delete [] fLocalEventCounterChain[ii];
-    delete [] fChainBunchID[ii];
-  }
-  delete fCableLengthMap;
+  //delete fCableLengthMap;
 
 }
 
@@ -486,6 +437,8 @@ void AliTOFRawStream::LoadRawData(Int_t indexDDL)
   // To load raw data
   //
 
+  fEventID = (Int_t)fRawReader->GetBCID(); //bunch crossing
+
   fTOFrawData->Clear();
 
   TClonesArray &arrayTofRawData =  *fTOFrawData;
@@ -493,8 +446,8 @@ void AliTOFRawStream::LoadRawData(Int_t indexDDL)
   fPackedDigits = 0;
 
   // create raw data map
-  AliTOFRawMap *rawMap = new AliTOFRawMap(fTOFrawData);
-  rawMap->Clear();
+  AliTOFRawMap rawMap(fTOFrawData);
+  rawMap.Clear();
 
   Int_t slot[4] = {-1, -1, -1, -1};
 
@@ -503,8 +456,10 @@ void AliTOFRawStream::LoadRawData(Int_t indexDDL)
   for (Int_t ii=0; ii<13; ii++)
     fLocalEventCounterTRM[ii] = -1;
   for (Int_t ii=0; ii<13; ii++)
-    for (Int_t jj=0; jj<2; jj++)
+    for (Int_t jj=0; jj<2; jj++) {
       fLocalEventCounterChain[ii][jj] = -1;
+      fChainBunchID[ii][jj] = -1;
+    }
 
   fRawReader->Reset();
   fRawReader->Select("TOF", indexDDL, indexDDL);
@@ -524,9 +479,9 @@ void AliTOFRawStream::LoadRawData(Int_t indexDDL)
       slot[2] = fTDC;
       slot[3] = fTDCchannel;
 
-      if (rawMap->TestHit(slot) != kEmpty) {
+      if (rawMap.TestHit(slot) != kEmpty) {
 
-       rawDigit = static_cast<AliTOFrawData*>(rawMap->GetHit(slot));
+       rawDigit = static_cast<AliTOFrawData*>(rawMap.GetHit(slot));
 
        if (rawDigit->GetLeading()!=-1 && rawDigit->GetTrailing()==-1 &&
            fLeadingEdge==-1 && fTrailingEdge!=-1) {
@@ -541,7 +496,7 @@ void AliTOFRawStream::LoadRawData(Int_t indexDDL)
 
            new (arrayTofRawData[fPackedDigits++]) AliTOFrawData(fTRM, fTRMchain, fTDC, fTDCchannel, fTime, fToT, fLeadingEdge, fTrailingEdge, fPSbit, fACQ, fErrorFlag);
 
-           rawMap->SetHit(slot);
+           rawMap.SetHit(slot);
 
          }
 
@@ -551,16 +506,14 @@ void AliTOFRawStream::LoadRawData(Int_t indexDDL)
 
        new (arrayTofRawData[fPackedDigits++]) AliTOFrawData(fTRM, fTRMchain, fTDC, fTDCchannel, fTime, fToT, fLeadingEdge, fTrailingEdge, fPSbit, fACQ, fErrorFlag);
 
-       rawMap->SetHit(slot);
+       rawMap.SetHit(slot);
 
-      } // else if (rawMap->TestHit(slot) == kEmpty)
+      } // else if (rawMap.TestHit(slot) == kEmpty)
 
     } // if (signal)
 
   } // closed -> while (Next())
 
-  rawMap->Delete();
-
 }
 
 //_____________________________________________________________________________
@@ -793,10 +746,7 @@ Bool_t AliTOFRawStream::Next()
          AliDebug(2,"Apply nominal DDL BC time-shift correction");
          AliDebug(2,"Apply deltaBC time-shift correction");
          AliDebug(2,Form(" fChainBunchID[%d][%d] = %d ,fEventID = %d",fTRM,fTRMchain,fChainBunchID[fTRM][fTRMchain],fEventID));
-         fTime +=
-           (Int_t)(fgkddlBCshift[fDDL]*25./AliTOFGeometry::TdcBinWidth()*1.E+03)
-           +
-           (Int_t)((fChainBunchID[fTRM][fTRMchain]-fEventID)*25./AliTOFGeometry::TdcBinWidth()*1.E+03);
+         fTime += fgkddlBCshift[fDDL] * 1024 + (fChainBunchID[fTRM][fTRMchain] - fEventID) * 1024;
        }
        break;
 
@@ -811,10 +761,7 @@ Bool_t AliTOFRawStream::Next()
          AliDebug(2,"Apply nominal DDL BC time-shift correction");
          AliDebug(2,"Apply deltaBC time-shift correction");
          AliDebug(2,Form(" fChainBunchID[%d][%d] = %d ,fEventID = %d",fTRM,fTRMchain,fChainBunchID[fTRM][fTRMchain],fEventID));
-         fLeadingEdge +=
-           (Int_t)(fgkddlBCshift[fDDL]*25./AliTOFGeometry::TdcBinWidth()*1.E+03)
-           +
-           (Int_t)((fChainBunchID[fTRM][fTRMchain]-fEventID)*25./AliTOFGeometry::TdcBinWidth()*1.E+03);
+         fLeadingEdge += fgkddlBCshift[fDDL] * 1024 + (fChainBunchID[fTRM][fTRMchain] - fEventID) * 1024;
        }
        break;
 
@@ -829,10 +776,7 @@ Bool_t AliTOFRawStream::Next()
          AliDebug(2,"Apply nominal DDL BC time-shift correction");
          AliDebug(2,"Apply deltaBC time-shift correction");
          AliDebug(2,Form(" fChainBunchID[%d][%d] = %d ,fEventID = %d",fTRM,fTRMchain,fChainBunchID[fTRM][fTRMchain],fEventID));
-         fTrailingEdge +=
-           (Int_t)(fgkddlBCshift[fDDL]*25./AliTOFGeometry::TdcBinWidth()*1.E+03)
-           +
-           (Int_t)((fChainBunchID[fTRM][fTRMchain]-fEventID)*25./AliTOFGeometry::TdcBinWidth()*1.E+03);
+         fTrailingEdge += fgkddlBCshift[fDDL] * 1024 + (fChainBunchID[fTRM][fTRMchain] - fEventID) * 1024;
        }
        break;
 
@@ -846,10 +790,7 @@ Bool_t AliTOFRawStream::Next()
          AliDebug(2,"Apply nominal DDL BC time-shift correction");
          AliDebug(2,"Apply deltaBC time-shift correction");
          AliDebug(2,Form(" fChainBunchID[%d][%d] = %d ,fEventID = %d",fTRM,fTRMchain,fChainBunchID[fTRM][fTRMchain],fEventID));
-         fTime +=
-           (Int_t)(fgkddlBCshift[fDDL]*25./AliTOFGeometry::TdcBinWidth()*1.E+03)
-           +
-           (Int_t)((fChainBunchID[fTRM][fTRMchain]-fEventID)*25./AliTOFGeometry::TdcBinWidth()*1.E+03);
+         fTime += fgkddlBCshift[fDDL] * 1024 + (fChainBunchID[fTRM][fTRMchain] - fEventID) * 1024;
        }
        break;
 
@@ -1217,7 +1158,7 @@ Int_t AliTOFRawStream::Equip2VolNpad(Int_t iDDL, Int_t iChain, Int_t nTDC,
 
   if (((iDDL==1 || iDDL==2) && iPadAlongTheStrip< AliTOFGeometry::NpadX()) ||
       ((iDDL==0 || iDDL==3) && iPadAlongTheStrip>=AliTOFGeometry::NpadX())) {
-    std::cerr << "Problems with the padX number!" << endl;
+    std::cerr << "Warning -> AliTOFRawStream::Equip2VolNpad: Problems with the padX number!" << endl;
     //AliWarning("Problems with the padX number!");
   }
   return iPadAlongTheStrip;
@@ -1298,7 +1239,7 @@ void AliTOFRawStream::EquipmentId2VolumeId(AliTOFHitData *hitData, Int_t *volume
 //----------------------------------------------------------------------------
 void AliTOFRawStream::EquipmentId2VolumeId(Int_t nDDL, Int_t nTRM, Int_t iChain,
                                        Int_t nTDC, Int_t iCH,
-                                       Int_t *volume) const
+                                       Int_t *volume)
 {
   //
   // To convert:
@@ -1316,29 +1257,39 @@ void AliTOFRawStream::EquipmentId2VolumeId(Int_t nDDL, Int_t nTRM, Int_t iChain,
   //      padZ   number, i.e. volume[4] (variable in [0, 1])
   //
 
+  for (Int_t ii=0; ii<5; ii++) volume[ii] = -1;
+
   Int_t iDDL = GetDDLnumberPerSector(nDDL);
 
+  if (iDDL%2==1 && nTRM==3 && nTDC/3>0) { // Signal not coming from a TOF pad but -probably- from a TOF OR signal
+    //printf("Info -> AliTOFRawStream::EquipmentId2VolumeId: Signal not coming from a TOF pad but -probably- from a TOF OR signal (%2d %2d %2d)\n", nDDL, nTRM, nTDC);
+    return;
+  }
+
   Int_t iSector = GetSectorNumber(nDDL);
 
   Int_t iPlate = Equip2VolNplate(iDDL, nTRM, nTDC);
   if (iPlate==-1) {
-    if (fRawReader)
-      fRawReader->AddMajorErrorLog(kPlateError,"plate = -1");
-    AliWarning("Problems with the plate number!");
+    /*if (fRawReader)
+      fRawReader->AddMajorErrorLog(kPlateError,"plate = -1");*/
+    printf("Warning -> AliTOFRawStream::EquipmentId2VolumeId: Problems with the plate number (%2d %2d %2d)!\n",
+          nDDL, nTRM, nTDC);
   }
 
   Int_t iStrip = Equip2VolNstrip(iDDL, nTRM, nTDC);
   if (iStrip==-1) {
-    if (fRawReader)
-      fRawReader->AddMajorErrorLog(kStripError,"strip = -1");
-    AliWarning("Problems with the strip number!");
+    /*if (fRawReader)
+      fRawReader->AddMajorErrorLog(kStripError,"strip = -1");*/
+    printf("Warning -> AliTOFRawStream::EquipmentId2VolumeId: Problems with the strip number (%2d %2d %2d)!\n",
+          nDDL, nTRM, nTDC);
   }
 
   Int_t iPadAlongTheStrip  = Equip2VolNpad(iDDL, iChain, nTDC, iCH);
-  if (iPadAlongTheStrip==-1){
-    if (fRawReader)
-      fRawReader->AddMajorErrorLog(kPadAlongStripError,"pad = -1");
-    AliWarning("Problems with the pad number along the strip!");
+  if (iPadAlongTheStrip==-1) {
+    /*if (fRawReader)
+      fRawReader->AddMajorErrorLog(kPadAlongStripError,"pad = -1");*/
+    printf("Warning -> AliTOFRawStream::EquipmentId2VolumeId: Problems with the pad number along the strip (%2d %1d %2d %1d)!\n",
+          nDDL, iChain, nTDC, iCH);
   }
   
   Int_t iPadX  = (Int_t)(iPadAlongTheStrip/(Float_t(AliTOFGeometry::NpadZ())));
@@ -1434,13 +1385,15 @@ Bool_t AliTOFRawStream::Decode(Int_t verbose = 0) {
     
     //set up the decoder
     fDecoder->SetVerbose(verbose);
-    fDecoder->SetDataBuffer(fDataBuffer[currentDDL]);
-    fDecoder->SetPackedDataBuffer(fPackedDataBuffer[currentDDL]);
+    fDecoder->SetDataBuffer(&fDataBuffer[currentDDL]);
+    fDecoder->SetPackedDataBuffer(&fPackedDataBuffer[currentDDL]);
     
     //start decoding
     if (fDecoder->Decode((UInt_t *)data, kDataWords, currentCDH) == kTRUE) {
       fRawReader->AddMajorErrorLog(kDDLDecoder,Form("DDL # = %d",currentDDL));
       AliWarning(Form("Error while decoding DDL # %d: decoder returned with errors", currentDDL));
+      ResetDataBuffer(currentDDL);
+      ResetPackedDataBuffer(currentDDL);
     }
     
     delete [] data;
@@ -1491,7 +1444,7 @@ AliTOFRawStream::LoadRawDataBuffers(Int_t indexDDL, Int_t verbose)
   }
   
   if (verbose > 0)
-    AliInfo(Form("Done. %d packed %s been found.", fPackedDataBuffer[indexDDL]->GetEntries(), fPackedDataBuffer[indexDDL]->GetEntries() > 1 ? "hits have" : "hit has"));
+    AliInfo(Form("Done. %d packed %s been found.", fPackedDataBuffer[indexDDL].GetEntries(), fPackedDataBuffer[indexDDL].GetEntries() > 1 ? "hits have" : "hit has"));
   
   AliTOFHitData *hitData; //hit data pointer
   
@@ -1505,8 +1458,8 @@ AliTOFRawStream::LoadRawDataBuffers(Int_t indexDDL, Int_t verbose)
     }
 
   //loop over DDL packed hits
-  for (Int_t iHit = 0; iHit < fPackedDataBuffer[indexDDL]->GetEntries(); iHit++){
-    hitData = fPackedDataBuffer[indexDDL]->GetHit(iHit); //get hit data
+  for (Int_t iHit = 0; iHit < fPackedDataBuffer[indexDDL].GetEntries(); iHit++){
+    hitData = fPackedDataBuffer[indexDDL].GetHit(iHit); //get hit data
     Int_t   hitACQ = hitData->GetACQ();
     Int_t   hitPS = hitData->GetPS();
     Int_t   hitSlotID = hitData->GetSlotID();
@@ -1518,9 +1471,9 @@ AliTOFRawStream::LoadRawDataBuffers(Int_t indexDDL, Int_t verbose)
 
     if (fgApplyBCCorrections) {
       /* DDL BC shift time correction */
-      hitTimeBin += fgkddlBCshift[indexDDL];
+      hitTimeBin += 1024 * fgkddlBCshift[indexDDL];
       /* deltaBC shift time correction */
-      hitTimeBin += hitData->GetDeltaBunchID();
+      hitTimeBin += 1024 * hitData->GetDeltaBunchID();
     }
 
     Int_t hitLeading = hitData->GetTimeBin();
@@ -1537,8 +1490,8 @@ AliTOFRawStream::LoadRawDataBuffers(Int_t indexDDL, Int_t verbose)
   if (verbose > 0)
     AliInfo("Resetting buffers ...");
 
-  fDataBuffer[indexDDL]->Reset();
-  fPackedDataBuffer[indexDDL]->Reset();
+  fDataBuffer[indexDDL].Reset();
+  fPackedDataBuffer[indexDDL].Reset();
 
   if (verbose > 0)
     AliInfo("Done.");
@@ -1557,11 +1510,11 @@ void AliTOFRawStream::Geant2EquipmentId(Int_t vol[], Int_t eqId[])
   //      nPadZ   number -vol[3]- (variable in [0, 1])
   //      nPadX   number -vol[4]- (variable in [0,47])
   // in:
-  //      nDDL     -eqId[0]- (variable in [0;71]) -> number of the DDL file 
-  //      nTRM     -eqId[1]- (variable in [3;12]) -> number of the TRM file 
-  //      nTDC     -eqId[2]- (variable in [0;14]) -> number of the TDC file 
-  //      nChain   -eqId[3]- (variable in [0; 1]) -> number of the chain file 
-  //      nChannel -eqId[4]- (variable in [0; 8]) -> number of the channel file 
+  //      nDDL     -eqId[0]- (variable in [0;71]) -> number of the DDL
+  //      nTRM     -eqId[1]- (variable in [3;12]) -> number of the TRM
+  //      nTDC     -eqId[2]- (variable in [0;14]) -> number of the TDC
+  //      nChain   -eqId[3]- (variable in [0; 1]) -> number of the chain
+  //      nChannel -eqId[4]- (variable in [0; 8]) -> number of the channel
   //
 
   eqId[0] = Geant2DDL(vol);
@@ -1583,7 +1536,7 @@ Int_t AliTOFRawStream::Geant2DDL(Int_t vol[])
   //      nPadZ   number -vol[3]- (variable in [0, 1])
   //      nPadX   number -vol[4]- (variable in [0,47])
   // in:
-  //      nDDL   (variable in [0;71]) -> number of the DDL file 
+  //      nDDL   (variable in [0;71]) -> number of the DDL
   //
 
 
@@ -2016,3 +1969,269 @@ Int_t AliTOFRawStream::Geant2Channel(Int_t vol[])
   return nChannel;
 
 }
+
+//____________________________________________________________________________
+void AliTOFRawStream::Raw2Digits(AliRawReader* rawReader, TClonesArray* digitsArray)
+{
+  //
+  // Converts raw data to digits for TOF
+  //
+
+  TStopwatch stopwatch;
+  stopwatch.Start();
+
+  //TClonesArray *fDigits = new TClonesArray("AliTOFdigit", 4000);
+  //digitsTree->Branch("TOF", &fDigits);
+  TClonesArray &aDigits = *digitsArray;
+
+  Int_t inholes = 0;
+
+  Clear();
+  SetRawReader(rawReader);
+
+  //ofstream ftxt;
+  //if (fVerbose==2) ftxt.open("TOFdigitsRead.txt",ios::app);
+
+  TClonesArray staticRawData("AliTOFrawData",10000);
+  staticRawData.Clear();
+  TClonesArray * clonesRawData = &staticRawData;
+
+  Int_t dummy = -1;
+  Int_t detectorIndex[5] = {-1, -1, -1, -1, -1};
+  Int_t digit[4];
+
+  const Int_t kMaxNumberOfTracksPerDigit = 3;
+  Int_t tracks[kMaxNumberOfTracksPerDigit];
+  for (Int_t ii=0; ii<kMaxNumberOfTracksPerDigit; ii++)
+    tracks[ii] = -1;
+  Int_t last = -1;
+
+  Int_t indexDDL = 0;
+  Int_t iRawData = 0;
+  AliTOFrawData *tofRawDatum = 0;
+  for (indexDDL=0; indexDDL<AliDAQ::NumberOfDdls("TOF"); indexDDL++) {
+
+    rawReader->Reset();
+    if (fNewDecoderVersion) {
+      AliInfo("Using New Decoder \n"); 
+      LoadRawDataBuffers(indexDDL, 0);
+    }
+    else
+      LoadRawData(indexDDL);
+
+    clonesRawData = GetRawData();
+    if (clonesRawData->GetEntriesFast()!=0) AliInfo(Form(" TOF raw data number = %3d", clonesRawData->GetEntriesFast()));
+    for (iRawData = 0; iRawData<clonesRawData->GetEntriesFast(); iRawData++) {
+
+      tofRawDatum = (AliTOFrawData*)clonesRawData->UncheckedAt(iRawData);
+
+      //if (tofRawDatum->GetTOT()==-1 || tofRawDatum->GetTOF()==-1) continue;
+      if (tofRawDatum->GetTOF()==-1) continue;
+
+      EquipmentId2VolumeId(indexDDL, tofRawDatum->GetTRM(), tofRawDatum->GetTRMchain(),
+                          tofRawDatum->GetTDC(), tofRawDatum->GetTDCchannel(), detectorIndex);
+
+      dummy = detectorIndex[3];
+      detectorIndex[3] = detectorIndex[4];//padz
+      detectorIndex[4] = dummy;//padx
+
+      digit[0] = tofRawDatum->GetTOF();
+      digit[1] = tofRawDatum->GetTOT();
+      digit[2] = tofRawDatum->GetTOT();
+      digit[3] = -1;//tofRawDatum->GetTOF(); //tofND
+
+      dummy = detectorIndex[3];
+      detectorIndex[3] = detectorIndex[4];//padx
+      detectorIndex[4] = dummy;//padz
+
+      // Do not reconstruct anything in the holes
+      if (detectorIndex[0]==13 || detectorIndex[0]==14 || detectorIndex[0]==15 ) { // sectors with holes
+       if (detectorIndex[1]==2) { // plate with holes
+         inholes++;
+         continue;
+       }
+      }
+
+      last = digitsArray->GetEntriesFast();
+      new (aDigits[last]) AliTOFdigit(tracks, detectorIndex, digit);
+      /*
+      if (fVerbose==2) {
+       if (indexDDL<10) ftxt << "  " << indexDDL;
+       else         ftxt << " " << indexDDL;
+       if (tofRawDatum->GetTRM()<10) ftxt << "  " << tofRawDatum->GetTRM();
+       else         ftxt << " " << tofRawDatum->GetTRM();
+       ftxt << "  " << tofRawDatum->GetTRMchain();
+       if (tofRawDatum->GetTDC()<10) ftxt << "  " << tofRawDatum->GetTDC();
+       else         ftxt << " " << tofRawDatum->GetTDC();
+       ftxt << "  " << tofRawDatum->GetTDCchannel();
+
+       if (detectorIndex[0]<10) ftxt  << "  ->  " << detectorIndex[0];
+       else              ftxt  << "  -> " << detectorIndex[0];
+       ftxt << "  " << detectorIndex[1];
+       if (detectorIndex[2]<10) ftxt << "  " << detectorIndex[2];
+       else              ftxt << " " << detectorIndex[2];
+       ftxt << "  " << detectorIndex[4];
+       if (detectorIndex[4]<10) ftxt << "  " << detectorIndex[3];
+       else              ftxt << " " << detectorIndex[3];
+
+       if (digit[1]<10)ftxt << "        " << digit[1];
+       else if (digit[1]>=10 && digit[1]<100) ftxt << "      " << digit[1];
+       else ftxt << "      " << digit[1];
+       if (digit[0]<10) ftxt << "      " << digit[0] << endl;
+       else if (digit[0]>=10 && digit[0]<100)   ftxt << "    " << digit[0] << endl;
+       else if (digit[0]>=100 && digit[0]<1000) ftxt << "    " << digit[0] << endl;
+       else ftxt << "   " << digit[3] << endl;
+      }
+      */
+      AliDebug(2, Form(" Raw data reading %2d -> %2d %1d %2d %1d %2d (%d, %d, %d)",
+                      last,
+                      detectorIndex[0], detectorIndex[1], detectorIndex[2], detectorIndex[4], detectorIndex[3],
+                      digit[0], digit[1], digit[3]));
+
+      tofRawDatum = 0;
+    } // loop on tofRawData array
+
+    clonesRawData->Clear();
+
+  } // DDL Loop
+
+  //if (fVerbose==2) ftxt.close();
+
+
+  if (inholes) AliWarning(Form("Raw data in the TOF holes: %d",inholes));
+
+  Int_t nDigits = digitsArray->GetEntries();
+  AliDebug(1, Form("Got %d TOF digits", nDigits));
+  AliDebug(1, Form("Execution time to read TOF raw data and fill TOF digit tree : R:%.2fs C:%.2fs",
+                  stopwatch.RealTime(),stopwatch.CpuTime()));
+
+}
+
+//____________________________________________________________________________
+void AliTOFRawStream::Raw2SDigits(AliRawReader* rawReader, TClonesArray* sdigitsArray)
+{
+  //
+  // Converts raw data to sdigits for TOF
+  //
+
+  TStopwatch stopwatch;
+  stopwatch.Start();
+
+  Int_t inholes = 0;
+
+  //if(!GetLoader()->TreeS()) {MakeTree("S");  MakeBranch("S");}
+  TClonesArray &aSDigits = *sdigitsArray;
+
+  Clear();
+  SetRawReader(rawReader);
+
+  //ofstream ftxt;
+  //if (fVerbose==2) ftxt.open("TOFsdigitsRead.txt",ios::app);
+
+  TClonesArray staticRawData("AliTOFrawData",10000);
+  staticRawData.Clear();
+  TClonesArray * clonesRawData = &staticRawData;
+
+  Int_t dummy = -1;
+  Int_t detectorIndex[5] = {-1, -1, -1, -1, -1};
+  Int_t digit[2];
+  Int_t track = -1;
+  Int_t last = -1;
+
+  Int_t indexDDL = 0;
+  Int_t iRawData = 0;
+  AliTOFrawData *tofRawDatum = 0;
+  for (indexDDL=0; indexDDL<AliDAQ::NumberOfDdls("TOF"); indexDDL++) {
+
+    rawReader->Reset();
+    if (fNewDecoderVersion) {
+      AliInfo("Using New Decoder \n"); 
+      LoadRawDataBuffers(indexDDL, 0);
+    }
+    else
+      LoadRawData(indexDDL);
+
+    clonesRawData = GetRawData();
+    if (clonesRawData->GetEntriesFast()!=0) AliInfo(Form(" TOF raw data number = %3d", clonesRawData->GetEntriesFast()));
+    for (iRawData = 0; iRawData<clonesRawData->GetEntriesFast(); iRawData++) {
+
+      tofRawDatum = (AliTOFrawData*)clonesRawData->UncheckedAt(iRawData);
+
+      //if (tofRawDatum->GetTOT()==-1 || tofRawDatum->GetTOF()==-1) continue;
+      if (tofRawDatum->GetTOF()==-1) continue;
+
+      EquipmentId2VolumeId(indexDDL, tofRawDatum->GetTRM(), tofRawDatum->GetTRMchain(),
+                          tofRawDatum->GetTDC(), tofRawDatum->GetTDCchannel(), detectorIndex);
+
+      dummy = detectorIndex[3];
+      detectorIndex[3] = detectorIndex[4];//padz
+      detectorIndex[4] = dummy;//padx
+
+      digit[0] = tofRawDatum->GetTOF();
+      digit[1] = tofRawDatum->GetTOT();
+
+      dummy = detectorIndex[3];
+      detectorIndex[3] = detectorIndex[4];//padx
+      detectorIndex[4] = dummy;//padz
+
+      // Do not reconstruct anything in the holes
+      if (detectorIndex[0]==13 || detectorIndex[0]==14 || detectorIndex[0]==15 ) { // sectors with holes
+       if (detectorIndex[1]==2) { // plate with holes
+         inholes++;
+         continue;
+       }
+      }
+
+      last = sdigitsArray->GetEntriesFast();
+      new (aSDigits[last]) AliTOFSDigit(track, detectorIndex, digit);
+      /*
+      if (fVerbose==2) {
+       if (indexDDL<10) ftxt << "  " << indexDDL;
+       else         ftxt << " " << indexDDL;
+       if (tofRawDatum->GetTRM()<10) ftxt << "  " << tofRawDatum->GetTRM();
+       else         ftxt << " " << tofRawDatum->GetTRM();
+       ftxt << "  " << tofRawDatum->GetTRMchain();
+       if (tofRawDatum->GetTDC()<10) ftxt << "  " << tofRawDatum->GetTDC();
+       else         ftxt << " " << tofRawDatum->GetTDC();
+       ftxt << "  " << tofRawDatum->GetTDCchannel();
+
+       if (detectorIndex[0]<10) ftxt  << "  ->  " << detectorIndex[0];
+       else              ftxt  << "  -> " << detectorIndex[0];
+       ftxt << "  " << detectorIndex[1];
+       if (detectorIndex[2]<10) ftxt << "  " << detectorIndex[2];
+       else              ftxt << " " << detectorIndex[2];
+       ftxt << "  " << detectorIndex[4];
+       if (detectorIndex[4]<10) ftxt << "  " << detectorIndex[3];
+       else              ftxt << " " << detectorIndex[3];
+
+       if (digit[1]<10)ftxt << "        " << digit[1];
+       else if (digit[1]>=10 && digit[1]<100) ftxt << "      " << digit[1];
+       else ftxt << "      " << digit[1];
+       if (digit[0]<10) ftxt << "      " << digit[0] << endl;
+       else if (digit[0]>=10 && digit[0]<100)   ftxt << "    " << digit[0] << endl;
+       else if (digit[0]>=100 && digit[0]<1000) ftxt << "    " << digit[0] << endl;
+       else ftxt << "   " << digit[3] << endl;
+      }
+      */
+      AliDebug(2, Form(" Raw data reading %2d -> %2d %1d %2d %1d %2d (%d, %d, %d)",
+                      last,
+                      detectorIndex[0], detectorIndex[1], detectorIndex[2], detectorIndex[4], detectorIndex[3],
+                      digit[0], digit[1], digit[3]));
+
+      tofRawDatum = 0;
+    } // while loop
+
+    clonesRawData->Clear();
+
+  } // DDL Loop
+
+  //if (fVerbose==2) ftxt.close();
+
+  if (inholes) AliWarning(Form("Clusters in the TOF holes: %d",inholes));
+
+  Int_t nSDigits = sdigitsArray->GetEntries();
+  AliDebug(1, Form("Got %d TOF sdigits", nSDigits));
+  AliDebug(1, Form("Execution time to read TOF raw data and fill TOF sdigit tree : R:%.2fs C:%.2fs",
+                  stopwatch.RealTime(),stopwatch.CpuTime()));
+
+}