X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=JETAN%2FAliFastJetFinder.h;h=474a750b28f6b82021e50d75fb6f70a4d345e341;hb=c73e818954dddc41110e472137ac3e478d9f6782;hp=55e60331192650b4ee6d23ae542513794970a095;hpb=392c9b47c17b8deda5b0ed063e32a0b5e20490c0;p=u%2Fmrichter%2FAliRoot.git diff --git a/JETAN/AliFastJetFinder.h b/JETAN/AliFastJetFinder.h index 55e60331192..474a750b28f 100644 --- a/JETAN/AliFastJetFinder.h +++ b/JETAN/AliFastJetFinder.h @@ -30,10 +30,11 @@ #include #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) };