f359b593 |
1 | #ifndef ALIVZERODIGIT_H |
2 | #define ALIVZERODIGIT_H |
47890cd3 |
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" |
47890cd3 |
9 | |
b2501ea3 |
10 | //_____________________________________________________________________________ |
47890cd3 |
11 | class AliVZEROdigit: public AliDigit { |
12 | |
47890cd3 |
13 | public: |
6905601e |
14 | AliVZEROdigit(); |
47890cd3 |
15 | AliVZEROdigit(Int_t* tracks, Int_t* digits); |
6905601e |
16 | AliVZEROdigit(Int_t /* eventnumber */, Int_t /* cellnumber */, Int_t /* adc */); |
b2501ea3 |
17 | virtual ~AliVZEROdigit() {}; |
6905601e |
18 | Int_t CellNumber() const {return fCellNumber;} |
19 | Int_t ADC() const {return fADC;} |
20 | |
f359b593 |
21 | private: |
6905601e |
22 | Int_t fTrack; // Track number |
23 | |
24 | protected: |
25 | Int_t fEvent; // Event number |
26 | Int_t fCellNumber; // Scintillator cell number |
27 | Int_t fADC; // ADC response |
28 | |
47890cd3 |
29 | ClassDef(AliVZEROdigit,1) //Digit (Header) object for set : VZERO |
30 | }; |
f359b593 |
31 | |
47890cd3 |
32 | #endif |