]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - RAW/AliITSRawStream.h
AliITSRawStream classes removed (will be moved to ITS)
[u/mrichter/AliRoot.git] / RAW / AliITSRawStream.h
diff --git a/RAW/AliITSRawStream.h b/RAW/AliITSRawStream.h
deleted file mode 100644 (file)
index 1c7fd53..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-#ifndef ALIITSRAWSTREAM_H
-#define ALIITSRAWSTREAM_H
-/* 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>
-
-class AliRawReader;
-
-
-class AliITSRawStream: public TObject {
-  public :
-    AliITSRawStream(AliRawReader* rawReader);
-    AliITSRawStream(const AliITSRawStream& stream);
-    AliITSRawStream& operator = (const AliITSRawStream& stream);
-    virtual ~AliITSRawStream() {};
-
-    virtual Bool_t   Next() = 0;
-
-    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;};
-
-  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
-                                    //  SPD: column cell number (z)
-                                    //  SDD: anode cell number (z)
-                                    //  SSD: N/P, flag for side
-    Int_t            fCoord2;       // current 2nd coordinate
-                                    //  SPD: row cell number (y)
-                                    //  SDD: time bin number (y)
-                                    //  SSD: strip number
-    Int_t            fSignal;       // signal in ADC counts
-
-    ClassDef(AliITSRawStream, 0) // base class for reading ITS raw digits
-};
-
-#endif