]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - TOF/AliTOFCalStrip.h
Adding PiKP-only resolution histograms and switch to turn off many histograms which...
[u/mrichter/AliRoot.git] / TOF / AliTOFCalStrip.h
... / ...
CommitLineData
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"
14
15class TBrowser;
16class AliTOFGeometry;
17class AliTOFChannel;
18
19class AliTOFCalStrip: public TObject
20{
21 public:
22 AliTOFCalStrip(AliTOFGeometry *geom);
23 AliTOFCalStrip(AliTOFGeometry *geom,AliTOFChannel *ch);
24 AliTOFCalStrip();
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;}
33private:
34 Int_t fNpadZ; // number of TOF pads Z
35 Int_t fNpadX; // number of TOF pads X
36
37 AliTOFGeometry *fGeom; // AliTOFgeometry pointer
38 AliTOFChannel *fCh; //array of AliTOFChannel storing calib parameters
39 ClassDef(AliTOFCalStrip,1)
40};
41
42#endif
43
44