]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDarrayADC.h
Creation of vertex constrained track parameters is moved to AliHLTVertexer,
[u/mrichter/AliRoot.git] / TRD / AliTRDarrayADC.h
1 #ifndef ALITRDARRAYADC_H
2 #define ALITRDARRAYADC_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * 
4  * See cxx source for full Copyright notice */ 
5
6 /* $Id: AliTRDarrayADC.h 23387 2008-01-17 17:25:16Z cblume $ */
7
8 ///////////////////////////////////////////////
9 //                                           //
10 // Container class for ADC values            //
11 //                                           // 
12 ///////////////////////////////////////////////
13
14 #include <TObject.h>
15
16 class AliTRDSignalIndex;
17 class AliTRDarrayADC: public TObject
18 {
19  public:
20
21   AliTRDarrayADC();
22   AliTRDarrayADC(Int_t nrow, Int_t ncol, Int_t ntime);
23   AliTRDarrayADC(const AliTRDarrayADC &b);
24   ~AliTRDarrayADC();
25   AliTRDarrayADC &operator=(const AliTRDarrayADC &b);
26
27   void    Allocate(Int_t nrow, Int_t ncol, Int_t ntime);
28   void    SetNdet(Int_t ndet) {fNdet=ndet;};  
29   Int_t   GetNdet()  const {return fNdet;};
30   void    SetDataByAdcCol(Int_t nrow, Int_t ncol, Int_t ntime, Short_t value)
31                          {fADC[(nrow*fNumberOfChannels+ncol)*fNtime+ntime]=value;}
32   Bool_t  HasData() const {return fNtime ? 1 : 0;};
33   Short_t GetDataByAdcCol(Int_t nrow, Int_t ncol, Int_t ntime) const
34                          {return fADC[(nrow*fNumberOfChannels+ncol)*fNtime+ntime];};
35   inline  void GetData(Int_t r, Int_t c, Int_t t, Int_t n, Short_t *vals) const;
36   Short_t GetDataBits(Int_t nrow, Int_t ncol, Int_t ntime) const;
37   UChar_t GetPadStatus(Int_t nrow, Int_t ncol, Int_t ntime) const;
38   void    SetPadStatus(Int_t nrow, Int_t ncol, Int_t ntime, UChar_t status);
39   Bool_t  IsPadCorrupted(Int_t nrow, Int_t ncol, Int_t ntime);
40   void    Compress();
41   void    Expand();
42   Int_t   GetNtime() const {return fNtime;};
43   Int_t   GetNrow() const {return fNrow;};
44   Int_t   GetNcol() const {return fNcol;};
45   Int_t   GetDim() const {return fNAdim;};
46   void    DeleteNegatives();
47   void    Reset();
48   void    ConditionalReset(AliTRDSignalIndex* idx);
49   inline  Short_t GetData(Int_t nrow, Int_t ncol, Int_t ntime) const;
50   inline  void    SetData(Int_t nrow, Int_t ncol, Int_t ntime, Short_t value);
51   static  void    CreateLut(); 
52
53  protected:
54
55   Int_t fNdet;    //ID number of the chamber
56   Int_t fNrow;    //Number of rows
57   Int_t fNcol;    //Number of columns(pads)
58   Int_t fNumberOfChannels;  //  Number of MCM channels per row
59   Int_t fNtime;   //Number of time bins
60   Int_t fNAdim;   //Dimension of the ADC array
61   Short_t* fADC;  //[fNAdim]   //Pointer to adc values
62   static Short_t *fgLutPadNumbering;   //  [fNcol] Look Up Table
63
64   ClassDef(AliTRDarrayADC,4) //ADC container class
65     
66 };
67
68 //________________________________________________________________________________
69 Short_t AliTRDarrayADC::GetData(Int_t nrow, Int_t ncol, Int_t ntime) const
70 {
71   //
72   // Get the data using the pad numbering.
73   // To access data using the mcm scheme use instead
74   // the method GetDataByAdcCol
75   //
76
77   Int_t corrcolumn = fgLutPadNumbering[ncol];
78
79   return fADC[(nrow*fNumberOfChannels+corrcolumn)*fNtime+ntime];
80
81 }
82 //________________________________________________________________________________
83 void AliTRDarrayADC::SetData(Int_t nrow, Int_t ncol, Int_t ntime, Short_t value)
84 {
85   //
86   // Set the data using the pad numbering.
87   // To write data using the mcm scheme use instead
88   // the method SetDataByAdcCol
89   //
90
91   Int_t colnumb = fgLutPadNumbering[ncol];
92
93   fADC[(nrow*fNumberOfChannels+colnumb)*fNtime+ntime] = value;
94
95 }
96
97 void AliTRDarrayADC::GetData(Int_t r, Int_t c, Int_t t, Int_t n, Short_t *vals) const
98 {
99   Int_t colNum = fgLutPadNumbering[c];
100   for(Int_t ic=n, idx = (r*fNumberOfChannels+colNum)*fNtime+t; ic--; idx+=fNtime) vals[ic] = fADC[idx];
101  }
102
103 #endif 
104