]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONPadHit.h
Geometry construction functions separated from AliMUON, AliMUONv1into a new AliMUONGe...
[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 // Revision of includes 07/05/2004
8
9 #include <TObject.h>
10
11 class AliMUONPadHit : public TObject {
12  
13 public:
14    AliMUONPadHit();
15    AliMUONPadHit(Int_t *clhits);
16    virtual ~AliMUONPadHit() {;}
17
18    Int_t   HitNumber() const {return fHitNumber;}
19    Int_t   Cathode()   const {return fCathode;}
20    Int_t   Q()         const {return fQ;}
21    Int_t   PadX()      const {return fPadX;}   
22    Int_t   PadY()      const {return fPadY;}
23    Int_t   QPad()      const {return fQpad;}
24    Int_t   RSec()      const {return fRSec;}
25    
26  private:
27    Int_t     fHitNumber;    // Hit number
28    Int_t     fCathode;      // Cathode number
29    Int_t     fQ  ;          // Total charge      
30    Int_t     fPadX  ;       // Pad number along X
31    Int_t     fPadY  ;       // Pad number along Y
32    Int_t     fQpad  ;       // Charge per pad
33    Int_t     fRSec  ;       // R -sector of pad
34    ClassDef(AliMUONPadHit,1)  // MUON Pad Hit
35 };
36 #endif