]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDdetDigits.h
Minor corrections needed on alpha
[u/mrichter/AliRoot.git] / TRD / AliTRDdetDigits.h
CommitLineData
f7336fa3 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//_____________________________________________________________________________
15class 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