]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliDigit.h
New version from M.Kowalski
[u/mrichter/AliRoot.git] / STEER / AliDigit.h
CommitLineData
fe4da5cc 1#ifndef AliDigit_H
2#define AliDigit_H
3////////////////////////////////////////////////
4// Base class for Alice Digits //
5////////////////////////////////////////////////
6
7#include "TObject.h"
8
9class AliDigit : public TObject {
10public:
11 Int_t fTracks[3]; //tracks number making this digit (up to 3)
12
13public:
14 AliDigit();
15 AliDigit(Int_t *track);
16 ~AliDigit() {;}
17 inline virtual int *GetTracks() {return &fTracks[0];}
18
19 ClassDef(AliDigit,1) //Base class for all Alice digits
20};
21#endif