]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RICH/AliRICHHit.h
Removal of useless dependencies via forward declarations
[u/mrichter/AliRoot.git] / RICH / AliRICHHit.h
1 #ifndef ALIRICHHIT_H
2 #define ALIRICHHIT_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
11 #include "AliHit.h"
12
13 class AliRICHHit : public AliHit {
14  public:
15     Int_t     fChamber;       // Chamber number
16     Float_t   fParticle;      // Geant3 particle type
17     Float_t   fTheta ;        // Incident theta angle in degrees      
18     Float_t   fPhi   ;        // Incident phi angle in degrees
19     Float_t   fTlength;       // Track length inside the chamber
20     Float_t   fEloss;         // ionisation energy loss in gas   
21     Float_t   fPHfirst;       // first padhit
22     Float_t   fPHlast;        // last padhit
23     Float_t   fLoss;          // did it hit the freon?
24     Float_t   fMomX;            // Local Momentum
25     Float_t   fMomY;            // Local Momentum
26     Float_t   fMomZ;            // Local Momentum
27     Float_t   fNPads;           // Pads hit
28  public:
29     AliRICHHit() {}
30     AliRICHHit(Int_t fIshunt, Int_t track, Int_t *vol, Float_t *hits);
31     virtual ~AliRICHHit() {}
32     
33     ClassDef(AliRICHHit,1)  //Hits object for set:RICH
34 };
35 #endif