]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - TRD/AliTRDdigit.h
Updates by Ionut
[u/mrichter/AliRoot.git] / TRD / AliTRDdigit.h
... / ...
CommitLineData
1#ifndef ALITRDDIGIT_H
2#define ALITRDDIGIT_H
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
8///////////////////////////////////////////////////////////////////////////////
9// //
10// The TRD digit //
11// //
12///////////////////////////////////////////////////////////////////////////////
13
14#include "AliDigitNew.h"
15
16//_____________________________________________________________________________
17class AliTRDdigit : public AliDigitNew {
18
19 public:
20
21 AliTRDdigit();
22 AliTRDdigit(Int_t * const digits, const Int_t *amp);
23 virtual ~AliTRDdigit();
24
25 Int_t GetDetector() const { return fId; };
26
27 Int_t GetRow() const { return fRow; };
28 Int_t GetCol() const { return fCol; };
29 Int_t GetTime() const { return fTime; };
30
31 protected:
32
33 UShort_t fRow; // Pad row number
34 UShort_t fCol; // Pad col number
35 UShort_t fTime; // Time bucket
36
37 ClassDef(AliTRDdigit,3) // Digit for the TRD
38
39};
40
41#endif