]> git.uio.no Git - u/mrichter/AliRoot.git/blob - JETAN/DEV/AliFastJetFinder.h
Further small updates
[u/mrichter/AliRoot.git] / JETAN / DEV / AliFastJetFinder.h
1 #ifndef ALIFASTJETFINDER_H
2 #define ALIFASTJETFINDER_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 /* $Id$ */
8
9 //---------------------------------------------------------------------
10 // FastJet v2.3.4 finder algorithm interface
11 //
12 // Author: Rafael.Diaz.Valdes@cern.ch
13 //
14 // ** 2011 magali.estienne@subatech.in2p3.fr &  alexandre.shabetai@cern.ch
15 // new implementation of background subtraction
16 // allowing to subtract bkg using a different algo than the one used for signal jets  
17 //---------------------------------------------------------------------
18
19 // FastJet classes 
20 #include "fastjet/PseudoJet.hh"
21 #include "fastjet/ClusterSequenceArea.hh"
22 #include "fastjet/AreaDefinition.hh"
23 #include "fastjet/JetDefinition.hh"
24
25 #include "AliJetFinder.h"
26
27 class AliFastJetInput;
28 class AliFastJetBkg;
29
30 using namespace std;
31
32 class AliFastJetFinder : public AliJetFinder
33 {
34  public:
35
36   AliFastJetFinder();
37   ~AliFastJetFinder();
38
39   virtual void      FindJets(); 
40   void              RunTest(const char* datafile); // a simple test
41   virtual void      WriteJHeaderToFile() const;
42   virtual Bool_t    ProcessEvent();
43       
44   protected:
45   AliFastJetFinder(const AliFastJetFinder& rfj);
46   AliFastJetFinder& operator = (const AliFastJetFinder& rsfj);
47   AliFastJetInput*  fInputFJ;  //! input particles array
48   AliFastJetBkg*    fJetBkg;   //! pointer to bkg class
49
50   ClassDef(AliFastJetFinder,3) //  Fastjet analysis class
51
52 };
53
54 #endif