StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
AliHLTTPCCAHit.h
1 //-*- Mode: C++ -*-
2 // @(#) $Id: AliHLTTPCCAHit.h,v 1.1 2016/02/05 23:27:27 fisyak Exp $
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 
23 {
24  public:
25 
26  float Y() const { return fY; }
27  float Z() const { return fZ; }
28 
29  void SetY( float v ) { fY = v; }
30  void SetZ( float v ) { fZ = v; }
31 
32  void SetCoordinates( float y, float z ) { fY = y; fZ = z; }
33 
34  protected:
35  float fY, fZ; // Y and Z position of the TPC cluster
36 };
37 
38 
39 #endif