]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFCalPadZ.h
Coding conventions (Annalisa)
[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"
14#include "TROOT.h"
15#include "TBrowser.h"
16#include "TClass.h"
d4ad0d6b 17#include "AliTOFGeometry.h"
6dc9348d 18#include "AliTOFChannel.h"
19
20
21class AliTOFCalPadZ: public TObject
22{
23 public:
24 AliTOFCalPadZ();
25 AliTOFCalPadZ(AliTOFChannel *ch);
d4ad0d6b 26 AliTOFCalPadZ(AliTOFGeometry *geom);
27 AliTOFCalPadZ(AliTOFGeometry *geom,AliTOFChannel *ch);
7aeeaf38 28 AliTOFCalPadZ(const AliTOFCalPadZ &source); // copy constructor
29 AliTOFCalPadZ& operator=(const AliTOFCalPadZ &source); // ass. op.
6dc9348d 30 virtual ~AliTOFCalPadZ();
6dc9348d 31 Int_t NpadX()const {return fNpadX;}
32 void Browse(TBrowser *b);
33 Bool_t IsFolder() const{return kTRUE;}
34private:
6dc9348d 35 Int_t fNpadX; // number of TOF pads X
36
d4ad0d6b 37 AliTOFGeometry *fGeom; // AliTOFgeometry pointer
6dc9348d 38 AliTOFChannel *fCh; //array of AliTOFChannel storing calib parameters
39 ClassDef(AliTOFCalPadZ,1)
40};
41
42#endif //AliTOFPadZ
43
44