]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FIT/AliFITRecPoint.h
check at the primary level if the energy of the companion is lower than the calorimet...
[u/mrichter/AliRoot.git] / FIT / AliFITRecPoint.h
1 #ifndef ALIFITRECPOINT_H
2 #define ALIFITRECPOINT_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 #include <TObject.h>
7
8
9 //___________________________________________
10 class AliFITRecPoint: public TObject  {
11 ////////////////////////////////////////////////////////////////////////
12  public:
13     AliFITRecPoint();
14     AliFITRecPoint(const AliFITRecPoint &o);
15     AliFITRecPoint& operator= (const AliFITRecPoint &) { return *this;}
16     virtual ~AliFITRecPoint() {}
17
18     
19      
20     void    SetTime (Int_t ipmt, Float_t time) { fTime[ipmt] = time;}
21     Float_t GetTime (Int_t ipmt)const { return fTime[ipmt];}
22     void    SetAmp (Int_t ipmt, Float_t adc) { fADCQTC[ipmt] = adc;}
23     Float_t GetAmp (Int_t ipmt) const{ return fADCQTC[ipmt];}
24     
25  
26  
27  
28   private: 
29  
30     Float_t fTime[160];    // array's TDC
31     Float_t fADCQTC[160];    // array's amplitude
32
33  
34     ClassDef(AliFITRecPoint,1)  // RecPoints (Header) object for set:T0
35 };
36
37 #endif
38
39
40