Line data Source code
1 : #ifndef ALIPADMAX_H
2 : #define ALIPADMAX_H
3 : /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 : * See cxx source for full Copyright notice */
5 :
6 : /* $Id: AliTPCclusterKr.h,v 1.8 2007/12/31 16:07:15 matyja Exp $ */
7 :
8 : //-------------------------------------------------------
9 : // TPC Kr Cluster Class
10 : //
11 : // Origin: Adam Matyja, INP PAN, adam.matyja@ifj.edu.pl
12 : //-------------------------------------------------------
13 :
14 : #include "AliTPCvtpr.h"
15 : //_____________________________________________________________________________
16 0 : class AliPadMax: public AliTPCvtpr{
17 : public:
18 : AliPadMax();
19 : ~AliPadMax();
20 : AliPadMax(AliTPCvtpr vtpr,
21 : Short_t beg,Short_t end,Short_t sum);
22 :
23 : AliPadMax(Short_t max,Short_t nt,Short_t np,Short_t nr,
24 : Double_t x,Double_t y,Double_t t,
25 : Short_t beg,Short_t end,Short_t sum);
26 :
27 :
28 0 : void SetBegin(Short_t q){fBegin=q;}
29 0 : void SetEnd(Short_t q){fEnd=q;}
30 0 : void SetSum(Short_t q){fSumAdc=q;}
31 :
32 0 : Short_t GetBegin(){return fBegin;}
33 0 : Short_t GetEnd(){return fEnd;}
34 0 : Short_t GetSum(){return fSumAdc;}
35 :
36 : private:
37 : Short_t fBegin;
38 : Short_t fEnd;//nt-1;//end of decreasing
39 : Short_t fSumAdc;
40 :
41 16 : ClassDef(AliPadMax,1) // Time Projection Chamber Kr clusters
42 : };
43 :
44 : #endif
45 :
46 :
|