ROOT logo
#ifndef ALIDIGITNEW_H
#define ALIDIGITNEW_H
/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
 * See cxx source for full Copyright notice                               */

/* $Id$ */

////////////////////////////////////////////////
//  Base class for Alice Digits               //
////////////////////////////////////////////////

#include "TObject.h"
class TClonesArray;

typedef TClonesArray DigitsList ;       

class AliDigitNew : public TObject {

 public: 
  AliDigitNew();   
  ~AliDigitNew() {}
  Int_t   GetAmp() const { return fAmp  ; } 
  Int_t   GetId() const  { return fId ; }      
  Int_t   GetIndexInList() const { return fIndexInList ; } 
  void    SetIndexInList(Int_t val) { fIndexInList = val ; } 

 protected:
 
  Int_t fAmp ;               // digitalized energy
  Int_t fId ;                // absolute id
  Int_t fIndexInList ;       // the index of this digit in the list stored in TreeD
   
  ClassDef(AliDigitNew,1)  //Base class for all Alice digits

} ;
#endif // ALIDIGITNEW_H
 AliDigitNew.h:1
 AliDigitNew.h:2
 AliDigitNew.h:3
 AliDigitNew.h:4
 AliDigitNew.h:5
 AliDigitNew.h:6
 AliDigitNew.h:7
 AliDigitNew.h:8
 AliDigitNew.h:9
 AliDigitNew.h:10
 AliDigitNew.h:11
 AliDigitNew.h:12
 AliDigitNew.h:13
 AliDigitNew.h:14
 AliDigitNew.h:15
 AliDigitNew.h:16
 AliDigitNew.h:17
 AliDigitNew.h:18
 AliDigitNew.h:19
 AliDigitNew.h:20
 AliDigitNew.h:21
 AliDigitNew.h:22
 AliDigitNew.h:23
 AliDigitNew.h:24
 AliDigitNew.h:25
 AliDigitNew.h:26
 AliDigitNew.h:27
 AliDigitNew.h:28
 AliDigitNew.h:29
 AliDigitNew.h:30
 AliDigitNew.h:31
 AliDigitNew.h:32
 AliDigitNew.h:33
 AliDigitNew.h:34
 AliDigitNew.h:35
 AliDigitNew.h:36