Line data Source code
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 0 : GPUhd() float Y() const { return fY; }
27 0 : GPUhd() float Z() const { return fZ; }
28 :
29 0 : GPUhd() void SetY( float v ) { fY = v; }
30 0 : GPUhd() void SetZ( float v ) { fZ = v; }
31 :
32 : protected:
33 : float fY, fZ; // Y and Z position of the TPC cluster
34 :
35 : };
36 :
37 :
38 : #endif //ALIHLTTPCCAHIT_H
|