]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONPadHit.h
Removing warnings ...
[u/mrichter/AliRoot.git] / MUON / AliMUONPadHit.h
CommitLineData
a9e2aefa 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
11class AliMUONPadHit : public TObject {
a450cfad 12
a9e2aefa 13public:
a450cfad 14 AliMUONPadHit() {
15 fHitNumber=fQ=fPadX=fPadY=fQpad=fRSec=0;
16}
17 AliMUONPadHit(Int_t *clhits);
18 virtual ~AliMUONPadHit() {;}
380da863 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;}
a450cfad 26
27 private:
a9e2aefa 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
a9e2aefa 35 ClassDef(AliMUONPadHit,1) // MUON Pad Hit
36};
37#endif