]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - JETAN/AliFastJetFinder.h
New AliPoissonCalculator class
[u/mrichter/AliRoot.git] / JETAN / AliFastJetFinder.h
index 55e60331192650b4ee6d23ae542513794970a095..474a750b28f6b82021e50d75fb6f70a4d345e341 100644 (file)
 #include <cmath> 
 
 #include "AliJetFinder.h"
-#include "AliFastJetHeader.h"
+#include "AliFastJetHeaderV1.h"
 
 using namespace std;
-
+class AliFastJetInput;
+class AliJetBkg;
 
 class AliFastJetFinder : public AliJetFinder
 {
@@ -42,17 +43,20 @@ class AliFastJetFinder : public AliJetFinder
   AliFastJetFinder();
   ~AliFastJetFinder();
 
-  void FindJets(); 
-  // others
-  void RunTest(const char* datafile); // a simple test
-  
-  void WriteJHeaderToFile();
+  virtual void    FindJets(); 
+  void    RunTest(const char* datafile); // a simple test
+  virtual void    WriteJHeaderToFile() const;
+  Float_t EtaToTheta(Float_t arg);
+  void    InitTask(TChain* tree);
+  virtual Bool_t ProcessEvent();
+  virtual Bool_t  ProcessEvent2();
   
+      
   protected:
   AliFastJetFinder(const AliFastJetFinder& rfj);
   AliFastJetFinder& operator = (const AliFastJetFinder& rsfj);
-
-
+  AliFastJetInput*                fInputFJ;     //! input particles array
+  AliJetBkg*                      fJetBkg;      //! pointer to bkg class
   ClassDef(AliFastJetFinder,2)
 };