]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDdataArray.h
Remove AliTRDconst.h
[u/mrichter/AliRoot.git] / TRD / AliTRDdataArray.h
1 #ifndef ALITRDDATAARRAY_H
2 #define ALITRDDATAARRAY_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 /* $Id$ */
8  
9 #include   "AliTRDsegmentID.h"
10
11 /////////////////////////////////////////////////////////////
12 //  General container for data from TRD detector segments  //
13 //  Adapted from AliDigits, origin M.Ivanov                //
14 /////////////////////////////////////////////////////////////
15
16 class AliTRDarrayI;
17
18 class AliTRDdataArray : public AliTRDsegmentID {
19
20  public:
21
22   AliTRDdataArray();
23   AliTRDdataArray(Int_t nrow, Int_t ncol,Int_t ntime);
24   AliTRDdataArray(const AliTRDdataArray &d);
25   virtual ~AliTRDdataArray();
26   AliTRDdataArray &operator=(const AliTRDdataArray &d);
27
28   virtual void   Copy(TObject &d);
29   virtual void   Allocate(Int_t nrow, Int_t ncol,Int_t ntime);
30   virtual void   Reset();
31
32   virtual Int_t  GetNRow() const               { return fNrow;       };
33   virtual Int_t  GetNCol() const               { return fNcol;       };
34   virtual Int_t  GetNtime() const              { return fNtime;      };
35           Int_t  GetIndex(Int_t row, Int_t col, Int_t time) const;
36
37  protected:
38
39           Int_t  GetIdx1(Int_t row, Int_t col) const;
40   inline  Bool_t CheckBounds(const char *where, Int_t idx1, Int_t idx2);
41   inline  Bool_t OutOfBoundsError(const char *where, Int_t idx1, Int_t idx2);
42  
43   Int_t          fNrow;            // Number of rows of the detector segement
44   Int_t          fNcol;            // Number of columns of the detector segment
45   Int_t          fNtime;           // Number of timebins of the detector segment
46
47   Int_t          fNdim1;           // First dimension of the array (row * column)
48   Int_t          fNdim2;           // Second dimension of the array (time, not compressed) 
49
50   AliTRDarrayI  *fIndex;           // Index position of column
51   Int_t          fBufType;         // Type of the buffer - defines the compression algorithm  
52   Int_t          fNelems;          // Total number of elements 
53   Int_t          fCurrentIdx1;     // !Current index 1
54   Int_t          fCurrentIdx2;     // !Current index 2
55   Int_t          fCurrentIndex;    // !Current index in field
56  
57   ClassDef(AliTRDdataArray,1)      // Data container for one TRD detector segment
58
59 };
60  
61 #endif
62