]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/Base/AliTPCRawStreamV3.h
o Add option for residual distortion
[u/mrichter/AliRoot.git] / TPC / Base / AliTPCRawStreamV3.h
CommitLineData
c3066940 1#ifndef ALITPCRAWSTREAMV3_H
2#define ALITPCRAWSTREAMV3_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 "AliAltroRawStreamV3.h"
13
14class AliRawReader;
15class AliAltroMapping;
16
17class AliTPCRawStreamV3: public AliAltroRawStreamV3 {
18 public :
19 AliTPCRawStreamV3(AliRawReader* rawReader, AliAltroMapping **mapping = NULL);
20 virtual ~AliTPCRawStreamV3();
21
22 virtual void Reset();
23 virtual Bool_t NextChannel();
24 virtual Bool_t NextDDL();
25
26 inline Int_t GetSector() const { return fSector; } // Provide index of current sector
27 inline Int_t GetPrevSector() const { return fPrevSector; } // Provide index of previous sector
28 inline Bool_t IsNewSector() const {return fSector != fPrevSector;};
29 inline Int_t GetRow() const { return fRow; } // Provide index of current row
30 inline Int_t GetPrevRow() const { return fPrevRow; } // Provide index of previous row
31 inline Bool_t IsNewRow() const {return (fRow != fPrevRow) || IsNewSector();};
32 inline Int_t GetPad() const { return fPad; } // Provide index of current pad
33 inline Int_t GetPrevPad() const { return fPrevPad; } // Provide index of previous pad
34 inline Bool_t IsNewPad() const {return (fPad != fPrevPad) || IsNewRow();};
92ae9768 35 inline Int_t GetPatchIndex() const { return fPatchIndex; } // Provide index of current patch
c3066940 36
37
38 protected :
39 AliTPCRawStreamV3& operator = (const AliTPCRawStreamV3& stream);
40 AliTPCRawStreamV3(const AliTPCRawStreamV3& stream);
41
42 virtual void ApplyAltroMapping();
43
44 Int_t fSector; // index of current sector
45 Int_t fPrevSector; // index of previous sector
46 Int_t fRow; // index of current row
47 Int_t fPrevRow; // index of previous row
48 Int_t fPad; // index of current pad
49 Int_t fPrevPad; // index of previous pad
50 Int_t fPatchIndex; // current patch
51
52 AliAltroMapping *fMapping[6]; // Pointers to ALTRO mapping
53 Bool_t fIsMapOwner; // does object own its mappings?
54
55 ClassDef(AliTPCRawStreamV3, 0) // base class for reading TPC raw digits using the fast algorithm
56};
57
58#endif