1 #ifndef ALITOFCALPLATEB_H
2 #define ALITOFCALPLATEB_H
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
7 //////////////////////////////////////////////////////////////////
8 // class for TOF calibration:: PlateB //
9 //////////////////////////////////////////////////////////////////
11 //_____________________________________________________________
20 class AliTOFCalPlateB: public TObject
24 AliTOFCalPlateB(AliTOFGeometry *geom);
25 AliTOFCalPlateB(AliTOFChannel *ch);
26 AliTOFCalPlateB(AliTOFGeometry *geom,AliTOFChannel *ch);
27 AliTOFCalPlateB(const AliTOFCalPlateB& pl);
28 AliTOFCalPlateB& operator=(const AliTOFCalPlateB &source); // ass. op.
29 virtual ~AliTOFCalPlateB();
30 Int_t NStripB()const {return fNStripB;}
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;}
36 Int_t fNStripB; // number of TOF strips B
37 Int_t fNpadZ; // number of TOF pads Z
38 Int_t fNpadX; // number of TOF pads X
40 AliTOFGeometry *fGeom; // AliTOFgeometry pointer
41 AliTOFChannel *fCh; //array of AliTOFChannel storing calib parameters
42 ClassDef(AliTOFCalPlateB,1)