]> git.uio.no Git - u/mrichter/AliRoot.git/blob - JETAN/AliFastJetFinder.h
Reference to tracks forming the jet added.
[u/mrichter/AliRoot.git] / JETAN / 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
8
9 //---------------------------------------------------------------------
10 // FastJet v2.3.4 finder algorithm interface
11 //
12 // Author: Rafael.Diaz.Valdes@cern.ch
13 //  
14 //---------------------------------------------------------------------
15
16 //FastJet classes 
17 #include "fastjet/PseudoJet.hh"
18 #include "fastjet/ClusterSequenceArea.hh"
19 #include "fastjet/AreaDefinition.hh"
20 #include "fastjet/JetDefinition.hh"
21 // get info on how fastjet was configured
22 #include "fastjet/config.h"
23 #ifdef ENABLE_PLUGIN_SISCONE
24 #include "fastjet/SISConePlugin.hh"
25 #endif
26
27
28 #include<sstream>  // needed for internal io
29 #include <vector> 
30 #include <cmath> 
31
32 #include "AliJetFinder.h"
33 #include "AliFastJetHeader.h"
34
35 using namespace std;
36
37
38 class AliFastJetFinder : public AliJetFinder
39 {
40  public:
41
42   AliFastJetFinder();
43   ~AliFastJetFinder();
44
45   void FindJets(); 
46   // others
47   void RunTest(const char* datafile); // a simple test
48   
49   void WriteJHeaderToFile();
50   
51   protected:
52   AliFastJetFinder(const AliFastJetFinder& rfj);
53   AliFastJetFinder& operator = (const AliFastJetFinder& rsfj);
54
55
56   ClassDef(AliFastJetFinder,2)
57 };
58
59 #endif