]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDdetDigits.h
Correct mother-daughter relation in particle stack.
[u/mrichter/AliRoot.git] / TRD / AliTRDdetDigits.h
1 #ifndef TRDdetDigits_H
2 #define TRDdetDigits_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 //  Digits container for one TRD detector  //
10 /////////////////////////////////////////////
11
12 #include "AliDigits.h"
13
14 //_____________________________________________________________________________
15 class AliTRDdetDigits : public AliDigits {
16
17  public:
18
19   AliTRDdetDigits();
20   ~AliTRDdetDigits() { };
21
22   virtual void Allocate(Int_t nrow, Int_t ncol, Int_t ntime);
23   virtual void SetDigit(Int_t row, Int_t col, Int_t time, Short_t value);
24
25  protected:
26
27   Int_t   fNrowTRD;                  // Number of rows in the TRD
28   Int_t   fNcolTRD;                  // Number of colums in the TRD
29
30   ClassDef(AliTRDdetDigits,1)        // Digits container for one TRD detector
31
32 };
33
34 #endif