]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RICH/AliRICHRecHit3D.h
Transition to NewIO
[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$ */
88cb7938 9
fb680dee 10#include <TObject.h>
11class AliRICHRecHit3D : public TObject {
12public:
13 Float_t fTheta ; //Incidence Angle theta
14 Float_t fPhi ; //Incidence Angle phi
15 Float_t fOmega; //Cherenkov angle omega
16 Float_t fX; //Impact coordinate x
17 Float_t fY; //Impact coordinate y
d273d8c4 18 Float_t fMeanRadius; //Mean radius from input digits
5ccd0378 19 Float_t fOriginalOmega; //Particle real Cerenkov angle
20 Float_t fOriginalTheta; //Particle real incidence angle
21 Float_t fOriginalPhi; //Particle real azimuthal angle
22
23
fb680dee 24 public:
25 AliRICHRecHit3D() {
26 fTheta=fPhi=fOmega=0;
27 }
5ccd0378 28 AliRICHRecHit3D(Int_t id, Float_t* rechit, Float_t omega, Float_t theta, Float_t phi);
fb680dee 29 virtual ~AliRICHRecHit3D() {}
c4479aeb 30 ClassDef(AliRICHRecHit3D,2) //Reconstructed hit object for set:RICH
fb680dee 31};
32
33#endif
34
35
36
37
38
39