]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFCalPlateB.h
Double precision (Marian). Coding conventions (Federico)
[u/mrichter/AliRoot.git] / TOF / AliTOFCalPlateB.h
CommitLineData
6dc9348d 1#ifndef ALITOFCALPLATEB_H
2#define ALITOFCALPLATEB_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:: PlateB //
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 AliTOFCalPlateB: public TObject
22{
23 public:
24 AliTOFCalPlateB();
d4ad0d6b 25 AliTOFCalPlateB(AliTOFGeometry *geom);
6dc9348d 26 AliTOFCalPlateB(AliTOFChannel *ch);
d4ad0d6b 27 AliTOFCalPlateB(AliTOFGeometry *geom,AliTOFChannel *ch);
6dc9348d 28 AliTOFCalPlateB(const AliTOFCalPlateB& pl);
7aeeaf38 29 AliTOFCalPlateB& operator=(const AliTOFCalPlateB &source); // ass. op.
6dc9348d 30 virtual ~AliTOFCalPlateB();
6dc9348d 31 Int_t NStripB()const {return fNStripB;}
6dc9348d 32 Int_t NpadZ()const {return fNpadZ;}
33 Int_t NpadX()const {return fNpadX;}
34 void Browse(TBrowser *b);
35 Bool_t IsFolder() const{return kTRUE;}
36private:
6dc9348d 37 Int_t fNStripB; // number of TOF strips B
6dc9348d 38 Int_t fNpadZ; // number of TOF pads Z
39 Int_t fNpadX; // number of TOF pads X
40
d4ad0d6b 41 AliTOFGeometry *fGeom; // AliTOFgeometry pointer
6dc9348d 42 AliTOFChannel *fCh; //array of AliTOFChannel storing calib parameters
43 ClassDef(AliTOFCalPlateB,1)
44};
45
46#endif
47
48