]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSRawStreamSSD.h
Removing not used parameter and putting the correct flag for the ITS clusters
[u/mrichter/AliRoot.git] / ITS / AliITSRawStreamSSD.h
index bf0fff15ac1f592a26e4e1e05237dd43c6300703..2694c18df16c46135245bbe6ddd6e929d5caac62 100644 (file)
@@ -3,25 +3,49 @@
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
+/* $Id$ */
+
+///////////////////////////////////////////////////////////////////////////////
+///
+/// This class provides access to ITS SSD digits in raw data.
+//  Revised by Enrico Fragiacomo
+//  Last update: 2007/09/06
+///
+///////////////////////////////////////////////////////////////////////////////
+
 #include "AliITSRawStream.h"
-#include "AliRawReader.h"
+
+class AliRawReader;
 
 
 class AliITSRawStreamSSD: public AliITSRawStream {
   public :
-    AliITSRawStreamSSD();
+    AliITSRawStreamSSD(AliRawReader* rawReader);
+    virtual ~AliITSRawStreamSSD() {};
 
     virtual Bool_t   Next();
 
-    inline Int_t     GetSideFlag() const {return fCoord1;};
-    inline Int_t     GetStrip() const {return fCoord2;};
+    Int_t            GetSideFlag() const {return fCoord1;};
+    Int_t            GetStrip() const {return fCoord2;};
+
+    enum {kDDLsNumber = 16};      // number of DDLs in SSD
+    enum {kModulesPerDDL = 108};  // number of modules in each DDL
+
+    static Int_t     GetModuleNumber(UInt_t iDDL, UInt_t iModule)
+      {return fgkDDLModuleMap[iDDL][iModule];}
+
+    enum ESSDRawStreamError {
+      kWrongModuleIdErr = 1
+    };
+
+    Int_t fddl;
+    Int_t fad;
+    Int_t fadc;
+
 
-    static const Int_t kDDLsNumber = 16;      // number of DDLs in SSD
-    static const Int_t kModulesPerDDL = 109;  // number of modules in each DDL 
-    static const Int_t kDDLModuleMap[kDDLsNumber][kModulesPerDDL];
+  protected :
+    static const Int_t fgkDDLModuleMap[kDDLsNumber][kModulesPerDDL];  // mapping DDL/module -> module number
 
-  private :
-    AliRawReader     fRawReader;    // object for reading the raw data file
     UInt_t           fData;         // data read for file
 
     ClassDef(AliITSRawStreamSSD, 0) // class for reading ITS SSD raw digits