]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFCalPadZ.h
Adding the AliAnalysisGUI class which is the main class that controls the GUI.
[u/mrichter/AliRoot.git] / TOF / AliTOFCalPadZ.h
CommitLineData
6dc9348d 1#ifndef ALITOFCALPADZ_H
2#define ALITOFCALPADZ_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:: PadZ //
9//////////////////////////////////////////////////////////////////
10
11//_____________________________________________________________
12
13#include "TObject.h"
6dc9348d 14
0e46b9ae 15class TBrowser;
16class AliTOFGeometry;
17class AliTOFChannel;
6dc9348d 18
19class AliTOFCalPadZ: public TObject
20{
21 public:
22 AliTOFCalPadZ();
23 AliTOFCalPadZ(AliTOFChannel *ch);
d4ad0d6b 24 AliTOFCalPadZ(AliTOFGeometry *geom);
25 AliTOFCalPadZ(AliTOFGeometry *geom,AliTOFChannel *ch);
7aeeaf38 26 AliTOFCalPadZ(const AliTOFCalPadZ &source); // copy constructor
27 AliTOFCalPadZ& operator=(const AliTOFCalPadZ &source); // ass. op.
6dc9348d 28 virtual ~AliTOFCalPadZ();
6dc9348d 29 Int_t NpadX()const {return fNpadX;}
30 void Browse(TBrowser *b);
31 Bool_t IsFolder() const{return kTRUE;}
32private:
6dc9348d 33 Int_t fNpadX; // number of TOF pads X
34
d4ad0d6b 35 AliTOFGeometry *fGeom; // AliTOFgeometry pointer
6dc9348d 36 AliTOFChannel *fCh; //array of AliTOFChannel storing calib parameters
37 ClassDef(AliTOFCalPadZ,1)
38};
39
40#endif //AliTOFPadZ
41
42