]> git.uio.no Git - u/mrichter/AliRoot.git/blame - JETAN/AliSISConeJetFinder.h
JETAN module
[u/mrichter/AliRoot.git] / JETAN / AliSISConeJetFinder.h
CommitLineData
2551af9d 1#ifndef ALISISCONEJETFINDER_H
2#define ALISISCONEJETFINDER_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
139cbd96 7/* $Id$ */
2551af9d 8
9//---------------------------------------------------------------------
10// SISCone (FastJet v2.3.4) finder algorithm interface
11//
12// Author: swensy.jangal@ires.in2p3.fr
13//
139cbd96 14// ** 2011 magali.estienne@subatech.in2p3.fr & alexandre.shabetai@cern.ch
15// Modified accordingly to reader/finder splitting and new handling of neutral information (via FastJetInput)
2551af9d 16//---------------------------------------------------------------------
17
2551af9d 18#include "AliJetFinder.h"
19
139cbd96 20class AliFastJetHeaderV1;
21class AliFastJetInput;
22class AliFastJetBkg;
2551af9d 23using namespace std;
24
25class AliSISConeJetFinder : public AliJetFinder
26{
27 public:
2551af9d 28 AliSISConeJetFinder();
29 ~AliSISConeJetFinder();
30
8838ab7a 31 void FindJets();
2551af9d 32
33 // others
139cbd96 34 Bool_t ProcessEvent();
446dbc09 35 void WriteJHeaderToFile() const;
8838ab7a 36
2551af9d 37 protected:
38 AliSISConeJetFinder(const AliSISConeJetFinder& rfj);
39 AliSISConeJetFinder& operator = (const AliSISConeJetFinder& rsfj);
40
139cbd96 41 AliFastJetInput* fInputFJ; //! input particles array
42 AliFastJetBkg* fJetBkg; //! pointer to bkg class
43
44 ClassDef(AliSISConeJetFinder,3) // SISCONE analysis class
45
2551af9d 46};
47
48#endif