]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSRawStream.h
HLT mode retrieved from the OCDB and used to set SDD raw data format in simulation...
[u/mrichter/AliRoot.git] / ITS / AliITSRawStream.h
index 44dd216802ec25e016681e208973c2b7cca25301..b4e5bc72f0b07d22e22b643065d2bbc4306f0e86 100644 (file)
@@ -3,23 +3,48 @@
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
+/* $Id$ */
+
+///////////////////////////////////////////////////////////////////////////////
+///
+/// This is a base class for providing access to ITS digits in raw data.
+///
+///////////////////////////////////////////////////////////////////////////////
+
 #include <TObject.h>
+#include "AliITSDDLModuleMapSDD.h"
+#include "AliLog.h"
+
+class AliRawReader;
 
 
 class AliITSRawStream: public TObject {
   public :
-    AliITSRawStream();
+    AliITSRawStream(AliRawReader* rawReader);
+    AliITSRawStream(const AliITSRawStream& stream);
+    AliITSRawStream& operator = (const AliITSRawStream& stream);
+    virtual ~AliITSRawStream() {};
 
     virtual Bool_t   Next() = 0;
 
-    inline Int_t     GetModuleID() const {return fModuleID;};
-    inline Int_t     GetPrevModuleID() const {return fPrevModuleID;};
-    inline Bool_t    IsNewModule() const {return fModuleID != fPrevModuleID;};
-    inline Int_t     GetCoord1() const {return fCoord1;};
-    inline Int_t     GetCoord2() const {return fCoord2;};
-    inline Int_t     GetSignal() const {return fSignal;};
+    Int_t            GetModuleID() const {return fModuleID;};
+    Int_t            GetPrevModuleID() const {return fPrevModuleID;};
+    Bool_t           IsNewModule() const {return fModuleID != fPrevModuleID;};
+    Int_t            GetCoord1() const {return fCoord1;};
+    Int_t            GetCoord2() const {return fCoord2;};
+    Int_t            GetSignal() const {return fSignal;};
+    virtual Bool_t   IsCompletedModule() const {return fCompletedModule;}; // to be implemented in derived class
+    virtual void     SetDDLModuleMap(AliITSDDLModuleMapSDD* /*ddlsdd*/){
+      AliError("This method must be implemented in a derived class");
+    };
+    virtual void     SetZeroSuppLowThreshold(Int_t /*iMod*/, Int_t /*iSid*/, Int_t /*th*/) {
+      AliError("This method must be implemented in a derived class");
+    };
+
 
   protected :
+    AliRawReader*    fRawReader;    // object for reading the raw data
+
     Int_t            fModuleID;     // index of current module
     Int_t            fPrevModuleID; // index of previous module
     Int_t            fCoord1;       // current 1st coordinate
@@ -31,8 +56,9 @@ class AliITSRawStream: public TObject {
                                     //  SDD: time bin number (y)
                                     //  SSD: strip number
     Int_t            fSignal;       // signal in ADC counts
+    Bool_t           fCompletedModule; // set to kTRUE when all data from a module (SDD) are read
 
-    ClassDef(AliITSRawStream, 0) // base class for reading ITS raw digits
+    ClassDef(AliITSRawStream, 1) // base class for reading ITS raw digits
 };
 
 #endif