]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - RICH/AliRICHRecHit3D.h
new Hits2SDigits.
[u/mrichter/AliRoot.git] / RICH / AliRICHRecHit3D.h
... / ...
CommitLineData
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
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
18 Float_t fMeanRadius; //Mean radius from input digits
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
24 public:
25 AliRICHRecHit3D() {
26 fTheta=fPhi=fOmega=0;
27 }
28 AliRICHRecHit3D(Int_t id, Float_t* rechit, Float_t omega, Float_t theta, Float_t phi);
29 virtual ~AliRICHRecHit3D() {}
30 ClassDef(AliRICHRecHit3D,2) //Reconstructed hit object for set:RICH
31};
32
33#endif
34
35
36
37
38
39