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