]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSRecPoint.h
New split libs
[u/mrichter/AliRoot.git] / ITS / AliITSRecPoint.h
index 2e5c22c902d461b9a48f1dd2e48c914550f80e52..578449974921e796560b802852b26cd1778d8e32 100644 (file)
@@ -12,7 +12,7 @@
 ////////////////////////////////////////////////////
 
 #include <TObject.h>
-#include <iostream.h>
+#include <Riostream.h>
 
 
 class AliITSRecPoint : public TObject {
@@ -21,6 +21,8 @@ class AliITSRecPoint : public TObject {
     virtual ~AliITSRecPoint() {}; // distructor
     Bool_t IsSortable() const {return kTRUE;} // allows for sorting
     Int_t   GetLabel(Int_t i) const {return fTracks[i];} // get track label
+    Int_t  *GetTracks(){return fTracks;}// Returns pointer to track array
+    Int_t   GetNTracks(){return 3;} // returns track array size
     Float_t GetX() const {return fX;} // gets fX
     Float_t GetZ() const {return fZ;} // gets fZ
     Float_t GetQ() const {return fQ;} // gets fQ
@@ -37,8 +39,7 @@ class AliITSRecPoint : public TObject {
     void  Use() { //if fQ<0 cluster is already associated with a track
        fQ=-fQ;}
     Int_t IsUsed() const {return (fQ<0) ? 1 : 0;} // checks Use condision
-    Int_t Compare(const TObject *o) const { //to be defined
-       return 0;}
+    Int_t Compare(const TObject *) const {return 0;} //to be defined
     // Prints out the content of this class in ASCII format.
     void Print(ostream *os); 
     // Reads in the content of this class in the format of Print