]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG4/PartCorrDep/AliAnaParticlePartonCorrelation.h
Comment out copy ctors and assignment opetators from classes source code, not needed.
[u/mrichter/AliRoot.git] / PWG4 / PartCorrDep / AliAnaParticlePartonCorrelation.h
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 ---
13 class TH2F ;
14
15 // --- ANALYSIS ---
16 #include "AliAnaPartCorrBaseClass.h"
17
18 class AliAnaParticlePartonCorrelation : public AliAnaPartCorrBaseClass {
19        
20  public:
21   AliAnaParticlePartonCorrelation() ; // default ctor
22   virtual ~AliAnaParticlePartonCorrelation() {;} //virtual dtor              
23  private:
24   AliAnaParticlePartonCorrelation(const AliAnaParticlePartonCorrelation & g) ; // cpy ctor
25   AliAnaParticlePartonCorrelation & operator = (const AliAnaParticlePartonCorrelation & g) ;//cpy assignment
26
27  public:
28
29        TList * GetCreateOutputObjects();
30        
31        void InitParameters();
32        
33        void Print(const Option_t * opt) const;
34        
35        void MakeAnalysisFillAOD()  ;
36        
37        void MakeAnalysisFillHistograms() ; 
38        
39   private:
40        
41        TH2F * fhDeltaEtaNearParton; //! Difference of parton eta and prompt trigger particle eta
42        TH2F * fhDeltaPhiNearParton; //! Difference of parton phi and prompt trigger particle phi
43        TH2F * fhDeltaPtNearParton; //! Difference of parton pT and prompt trigger particle pT
44        TH2F * fhPtRatNearParton; //! Ratio of parton pT and prompt trigger particle pT
45        
46        TH2F * fhDeltaEtaAwayParton; //! Difference of parton eta and prompt trigger particle eta
47        TH2F * fhDeltaPhiAwayParton; //! Difference of parton phi and prompt trigger particle phi
48        TH2F * fhDeltaPtAwayParton; //! Difference of parton pT and prompt trigger particle pT
49        TH2F * fhPtRatAwayParton; //! Ratio of parton pT and prompt trigger particle pT
50
51        ClassDef(AliAnaParticlePartonCorrelation,1)
52  } ;
53
54
55 #endif //ALIANAPARTICLEPARTONCORRELATION_H
56
57
58