]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG4/AliAnaGammaParton.h
Changing from TTree to TChain in the tag creation - Fixing TTree memory leak - Common...
[u/mrichter/AliRoot.git] / PWG4 / AliAnaGammaParton.h
CommitLineData
bdcfac30 1#ifndef ALIANAGAMMAPARTON_H
2#define ALIANAGAMMAPARTON_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-parton correlation
18//-- Author: Gustavo Conesa (INFN-LNF)
19
20#include "AliAnaGammaCorrelation.h"
21
22class AliAnaGammaParton : public AliAnaGammaCorrelation {
23
24 public:
25
26 AliAnaGammaParton() ; // default ctor
27 AliAnaGammaParton(const AliAnaGammaParton & g) ; // cpy ctor
28 AliAnaGammaParton & operator = (const AliAnaGammaParton & g) ;//cpy assignment
29 virtual ~AliAnaGammaParton() ; //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 * fhDeltaEtaParton;
42 TH2F * fhDeltaPhiParton;
43 TH2F * fhDeltaPtParton;
44 TH2F * fhPtRatParton;
45
46 ClassDef(AliAnaGammaParton,0)
47 } ;
48
49
50#endif //ALIANAGAMMAPARTON_H
51
52
53