]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RICH/AliRICHRecHit1D.h
rules checked
[u/mrichter/AliRoot.git] / RICH / AliRICHRecHit1D.h
CommitLineData
2daf7790 1#ifndef ALIRICHRECHIT1D_H
2#define ALIRICHRECHIT1D_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 AliRICHRecHit1D : 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
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
23 public:
24 AliRICHRecHit1D() {
25 fTheta=fPhi=fOmega=0;
26 }
27 AliRICHRecHit1D(Int_t id, Float_t* rechit, Float_t* photons, Int_t* padsX, Int_t* padsY);
28 virtual ~AliRICHRecHit1D() {}
29 ClassDef(AliRICHRecHit1D,1) //Reconstructed hit object for set:RICH
30};
31
32#endif
33
34
35
36
37
38