]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONDigit.h
4cc14fe4a7acaf442d434ad30e73d28047589b6c
[u/mrichter/AliRoot.git] / MUON / AliMUONDigit.h
1 #ifndef ALIMUONDIGIT_H
2 #define ALIMUONDIGIT_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 #include <TObject.h>
9
10 class AliMUONDigit : public TObject {
11  public:
12     Int_t     fPadX;          // Pad number along x
13     Int_t     fPadY ;         // Pad number along y
14     Int_t     fSignal;        // Signal amplitude
15     Int_t     fTcharges[10];  // charge per track making this digit (up to 10)
16     Int_t     fTracks[10];    // primary tracks making this digit (up to 10)
17     Int_t     fPhysics;       // physics contribution to signal 
18     Int_t     fHit;           // hit number - temporary solution
19  public:
20     AliMUONDigit() {}
21     AliMUONDigit(Int_t *digits);
22     AliMUONDigit(Int_t *tracks, Int_t *charges, Int_t *digits);
23     virtual ~AliMUONDigit();
24     ClassDef(AliMUONDigit,1)  //Digits for MUON
25 };
26 #endif