]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/TPCLib/tracking-ca/AliHLTTPCCATrack.h
Temporary protection if one runs raw->sdigits for the real data.
[u/mrichter/AliRoot.git] / HLT / TPCLib / tracking-ca / AliHLTTPCCATrack.h
index 2faefd778201b500a3b65a095794dd5668b77613..92aec101ee808a6452b64c851ba7b82dfa808e32 100644 (file)
@@ -11,7 +11,7 @@
 #define ALIHLTTPCCATRACK_H
 
 #include "AliHLTTPCCADef.h"
-#include "AliHLTTPCCATrackParam2.h"
+#include "AliHLTTPCCABaseTrackParam.h"
 
 /**
  * @class ALIHLTTPCCAtrack
@@ -31,18 +31,18 @@ class AliHLTTPCCATrack
     GPUhd() bool Alive()               const { return fAlive; }
     GPUhd() int  NHits()               const { return fNHits; }
     GPUhd() int  FirstHitID()          const { return fFirstHitID; }
-    GPUhd() const AliHLTTPCCATrackParam2 &Param() const { return fParam; };
+    GPUhd() const AliHLTTPCCABaseTrackParam &Param() const { return fParam; };
 
     GPUhd() void SetAlive( bool v )               { fAlive = v; }
     GPUhd() void SetNHits( int v )               { fNHits = v; }
     GPUhd() void SetFirstHitID( int v )          { fFirstHitID = v; }
-    GPUhd() void SetParam( AliHLTTPCCATrackParam2 v ) { fParam = v; };
+    GPUhd() void SetParam( AliHLTTPCCABaseTrackParam v ) { fParam = v; };
 
   private:
     bool fAlive;       // flag for mark tracks used by the track merger
     int  fFirstHitID; // index of the first track cell in the track->cell pointer array
     int  fNHits;      // number of track cells
-    AliHLTTPCCATrackParam2 fParam; // track parameters
+    AliHLTTPCCABaseTrackParam fParam; // track parameters
 
   private:
     //void Dummy(); // to make rulechecker happy by having something in .cxx file