]>
Commit | Line | Data |
---|---|---|
8230f242 | 1 | #ifndef ALITRDDIGIT_H |
2 | #define ALITRDDIGIT_H | |
6f1e466d | 3 | /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * |
4 | * See cxx source for full Copyright notice */ | |
5 | ||
6 | /* $Id: AliTRDdigit.h,v */ | |
7 | ||
0a29d0f1 | 8 | /////////////////////////////////////////////////////////////////////////////// |
9 | // // | |
10 | // The TRD digit // | |
11 | // // | |
12 | /////////////////////////////////////////////////////////////////////////////// | |
13 | ||
6f1e466d | 14 | #include "AliDigitNew.h" |
15 | ||
6f1e466d | 16 | //_____________________________________________________________________________ |
17 | class AliTRDdigit : public AliDigitNew { | |
18 | ||
19 | public: | |
20 | ||
21 | AliTRDdigit(); | |
1633a689 | 22 | AliTRDdigit(Int_t * const digits, const Int_t *amp); |
8230f242 | 23 | virtual ~AliTRDdigit(); |
6f1e466d | 24 | |
793ff80c | 25 | Int_t GetDetector() const { return fId; }; |
625f5260 | 26 | |
793ff80c | 27 | Int_t GetRow() const { return fRow; }; |
28 | Int_t GetCol() const { return fCol; }; | |
29 | Int_t GetTime() const { return fTime; }; | |
6f1e466d | 30 | |
6f1e466d | 31 | protected: |
32 | ||
2745a409 | 33 | UShort_t fRow; // Pad row number |
34 | UShort_t fCol; // Pad col number | |
35 | UShort_t fTime; // Time bucket | |
6f1e466d | 36 | |
625f5260 | 37 | ClassDef(AliTRDdigit,3) // Digit for the TRD |
6f1e466d | 38 | |
39 | }; | |
40 | ||
41 | #endif |