3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
13 class AliCRTdigit: public AliDigit {
16 AliCRTdigit(Int_t tracknum, Int_t* vol, Float_t* digit);
17 AliCRTdigit(const AliCRTdigit& digit);
18 virtual ~AliCRTdigit();
20 AliCRTdigit& operator= (const AliCRTdigit& digit);
23 Int_t fSector; // number of sector
24 Int_t fPlate; // number of plate
25 Int_t fStrip; // number of strip
26 Int_t fPadx; // number of pad along x
27 Int_t fPadz; // number of pad along z
28 Int_t fNDigits; // dimension of fTdc array
29 TArrayF* fTdc; // tdc values for sdigit
30 TArrayF* fAdc; // adc values for sdigit
31 TArrayI* fTracks; // contributing tracks, kMAXDIGITS entries per
34 ClassDef(AliCRTdigit,1) //Digit (Header) object for set : CRT (ACORDE)
36 #endif // ALICRTDIGIT_H