]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RICH/AliRICHRecHit.h
add NaN trap to linux version
[u/mrichter/AliRoot.git] / RICH / AliRICHRecHit.h
CommitLineData
237c933d 1#ifndef ALIRICHRECHIT_H
2#define ALIRICHRECHIT_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#include <TObject.h>
10class AliRICHRecHit : public TObject {
11public:
12 Float_t fTheta ; //Incidence Angle theta
13 Float_t fPhi ; //Incidence Angle phi
14 Float_t fOmega; //Cherenkov angle omega
15 Float_t fX; //Impact coordinate x
16 Float_t fY; //Impact coordinate y
265328df 17 Int_t fGoodPhotons; //Number of photons used for reconstruction
18 Float_t fEmissPoint; //Emission point of the cherenkov photons
19 Float_t fCerPerPhoton[100]; //Recontructed cerenkov angle per photon
20 Int_t fPadsUsedX[100]; //List of pads used for reconstruction (x)
21 Int_t fPadsUsedY[100]; //List of pads used for reconstruction (y)
22
237c933d 23 public:
24 AliRICHRecHit() {
25 fTheta=fPhi=fOmega=0;
26 }
265328df 27 AliRICHRecHit(Int_t id, Float_t* rechit, Float_t* photons, Int_t* padsX, Int_t* padsY);
237c933d 28 virtual ~AliRICHRecHit() {}
29 ClassDef(AliRICHRecHit,1) //Reconstructed hit object for set:RICH
30};
31
32#endif
33
34
35
36
37
38