]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - RAW/AliHoughFilter.h
Renaming calibration classes (A.Colla)
[u/mrichter/AliRoot.git] / RAW / AliHoughFilter.h
index 73414db2939d334d659d5f24f94afc40bec4189f..19871045e05e202f7fc570e31ae5afeb90f5813b 100644 (file)
 
 #include "AliFilter.h"
 
+class TTree;
+
+class AliITSgeom;
+
 
 class AliHoughFilter: public AliFilter {
 public:
@@ -18,7 +22,15 @@ public:
 
   virtual Bool_t       Filter(AliRawEvent* event, AliESD* esd);
 
+  void                 RunITSclusterer(AliRawEvent* event, TTree *treeClusters);
+  void                 RunITSvertexer(AliESD* esd, TTree *treeClusters);
+  void                 RunTPCtracking(AliRawEvent* event, AliESD* esd);
+  void                 RunITStracking(AliESD* esd, TTree *treeClusters);
 private:
+  Float_t fPtmin;        //Low limit on Pt
+
+  AliITSgeom *fITSgeom;  //Pointer to the ITS geometry
+
   ClassDef(AliHoughFilter, 0)   // TPC hough filter
 };