3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
8 ////////////////////////////////////////////////
9 // Base class for Alice Digits //
10 ////////////////////////////////////////////////
15 typedef TClonesArray DigitsList ;
17 class AliDigitNew : public TObject {
22 Int_t GetAmp() const { return fAmp ; }
23 Int_t GetId() const { return fId ; }
24 Int_t GetIndexInList() const { return fIndexInList ; }
25 void SetIndexInList(Int_t val) { fIndexInList = val ; }
29 Int_t fAmp ; // digitalized energy
30 Int_t fId ; // absolute id
31 Int_t fIndexInList ; // the index of this digit in the list stored in TreeD
33 ClassDef(AliDigitNew,1) //Base class for all Alice digits
36 #endif // ALIDIGITNEW_H