]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RICH/AliRICHPadHit.h
Turned on spot algorithm.
[u/mrichter/AliRoot.git] / RICH / AliRICHPadHit.h
1 #ifndef ALIRICHPADHIT_H
2 #define ALIRICHPADHIT_H
3
4
5 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
6  * See cxx source for full Copyright notice                               */
7
8 /* $Id$ */
9
10 #include <TObject.h>
11
12 class AliRICHPadHit : public TObject {
13  public:
14     
15     Int_t     fHitNumber;    // Hit number
16     Int_t     fCathode;      // Cathode number
17     Int_t     fQ  ;          // Total charge      
18     Int_t     fPadX  ;       // Pad number along X
19     Int_t     fPadY  ;       // Pad number along Y
20     Int_t     fQpad  ;       // Charge per pad
21     Int_t     fRSec  ;       // R -sector of pad
22     
23  public:
24     AliRICHPadHit() {
25         fHitNumber=fQ=fPadX=fPadY=fQpad=fRSec=0;   
26     }
27     AliRICHPadHit(Int_t *clhits);
28     virtual ~AliRICHPadHit() {}
29        
30     ClassDef(AliRICHPadHit,1)  //Cluster object for set:RICH
31 };
32 #endif