]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFCalStrip.h
CMake: removing qpythia from the depedencies
[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
15 class TBrowser;
16 class AliTOFGeometry;
17 class AliTOFChannel;
18
19 class AliTOFCalStrip: public TObject 
20 {
21  public:
22   AliTOFCalStrip(AliTOFGeometry *geom);
23   AliTOFCalStrip(AliTOFGeometry *geom,AliTOFChannel *ch);
24   AliTOFCalStrip();
25   AliTOFCalStrip(AliTOFChannel *ch);
26   AliTOFCalStrip(const AliTOFCalStrip& strip);
27   AliTOFCalStrip& operator=(const AliTOFCalStrip &source); // ass. op.
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