]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RICH/AliRICHRecHit3D.h
New methods and data member added by M. Horner.
[u/mrichter/AliRoot.git] / RICH / AliRICHRecHit3D.h
CommitLineData
fb680dee 1#ifndef ALIRICHRECHIT3D_H
2#define ALIRICHRECHIT3D_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 AliRICHRecHit3D : 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
d273d8c4 17 Float_t fMeanRadius; //Mean radius from input digits
5ccd0378 18 Float_t fOriginalOmega; //Particle real Cerenkov angle
19 Float_t fOriginalTheta; //Particle real incidence angle
20 Float_t fOriginalPhi; //Particle real azimuthal angle
21
22
fb680dee 23 public:
24 AliRICHRecHit3D() {
25 fTheta=fPhi=fOmega=0;
26 }
5ccd0378 27 AliRICHRecHit3D(Int_t id, Float_t* rechit, Float_t omega, Float_t theta, Float_t phi);
fb680dee 28 virtual ~AliRICHRecHit3D() {}
c4479aeb 29 ClassDef(AliRICHRecHit3D,2) //Reconstructed hit object for set:RICH
fb680dee 30};
31
32#endif
33
34
35
36
37
38