]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDCalROC.h
Additiona data members for the time bins and material budget (M.Ivanov)
[u/mrichter/AliRoot.git] / TRD / AliTRDCalROC.h
1 #ifndef ALITRDCALROC_H
2 #define ALITRDCALROC_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id: AliTRDCalROC.h,v */
7
8 //////////////////////////////////////////////////
9 //                                              //
10 //  TRD calibration base class for one ROC      //
11 //                                              //
12 //////////////////////////////////////////////////
13
14 #include <TObject.h>
15
16 //_____________________________________________________________________________
17 class AliTRDCalROC : public TObject {
18
19  public:
20
21   AliTRDCalROC();
22   AliTRDCalROC(Int_t p, Int_t c);
23   AliTRDCalROC(const AliTRDCalROC &c);
24   virtual           ~AliTRDCalROC();
25   AliTRDCalROC      &operator=(const AliTRDCalROC &c);
26   virtual void       Copy(TObject &c) const;
27
28   Int_t    GetNrows() const                  { return fNrows; };
29   Int_t    GetNcols() const                  { return fNcols; };
30
31  protected:
32
33   Int_t     fPla;             //  Plane number
34   Int_t     fCha;             //  Chamber number
35
36   Int_t     fNrows;           //  Number of rows
37   Int_t     fNcols;           //  Number of columns
38
39   ClassDef(AliTRDCalROC,1)    //  TRD ROC calibration class
40
41 };
42
43 #endif