]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFCalStrip.h
Removing warnings
[u/mrichter/AliRoot.git] / TOF / AliTOFCalStrip.h
1 #ifndef ALITOFCALSTRIP_H
2 #define ALITOFCALSTRIP_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:: strips              //
9 //////////////////////////////////////////////////////////////////
10
11 //_____________________________________________________________
12
13 #include "TObject.h"
14 #include "TROOT.h"
15 #include "TBrowser.h"
16 #include "TClass.h"
17 #include "AliTOFGeometry.h"
18 #include "AliTOFChannel.h"
19
20 class AliTOFCalStrip: public TObject 
21 {
22  public:
23   AliTOFCalStrip(AliTOFGeometry *geom);
24   AliTOFCalStrip(AliTOFGeometry *geom,AliTOFChannel *ch);
25   AliTOFCalStrip();
26   AliTOFCalStrip(AliTOFChannel *ch);
27   AliTOFCalStrip(const AliTOFCalStrip& strip);
28   virtual ~AliTOFCalStrip();
29   Int_t NpadZ()const {return fNpadZ;}
30   Int_t NpadX()const {return fNpadX;}
31   void Browse(TBrowser *b);
32   Bool_t IsFolder() const{return kTRUE;}
33 private:
34   Int_t fNpadZ;    // number of TOF pads Z
35   Int_t fNpadX;    // number of TOF pads X
36
37   AliTOFGeometry *fGeom;    // AliTOFgeometry pointer
38   AliTOFChannel *fCh; //array of AliTOFChannel storing calib parameters
39   ClassDef(AliTOFCalStrip,1)
40 };
41
42 #endif
43
44