]> git.uio.no Git - u/mrichter/AliRoot.git/blame - JETAN/AliFastJetFinder.h
one more tpcrefit added
[u/mrichter/AliRoot.git] / JETAN / AliFastJetFinder.h
CommitLineData
a17e6965 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
392c9b47 8
a17e6965 9//---------------------------------------------------------------------
392c9b47 10// FastJet v2.3.4 finder algorithm interface
11//
a17e6965 12// Author: Rafael.Diaz.Valdes@cern.ch
392c9b47 13//
a17e6965 14//---------------------------------------------------------------------
15
392c9b47 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
a17e6965 32#include "AliJetFinder.h"
8838ab7a 33#include "AliFastJetHeaderV1.h"
392c9b47 34
35using namespace std;
d1993270 36class AliFastJetInput;
37class AliJetBkg;
a17e6965 38
39class AliFastJetFinder : public AliJetFinder
40{
41 public:
42
43 AliFastJetFinder();
44 ~AliFastJetFinder();
45
287697fc 46 virtual void FindJets();
8838ab7a 47 void RunTest(const char* datafile); // a simple test
b430dff0 48 virtual void WriteJHeaderToFile() const;
8838ab7a 49 Float_t EtaToTheta(Float_t arg);
50 void InitTask(TChain* tree);
287697fc 51 virtual Bool_t ProcessEvent();
52 virtual Bool_t ProcessEvent2();
d1993270 53
54
392c9b47 55 protected:
56 AliFastJetFinder(const AliFastJetFinder& rfj);
57 AliFastJetFinder& operator = (const AliFastJetFinder& rsfj);
d1993270 58 AliFastJetInput* fInputFJ; //! input particles array
59 AliJetBkg* fJetBkg; //! pointer to bkg class
392c9b47 60 ClassDef(AliFastJetFinder,2)
a17e6965 61};
62
63#endif