1 #ifndef ALITOFCALSTRIP_H
2 #define ALITOFCALSTRIP_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:: strips //
9 //////////////////////////////////////////////////////////////////
11 //_____________________________________________________________
19 class AliTOFCalStrip: public TObject
22 AliTOFCalStrip(AliTOFGeometry *geom);
23 AliTOFCalStrip(AliTOFGeometry *geom,AliTOFChannel *ch);
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;}
34 Int_t fNpadZ; // number of TOF pads Z
35 Int_t fNpadX; // number of TOF pads X
37 AliTOFGeometry *fGeom; // AliTOFgeometry pointer
38 AliTOFChannel *fCh; //array of AliTOFChannel storing calib parameters
39 ClassDef(AliTOFCalStrip,1)