]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFCalPadZ.h
Coverity fixes.
[u/mrichter/AliRoot.git] / TOF / AliTOFCalPadZ.h
1 #ifndef ALITOFCALPADZ_H
2 #define ALITOFCALPADZ_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 //////////////////////////////////////////////////////////////////
8 //              class for TOF calibration:: PadZ                //
9 //////////////////////////////////////////////////////////////////
10
11 //_____________________________________________________________
12
13 #include "TObject.h"
14
15 class TBrowser;
16 class AliTOFGeometry;
17 class AliTOFChannel;
18
19 class AliTOFCalPadZ: public TObject 
20 {
21  public:
22   AliTOFCalPadZ();
23   AliTOFCalPadZ(AliTOFChannel *ch);
24   AliTOFCalPadZ(AliTOFGeometry *geom);
25   AliTOFCalPadZ(AliTOFGeometry *geom,AliTOFChannel *ch);
26   AliTOFCalPadZ(const AliTOFCalPadZ &source); // copy constructor
27   AliTOFCalPadZ& operator=(const AliTOFCalPadZ &source); // ass. op.
28   virtual ~AliTOFCalPadZ();
29   Int_t NpadX()const {return fNpadX;}
30   void Browse(TBrowser *b);
31   Bool_t IsFolder() const{return kTRUE;}
32 private:
33   Int_t fNpadX;    // number of TOF pads X
34
35   AliTOFGeometry *fGeom;    // AliTOFgeometry pointer
36   AliTOFChannel *fCh; //array of AliTOFChannel storing calib parameters
37   ClassDef(AliTOFCalPadZ,1)
38 };
39
40 #endif //AliTOFPadZ
41
42