]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONPadHit.h
former trigger Look Up Table with calc. pt
[u/mrichter/AliRoot.git] / MUON / AliMUONPadHit.h
1 #ifndef ALIMUONPADHIT_H
2 #define ALIMUONPADHIT_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
11 class AliMUONPadHit : public TObject {
12  
13 public:
14    AliMUONPadHit() {
15       fHitNumber=fQ=fPadX=fPadY=fQpad=fRSec=0;   
16 }
17    AliMUONPadHit(Int_t *clhits);
18    virtual ~AliMUONPadHit() {;}
19    Int_t   HitNumber() const {return fHitNumber;}
20    Int_t   Cathode()   const {return fCathode;}
21    Int_t   Q()         const {return fQ;}
22    Int_t   PadX()      const {return fPadX;}   
23    Int_t   PadY()      const {return fPadY;}
24    Int_t   QPad()      const {return fQpad;}
25    Int_t   RSec()      const {return fRSec;}
26    
27  private:
28    Int_t     fHitNumber;    // Hit number
29    Int_t     fCathode;      // Cathode number
30    Int_t     fQ  ;          // Total charge      
31    Int_t     fPadX  ;       // Pad number along X
32    Int_t     fPadY  ;       // Pad number along Y
33    Int_t     fQpad  ;       // Charge per pad
34    Int_t     fRSec  ;       // R -sector of pad
35    ClassDef(AliMUONPadHit,1)  // MUON Pad Hit
36 };
37 #endif