]> git.uio.no Git - u/mrichter/AliRoot.git/blob - JETAN/AliPxconeJetFinder.h
Rename method Dump to DumpPayLoad to avoid compilation warning since mother class...
[u/mrichter/AliRoot.git] / JETAN / AliPxconeJetFinder.h
1 #ifndef ALIPXCONEJETFINDER_H
2 #define ALIPXCONEJETFINDER_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 // Pxcone Jet finder 
10 // manages the search for jets 
11 // Author: jgcn@mda.cinvestav.mx
12 //---------------------------------------------------------------------
13
14 #include "AliJetFinder.h"
15
16 class AliPxconeJetHeader;
17
18 class AliPxconeJetFinder : public AliJetFinder 
19 {
20  public:
21
22   AliPxconeJetFinder();
23   ~AliPxconeJetFinder();
24
25   // getters
26
27   // setters
28   void SetJetHeader(AliPxconeJetHeader* h) {fHeader= h;}
29   // others
30   void Reset();
31   void FindJets();
32   void WriteJHeaderToFile() const;
33
34  protected:
35   AliPxconeJetFinder(const AliPxconeJetFinder& rPxJet);
36   AliPxconeJetFinder& operator = (const AliPxconeJetFinder& rhsh);
37
38   AliPxconeJetHeader* fHeader;         // pointer to jet header
39
40   ClassDef(AliPxconeJetFinder,1)
41 };
42
43 #endif