]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCdigit.h
Update
[u/mrichter/AliRoot.git] / TPC / AliTPCdigit.h
CommitLineData
6d75e4b6 1#ifndef ALITPCDIGIT_H
2#define ALITPCDIGIT_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// Digit class for TPC //
10////////////////////////////////////////////////
11#include "AliDigit.h"
12
13
14class AliTPCdigit : public AliDigit {
15public:
16 Int_t fSector; //array of volumes
17 Int_t fPadRow; //Row number
18 Int_t fPad ; //Pad number
19 Int_t fTime; //Time bucket
20 Int_t fSignal; //Signal amplitude
21
22public:
179c6296 23 AliTPCdigit();
6d75e4b6 24 AliTPCdigit(Int_t *tracks, Int_t *digits);
25 virtual ~AliTPCdigit() {}
26
27 ClassDef(AliTPCdigit,1) // Time Projection Chamber digits
28};
29
30#endif