]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/src/AliHLTVertexFinder.h
L3 becomes HLT
[u/mrichter/AliRoot.git] / HLT / src / AliHLTVertexFinder.h
similarity index 60%
rename from HLT/src/AliL3VertexFinder.h
rename to HLT/src/AliHLTVertexFinder.h
index 5d7735ecc8e4f46784ead9ac520e4d8c51c617b6..e7cd1f7c2eba61abf6891ecca09668dc3dee8d03 100644 (file)
@@ -1,15 +1,15 @@
 // @(#) $Id$
 
-#ifndef AliL3VERTEXFINDER_H
-#define AliL3VERTEXFINDER_H
+#ifndef AliHLTVERTEXFINDER_H
+#define AliHLTVERTEXFINDER_H
 
-class AliL3SpacePointData;
-class AliL3VertexData;
-class AliL3Vertex;
+class AliHLTSpacePointData;
+class AliHLTVertexData;
+class AliHLTVertex;
 
-#include "AliL3VertexArray.h"
+#include "AliHLTVertexArray.h"
 
-class AliL3VertexFinder:public AliL3VertexArray {
+class AliHLTVertexFinder:public AliHLTVertexArray {
  private:
   Double_t fX;     // x
   Double_t fY;     // y
@@ -23,15 +23,15 @@ class AliL3VertexFinder:public AliL3VertexArray {
   Double_t fMWxy;  // xy weight
 
  public:
-  AliL3VertexFinder(); 
-  AliL3VertexFinder(AliL3VertexFinder &vf) : AliL3VertexArray(vf){;}
-  virtual ~AliL3VertexFinder();
+  AliHLTVertexFinder(); 
+  AliHLTVertexFinder(AliHLTVertexFinder &vf) : AliHLTVertexArray(vf){;}
+  virtual ~AliHLTVertexFinder();
 
   void Reset();
-  void Read(Int_t ncluster, AliL3SpacePointData* hits);
+  void Read(Int_t ncluster, AliHLTSpacePointData* hits);
   void Analyze();
-  void Write(AliL3Vertex *vertex) const;
-  void Write(AliL3VertexData *vertex) const;
+  void Write(AliHLTVertex *vertex) const;
+  void Write(AliHLTVertexData *vertex) const;
 
   Double_t GetX() const {return fX;}
   Double_t GetY() const {return fY;}
@@ -51,6 +51,9 @@ class AliL3VertexFinder:public AliL3VertexArray {
 
   void SetXYWeight(Double_t f) {fMWxy = f;}
  
-  ClassDef(AliL3VertexFinder,1)  // Vertex finder class
+  ClassDef(AliHLTVertexFinder,1)  // Vertex finder class
 };
+
+typedef AliHLTVertexFinder AliL3VertexFinder; // for backward compatibility
+
 #endif