forked from alisw/AliRoot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAliTOFCalPlateA.h
47 lines (36 loc) · 1.38 KB
/
AliTOFCalPlateA.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#ifndef ALITOFCALPLATEA_H
#define ALITOFCALPLATEA_H
/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
* See cxx source for full Copyright notice */
//////////////////////////////////////////////////////////////////
// class for TOF calibration:: PlateC //
//////////////////////////////////////////////////////////////////
//_____________________________________________________________
#include "TObject.h"
class TBrowser;
class AliTOFChannel;
class AliTOFGeometry;
class AliTOFCalPlateA: public TObject
{
public:
AliTOFCalPlateA();
AliTOFCalPlateA(AliTOFGeometry *geom);
AliTOFCalPlateA(AliTOFChannel *ch);
AliTOFCalPlateA(AliTOFGeometry *geom,AliTOFChannel *ch);
AliTOFCalPlateA(const AliTOFCalPlateA& pl);
AliTOFCalPlateA& operator=(const AliTOFCalPlateA &source); // ass. op.
virtual ~AliTOFCalPlateA();
Int_t NStripA()const {return fNStripA;}
Int_t NpadZ()const {return fNpadZ;}
Int_t NpadX()const {return fNpadX;}
void Browse(TBrowser *b);
Bool_t IsFolder() const{return kTRUE;}
private:
Int_t fNStripA; // number of TOF strips A
Int_t fNpadZ; // number of TOF pads Z
Int_t fNpadX; // number of TOF pads X
AliTOFGeometry *fGeom; // AliTOFgeometry pointer
AliTOFChannel *fCh; //array of AliTOFChannel storing calib parameters
ClassDef(AliTOFCalPlateA,1)
};
#endif