a9e2aefa |
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(); |
a1001283 |
24 | ClassDef(AliMUONDigit,1) //Digits for MUON |
a9e2aefa |
25 | }; |
26 | #endif |