]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliDigit.h
Removing cout from AliPHOSv0hits::AddHit(Int_t, Int_t, Float_t *)
[u/mrichter/AliRoot.git] / STEER / AliDigit.h
1 #ifndef AliDigit_H
2 #define AliDigit_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 ////////////////////////////////////////////////
9 //  Base class for Alice Digits               //
10 ////////////////////////////////////////////////
11
12 #include "TObject.h"
13
14 class AliDigit : public TObject {
15 public:
16   Int_t     fTracks[3];   //tracks number making this digit (up to 3)
17
18 public:
19   AliDigit();
20   AliDigit(Int_t *track);
21   ~AliDigit() {;}
22   inline virtual int *GetTracks() {return &fTracks[0];}
23   
24   ClassDef(AliDigit,1)  //Base class for all Alice digits
25 };
26 #endif