]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONPadHit.h
Change of argument list of methods GetPadCxy, GetPadIxy, SetHit and FirstPad
[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 {
12public:
13
14 Int_t fHitNumber; // Hit number
15 Int_t fCathode; // Cathode number
16 Int_t fQ ; // Total charge
17 Int_t fPadX ; // Pad number along X
18 Int_t fPadY ; // Pad number along Y
19 Int_t fQpad ; // Charge per pad
20 Int_t fRSec ; // R -sector of pad
21
22public:
23 AliMUONPadHit() {
24 fHitNumber=fQ=fPadX=fPadY=fQpad=fRSec=0;
25}
26 AliMUONPadHit(Int_t *clhits);
27 virtual ~AliMUONPadHit() {;}
28
29 ClassDef(AliMUONPadHit,1) // MUON Pad Hit
30};
31#endif