]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCdigit.h
track matching macros from Alberto
[u/mrichter/AliRoot.git] / TPC / AliTPCdigit.h
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
14 class AliTPCdigit : public AliDigit {
15 public:
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  
22 public:
23    AliTPCdigit() {}
24    AliTPCdigit(Int_t *tracks, Int_t *digits);
25    virtual ~AliTPCdigit() {}
26  
27    ClassDef(AliTPCdigit,1)  // Time Projection Chamber digits
28 };
29
30 #endif