]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliDigitNew.h
Just updated
[u/mrichter/AliRoot.git] / STEER / AliDigitNew.h
CommitLineData
2a33668d 1#ifndef ALIDIGITNEW_H
2#define ALIDIGITNEW_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
14class AliDigitNew : public TObject {
15 public:
16 Int_t fTracks[3]; //tracks number making this digit (up to 3)
17
18 public:
19 AliDigitNew() ;
20 AliDigitNew(Int_t *track);
21 ~AliDigitNew() {;}
22 inline virtual int *GetTracks() {return &fTracks[0];}
23 inline virtual Int_t GetAmp() = 0 ;
24
25 private:
26
27
28 public:
29 ClassDef(AliDigitNew,1) //Base class for all Alice digits
30
31} ;
32#endif // ALIDIGITNEW_H