971579f6 |
1 | #ifndef STARTDIGIT_H |
2 | #define STARTDIGIT_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 | #include "AliDigit.h" |
9 | #include "AliSTART.h" |
10 | |
11 | //___________________________________________ |
12 | class AliSTARTdigit: public AliDigit { |
13 | //////////////////////////////////////////////////////////////////////// |
14 | public: |
15 | Int_t fEvent; // Event number |
16 | Int_t fTime_average; // Average time |
17 | Int_t fTime_diff; // Time difference |
18 | |
19 | public: |
20 | AliSTARTdigit() {} |
21 | AliSTARTdigit(Int_t *tracks, Int_t *digits); |
22 | virtual ~AliSTARTdigit() {} |
23 | |
24 | ClassDef(AliSTARTdigit,1) //Digit (Header) object for set:ITS |
25 | }; |
26 | #endif |