]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONReconstHit.h
New methods and data member added by M. Horner.
[u/mrichter/AliRoot.git] / MUON / AliMUONReconstHit.h
CommitLineData
a9e2aefa 1#ifndef ALIMUONRECONSTHIT_H
2#define ALIMUONRECONSTHIT_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7/* $Id$ */
8
9#include <TObject.h>
10
11class AliMUONReconstHit : public TObject {
12public:
13
14 // correlation starts from the 1-st cathode
15 // last number in arrays corresponds to cluster on 1-st cathode
16
17 Int_t fCorrelIndex[4]; // entry number in TreeR for the associated
18 // cluster candidates on the 2-nd cathode
19 Float_t fX[4] ; // X of clusters on the 2-nd cathode
20 Float_t fY[4] ; // Y of clusters
21
22public:
23 AliMUONReconstHit() {
24 fCorrelIndex[0]=fCorrelIndex[1]=fCorrelIndex[2]=fCorrelIndex[3]=0;
25 fX[0]=fX[1]=fX[2]=fX[3]=0; fY[0]=fY[1]=fY[2]=fY[3]=0;
26 }
27 AliMUONReconstHit(Int_t *idx, Float_t *x, Float_t *y);
28 virtual ~AliMUONReconstHit() {}
29 ClassDef(AliMUONReconstHit,1) // Reconstructed Hit Object for set:MUON
30};
31#endif