#ifndef ALIANAGAMMAJETFINDER_H #define ALIANAGAMMAJETFINDER_H /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ /* $Id$ */ /* History of cvs commits: * * $Log$ * Revision 1.2 2007/08/17 12:40:04 schutz * New analysis classes by Gustavo Conesa * * Revision 1.1.2.1 2007/07/26 10:32:09 schutz * new analysis classes in the the new analysis framework * * */ //_________________________________________________________________________ // Class that contains the algorithm for the analysis of gamma-jet (standard finder) correlation //-- Author: Gustavo Conesa (INFN-LNF) #include "AliAnaGammaCorrelation.h" class AliAnaGammaJetFinder : public AliAnaGammaCorrelation { public: AliAnaGammaJetFinder() ; // default ctor AliAnaGammaJetFinder(const AliAnaGammaJetFinder & g) ; // cpy ctor AliAnaGammaJetFinder & operator = (const AliAnaGammaJetFinder & g) ;//cpy assignment virtual ~AliAnaGammaJetFinder() ; //virtual dtor TList * GetCreateOutputObjects(); void InitParameters(); void Print(const Option_t * opt) const; void MakeGammaCorrelation( TParticle * pGamma, TClonesArray *pl, TClonesArray *) ; private: TH2F * fhDeltaEtaJet; // Difference of jet eta and prompt gamma eta as function of gamma pT TH2F * fhDeltaPhiJet; // Difference of jet phi and prompt gamma phi as function of gamma pT TH2F * fhDeltaPtJet; // Difference of jet pT and prompt gamma pT as function of gamma pT TH2F * fhPtRatJet; // Ratio of jet pT and prompt gamma pT as function of gamma pT ClassDef(AliAnaGammaJetFinder,1) } ; #endif //ALIANAGAMMAJETFINDER_H