]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG4/AliAnaGammaJetFinder.h
Forgot this one
[u/mrichter/AliRoot.git] / PWG4 / AliAnaGammaJetFinder.h
CommitLineData
bdcfac30 1#ifndef ALIANAGAMMAJETFINDER_H
2#define ALIANAGAMMAJETFINDER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5/* $Id$ */
6
7/* History of cvs commits:
8 *
9 * $Log$
10 * Revision 1.1.2.1 2007/07/26 10:32:09 schutz
11 * new analysis classes in the the new analysis framework
12 *
13 *
14 */
15
16//_________________________________________________________________________
17// Class that contains the algorithm for the analysis of gamma-jet (standard finder) correlation
18//-- Author: Gustavo Conesa (INFN-LNF)
19
20#include "AliAnaGammaCorrelation.h"
21
22class AliAnaGammaJetFinder : public AliAnaGammaCorrelation {
23
24 public:
25
26 AliAnaGammaJetFinder() ; // default ctor
27 AliAnaGammaJetFinder(const AliAnaGammaJetFinder & g) ; // cpy ctor
28 AliAnaGammaJetFinder & operator = (const AliAnaGammaJetFinder & g) ;//cpy assignment
29 virtual ~AliAnaGammaJetFinder() ; //virtual dtor
30
31 TList * GetCreateOutputObjects();
32
33 void InitParameters();
34
35 void Print(const Option_t * opt) const;
36
37 void MakeGammaCorrelation( TParticle * pGamma, TClonesArray *pl, TClonesArray *) ;
38
39 private:
40
41 TH2F * fhDeltaEtaJet;
42 TH2F * fhDeltaPhiJet;
43 TH2F * fhDeltaPtJet;
44 TH2F * fhPtRatJet;
45
46 ClassDef(AliAnaGammaJetFinder,0)
47 } ;
48
49
50#endif //ALIANAGAMMAJETFINDER_H
51
52
53