]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG4/PartCorrDep/AliAnaParticlePartonCorrelation.h
AliCalorimeterUtils: Fix to be able to use PHOS bad map and geometry matrices
[u/mrichter/AliRoot.git] / PWG4 / PartCorrDep / AliAnaParticlePartonCorrelation.h
CommitLineData
1c5acb87 1#ifndef ALIANAPARTICLEPARTONCORRELATION_H
2#define ALIANAPARTICLEPARTONCORRELATION_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//_________________________________________________________________________
8// Class that contains the algorithm for the analysis of particle-parton correlation
9// Particle (for example direct gamma) must be found in a previous analysis
10//-- Author: Gustavo Conesa (INFN-LNF)
11
12// --- ROOT ---
13class TH2F ;
14
15// --- ANALYSIS ---
16#include "AliAnaPartCorrBaseClass.h"
17
18class AliAnaParticlePartonCorrelation : public AliAnaPartCorrBaseClass {
19
c5693f62 20public:
21
78219bac 22 AliAnaParticlePartonCorrelation() ; // default ctor
23 virtual ~AliAnaParticlePartonCorrelation() {;} //virtual dtor
c5693f62 24
25 TList * GetCreateOutputObjects();
26
27 void InitParameters();
28
29 void MakeAnalysisFillAOD() ;
30
31 void MakeAnalysisFillHistograms() ;
32
33 void Print(const Option_t * opt) const;
34
35private:
36
37 TH2F * fhDeltaEtaNearParton; //! Difference of parton eta and prompt trigger particle eta
38 TH2F * fhDeltaPhiNearParton; //! Difference of parton phi and prompt trigger particle phi
39 TH2F * fhDeltaPtNearParton; //! Difference of parton pT and prompt trigger particle pT
40 TH2F * fhPtRatNearParton; //! Ratio of parton pT and prompt trigger particle pT
41
42 TH2F * fhDeltaEtaAwayParton; //! Difference of parton eta and prompt trigger particle eta
43 TH2F * fhDeltaPhiAwayParton; //! Difference of parton phi and prompt trigger particle phi
44 TH2F * fhDeltaPtAwayParton; //! Difference of parton pT and prompt trigger particle pT
45 TH2F * fhPtRatAwayParton; //! Ratio of parton pT and prompt trigger particle pT
46
47 AliAnaParticlePartonCorrelation(const AliAnaParticlePartonCorrelation & g) ; // cpy ctor
48 AliAnaParticlePartonCorrelation & operator = (const AliAnaParticlePartonCorrelation & g) ; // cpy assignment
49
50 ClassDef(AliAnaParticlePartonCorrelation,1)
51
52} ;
1c5acb87 53
54
55#endif //ALIANAPARTICLEPARTONCORRELATION_H
56
57
58