]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - RAW/AliITSRawStreamSSD.h
AliITSRawStream classes removed (will be moved to ITS)
[u/mrichter/AliRoot.git] / RAW / AliITSRawStreamSSD.h
diff --git a/RAW/AliITSRawStreamSSD.h b/RAW/AliITSRawStreamSSD.h
deleted file mode 100644 (file)
index 79e15ec..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-#ifndef ALIITSRAWSTREAMSSD_H
-#define ALIITSRAWSTREAMSSD_H
-/* 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.
-///
-///////////////////////////////////////////////////////////////////////////////
-
-#include "AliITSRawStream.h"
-
-class AliRawReader;
-
-
-class AliITSRawStreamSSD: public AliITSRawStream {
-  public :
-    AliITSRawStreamSSD(AliRawReader* rawReader);
-    virtual ~AliITSRawStreamSSD() {};
-
-    virtual Bool_t   Next();
-
-    Int_t            GetSideFlag() const {return fCoord1;};
-    Int_t            GetStrip() const {return fCoord2;};
-
-    enum {kDDLOffset = 0x300};    // offset for DDL numbers
-    enum {kDDLsNumber = 16};      // number of DDLs in SSD
-    enum {kModulesPerDDL = 109};  // number of modules in each DDL
-
-    static Int_t     GetModuleNumber(UInt_t iDDL, UInt_t iModule)
-      {return fgkDDLModuleMap[iDDL][iModule];}
-
-  private :
-    static const Int_t fgkDDLModuleMap[kDDLsNumber][kModulesPerDDL];  // mapping DDL/module -> module number
-
-    UInt_t           fData;         // data read for file
-
-    ClassDef(AliITSRawStreamSSD, 0) // class for reading ITS SSD raw digits
-};
-
-#endif