]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/TPCLib/tracking-ca/AliHLTTPCCAHit.h
Update of the CA tracker
[u/mrichter/AliRoot.git] / HLT / TPCLib / tracking-ca / AliHLTTPCCAHit.h
1 //-*- Mode: C++ -*-
2 // @(#) $Id$
3 // ************************************************************************
4 // This file is property of and copyright by the ALICE HLT Project        * 
5 // ALICE Experiment at CERN, All rights reserved.                         *
6 // See cxx source for full Copyright notice                               *
7 //                                                                        *
8 //*************************************************************************
9
10 #ifndef ALIHLTTPCCAHIT_H
11 #define ALIHLTTPCCAHIT_H
12
13 #include "AliHLTTPCCADef.h"
14
15 /**
16  * @class AliHLTTPCCAHit
17  *
18  * The AliHLTTPCCAHit class is the internal representation
19  * of the TPC clusters for the AliHLTTPCCATracker algorithm.
20  *
21  */
22 class AliHLTTPCCAHit
23 {
24 public:
25   
26   GPUhd() Float_t Y() const   { return fY;    }
27   GPUhd() Float_t Z() const  { return fZ;    }
28
29   GPUhd() void SetY( Float_t v ){ fY = v;    }
30   GPUhd() void SetZ( Float_t v ){ fZ = v;    }
31   
32 protected:
33   
34   Float_t fY, fZ;       // Y and Z position of the TPC cluster
35   
36 };
37
38
39 #endif