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 *
8 //*************************************************************************
10 #ifndef ALIHLTTPCCAHIT_H
11 #define ALIHLTTPCCAHIT_H
13 #include "AliHLTTPCCADef.h"
16 * @class AliHLTTPCCAHit
18 * The AliHLTTPCCAHit class is the internal representation
19 * of the TPC clusters for the AliHLTTPCCATracker algorithm.
26 GPUhd() float Y() const { return fY; }
27 GPUhd() float Z() const { return fZ; }
29 GPUhd() void SetY( float v ) { fY = v; }
30 GPUhd() void SetZ( float v ) { fZ = v; }
34 float fY, fZ; // Y and Z position of the TPC cluster