]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCRawStream.h
Updated alignment:
[u/mrichter/AliRoot.git] / TPC / AliTPCRawStream.h
CommitLineData
b27ca38e 1#ifndef ALITPCRAWSTREAM_H
2#define ALITPCRAWSTREAM_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6///////////////////////////////////////////////////////////////////////////////
7///
8/// This class provides access to TPC digits in raw data.
9///
10///////////////////////////////////////////////////////////////////////////////
11
12#include "AliAltroRawStream.h"
13
14class AliRawReader;
15class AliAltroMapping;
16
17class AliTPCRawStream: public AliAltroRawStream {
18 public :
4cdab760 19 AliTPCRawStream(AliRawReader* rawReader, AliAltroMapping **mapping = NULL);
b27ca38e 20 virtual ~AliTPCRawStream();
21
22 virtual void Reset();
041f6df4 23 virtual Bool_t Next();
24
25 inline Int_t GetSector() const { return fSector; } // Provide index of current sector
26 inline Int_t GetPrevSector() const { return fPrevSector; } // Provide index of previous sector
27 inline Bool_t IsNewSector() const {return fSector != fPrevSector;};
28 inline Int_t GetRow() const { return fRow; } // Provide index of current row
29 inline Int_t GetPrevRow() const { return fPrevRow; } // Provide index of previous row
30 inline Bool_t IsNewRow() const {return (fRow != fPrevRow) || IsNewSector();};
31 inline Int_t GetPad() const { return fPad; } // Provide index of current pad
32 inline Int_t GetPrevPad() const { return fPrevPad; } // Provide index of previous pad
33 inline Bool_t IsNewPad() const {return (fPad != fPrevPad) || IsNewRow();};
b27ca38e 34
b27ca38e 35 AliTPCRawStream& operator = (const AliTPCRawStream& stream);
e7bee78b 36 AliTPCRawStream(const AliTPCRawStream& stream);
37
38 protected :
b27ca38e 39
40 virtual void ApplyAltroMapping();
41
041f6df4 42 Int_t fSector; // index of current sector
43 Int_t fPrevSector; // index of previous sector
44 Int_t fRow; // index of current row
45 Int_t fPrevRow; // index of previous row
46 Int_t fPad; // index of current pad
47 Int_t fPrevPad; // index of previous pad
48
b27ca38e 49 AliAltroMapping *fMapping[6]; // Pointers to ALTRO mapping
e7bee78b 50 Bool_t fIsMapOwner; // does object own its mappings?
b27ca38e 51
52 ClassDef(AliTPCRawStream, 0) // base class for reading TPC raw digits
53};
54
55#endif