]> git.uio.no Git - u/mrichter/AliRoot.git/blob - CRT/AliCRTdigit.h
Message commented out
[u/mrichter/AliRoot.git] / CRT / AliCRTdigit.h
1 #ifndef ALICRTDIGIT_H
2 #define ALICRTDIGIT_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 ////////////////////////////////////////////////////////////////////////////
9 //  CRT digit: Id
10 //
11 // The digits are made in FinishEvent() by summing all the hits in a 
12 // counter.
13 ////////////////////////////////////////////////////////////////////////////
14
15 #include "AliDigit.h"
16
17 class TArrayF;
18 class TArrayI;
19
20 class AliCRTdigit: public AliDigit  {
21 public:
22   AliCRTdigit();
23   AliCRTdigit(Int_t* tracks, Int_t* vol, Float_t* digit);
24   AliCRTdigit(const AliCRTdigit& digit);
25   virtual ~AliCRTdigit();
26
27   AliCRTdigit& operator= (const AliCRTdigit& digit);
28
29 protected:
30   Int_t     fSector;  // number of sector
31   Int_t     fPlate;   // number of plate
32   Int_t     fStrip;   // number of strip
33   Int_t     fPadx;    // number of pad along x
34   Int_t     fPadz;    // number of pad along z
35   Int_t     fNDigits;  // dimension of fTdc array
36   TArrayF*  fTdc;     // tdc values for sdigit
37   TArrayF*  fAdc;     // adc values for sdigit
38
39 private:
40     ClassDef(AliCRTdigit,1)  //Digit (Header) object for set : CRT (ACORDE)
41 };
42 #endif // ALICRTDIGIT_H