]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFCalPlateC.h
Added a new method to reset the digit indices in a TOF volume
[u/mrichter/AliRoot.git] / TOF / AliTOFCalPlateC.h
1 #ifndef ALITOFCALPLATEC_H
2 #define ALITOFCALPLATEC_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:: PlateC              //
9 //////////////////////////////////////////////////////////////////
10
11 //_____________________________________________________________
12
13 #include "TObject.h"
14
15 class TBrowser;
16
17 class AliTOFChannel;
18 class AliTOFGeometry;
19
20 class AliTOFCalPlateC: public TObject 
21 {
22  public:
23   AliTOFCalPlateC();
24   AliTOFCalPlateC(AliTOFGeometry *geom);
25   AliTOFCalPlateC(AliTOFChannel *ch);
26   AliTOFCalPlateC(AliTOFGeometry *geom,AliTOFChannel *ch);
27   AliTOFCalPlateC(const AliTOFCalPlateC& pl);
28   AliTOFCalPlateC& operator=(const AliTOFCalPlateC &source); // ass. op.
29   virtual ~AliTOFCalPlateC();
30   Int_t NStripC()const {return fNStripC;}
31   Int_t NpadZ()const {return fNpadZ;}
32   Int_t NpadX()const {return fNpadX;}
33   void Browse(TBrowser *b);
34   Bool_t IsFolder() const{return kTRUE;}
35 private:
36   Int_t fNStripC;  // number of TOF strips C
37   Int_t fNpadZ;    // number of TOF pads Z
38   Int_t fNpadX;    // number of TOF pads X
39
40   AliTOFGeometry *fGeom;    // AliTOFgeometry pointer
41   AliTOFChannel *fCh;  //array of AliTOFChannel storing calib parameters
42   ClassDef(AliTOFCalPlateC,1)
43 };
44
45 #endif
46
47