]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONReconstHit.h
New definition of name ofobject in TMap tables. Fixing conding convention violations
[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$ */
30178c30 8// Revision of includes 07/05/2004
a9e2aefa 9
10#include <TObject.h>
11
0164904a 12class AliMUONReconstHit : public TObject
13{
14 public:
30178c30 15 AliMUONReconstHit();
0164904a 16 AliMUONReconstHit(Int_t *idx, Float_t *x, Float_t *y);
17 virtual ~AliMUONReconstHit() {}
18
19 private:
a9e2aefa 20
0164904a 21 // correlation starts from the 1-st cathode
22 // last number in arrays corresponds to cluster on 1-st cathode
a9e2aefa 23
0164904a 24 Int_t fCorrelIndex[4]; // entry number in TreeR for the associated
a9e2aefa 25 // cluster candidates on the 2-nd cathode
0164904a 26 Float_t fX[4] ; // X of clusters on the 2-nd cathode
27 Float_t fY[4] ; // Y of clusters
a9e2aefa 28
0164904a 29 ClassDef(AliMUONReconstHit,1) // Reconstructed Hit Object for set:MUON
a9e2aefa 30};
31#endif