]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HBTAN/AliHBTParticle.h
Track Points Added. Class needed for Anti-Merging cut
[u/mrichter/AliRoot.git] / HBTAN / AliHBTParticle.h
index 72a55f713f578fec29ed815ce1b4b942832ba59a..9904aca2d041e65960298c9f3d2363b5e01aad32 100644 (file)
@@ -20,7 +20,7 @@
 #include "AliConst.h"
 
 class TParticle;
-//class AliHBTTrackPoints;
+class AliHBTTrackPoints;
 
 class AliHBTParticle : public TObject
 {
@@ -112,7 +112,10 @@ public:
   
   const Char_t*  GetName() const; 
   void           Print() const;
-
+  
+  void           SetTrackPoints(AliHBTTrackPoints* tpts){fTrackPoints = tpts;}
+  AliHBTTrackPoints* GetTrackPoints() const {return fTrackPoints;}
+      
   static void    SetDebug(Int_t dbg=1){fgDebug=dbg;}
   static Int_t   GetDebug(){return fgDebug;}
   static Int_t   fgDebug; //debug printout level
@@ -139,7 +142,8 @@ private:
   Double_t       fVz;                   // z of production vertex
   Double_t       fVt;                   // t of production vertex
 
-  ClassDef(AliHBTParticle,2)  // TParticle vertex particle information
+  AliHBTTrackPoints* fTrackPoints;      // track positions along trajectory - used by anti-merging cut
+  ClassDef(AliHBTParticle,3)  // TParticle vertex particle information
 };
 
 #endif