]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFCalStrip.h
Update the mult corr histograms
[u/mrichter/AliRoot.git] / TOF / AliTOFCalStrip.h
CommitLineData
6dc9348d 1#ifndef ALITOFCALSTRIP_H
2#define ALITOFCALSTRIP_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:: strips //
9//////////////////////////////////////////////////////////////////
10
11//_____________________________________________________________
12
13#include "TObject.h"
0e46b9ae 14
15class TBrowser;
16class AliTOFGeometry;
17class AliTOFChannel;
6dc9348d 18
19class AliTOFCalStrip: public TObject
20{
21 public:
d4ad0d6b 22 AliTOFCalStrip(AliTOFGeometry *geom);
23 AliTOFCalStrip(AliTOFGeometry *geom,AliTOFChannel *ch);
6dc9348d 24 AliTOFCalStrip();
25 AliTOFCalStrip(AliTOFChannel *ch);
26 AliTOFCalStrip(const AliTOFCalStrip& strip);
7aeeaf38 27 AliTOFCalStrip& operator=(const AliTOFCalStrip &source); // ass. op.
6dc9348d 28 virtual ~AliTOFCalStrip();
6dc9348d 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;}
33private:
6dc9348d 34 Int_t fNpadZ; // number of TOF pads Z
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(AliTOFCalStrip,1)
40};
41
42#endif
43
44