#ifndef ALICRTDIGIT_H #define ALICRTDIGIT_H /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ /* $Id$ */ #include #include #include "AliDigit.h" #include "AliCRT.h" class AliCRTdigit: public TObject { public: AliCRTdigit(); AliCRTdigit(Int_t tracknum, Int_t* vol, Float_t* digit); AliCRTdigit(const AliCRTdigit & digit); AliCRTdigit& operator= (const AliCRTdigit& digit); virtual ~AliCRTdigit() {} protected: Int_t fSector; // number of sector Int_t fPlate; // number of plate Int_t fStrip; // number of strip Int_t fPadx; // number of pad along x Int_t fPadz; // number of pad along z Int_t fNDigits; // dimension of fTdc array TArrayF *fTdc; // tdc values for sdigit TArrayF *fAdc; // adc values for sdigit TArrayI *fTracks; // contributing tracks, kMAXDIGITS entries per // 1 tdc value private: ClassDef(AliCRTdigit,1) //Digit (Header) object for set : CRT (ACORDE) }; #endif // ALICRTDIGIT_H