]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGJE/EMCALJetTasks/UserTasks/AliAnalysisTaskRhoVnModulation.h
from Redmer
[u/mrichter/AliRoot.git] / PWGJE / EMCALJetTasks / UserTasks / AliAnalysisTaskRhoVnModulation.h
1 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. */
2 /* See cxx source for full Copyright notice */
3 /* $Id$ */
4
5 #ifndef ALIANALYSISTASKRHOVNMODULATION_H
6 #define ALIANALYSISTASKRHOVNMODULATION_H
7
8 #include <AliAnalysisTaskEmcalJet.h>
9 #include <AliEmcalJet.h>
10 #include <AliVEvent.h>
11 #include <AliVTrack.h>
12 #include <AliVCluster.h>
13 #include <TClonesArray.h>
14 #include <TMath.h>
15 #include <TRandom3.h>
16
17 class TF1;
18 class THF1;
19 class THF2;
20 class TProfile;
21
22 class AliAnalysisTaskRhoVnModulation : public AliAnalysisTaskEmcalJet
23 {
24     public:
25          // enumerators
26         enum fitModulationType  { kNoFit, kV2, kV3, kCombined, kFourierSeries, kIntegratedFlow, kQC2, kQC4 }; // fit type
27         enum qcRecovery         { kFixedRho, kNegativeVn, kTryFit };    // how to deal with negative cn value for qcn value
28         enum runModeType        { kLocal, kGrid };                      // run mode type
29         enum dataType           { kESD, kAOD, kESDMC, kAODMC };         // data type
30         enum detectorType       { kTPC, kVZEROA, kVZEROC};    // detector that was used
31         // constructors, destructor
32                                 AliAnalysisTaskRhoVnModulation();
33                                 AliAnalysisTaskRhoVnModulation(const char *name, runModeType type);
34         virtual                 ~AliAnalysisTaskRhoVnModulation();
35        
36         // setting up the task and technical aspects
37         Bool_t                  InitializeAnalysis();
38         virtual void            UserCreateOutputObjects();
39         virtual Bool_t          Run();
40         TH1F*                   BookTH1F(const char* name, const char* x, Int_t bins, Double_t min, Double_t max, Int_t c = -1, Bool_t append = kTRUE);
41         TH2F*                   BookTH2F(const char* name, const char* x, const char* y, Int_t binsx, Double_t minx, Double_t maxx, Int_t binsy, Double_t miny, Double_t maxy, Int_t c = -1, Bool_t append = kTRUE);
42         /* inline */    Double_t PhaseShift(Double_t x) const {  
43             while (x>=TMath::TwoPi())x-=TMath::TwoPi();
44             while (x<0.)x+=TMath::TwoPi();
45             return x; }
46         /* inline */    Double_t PhaseShift(Double_t x, Double_t n) const {
47             x = PhaseShift(x);
48             if(TMath::Nint(n)==2) while (x>TMath::Pi()) x-=TMath::Pi();
49             if(TMath::Nint(n)==3) {
50                 if(x>2.*TMath::TwoPi()/n) x = TMath::TwoPi() - x;
51                 if(x>TMath::TwoPi()/n) x = TMath::TwoPi()-(x+TMath::TwoPi()/n);
52             }
53             return x; }
54         /* inline */    Double_t ChiSquarePDF(Int_t ndf, Double_t x) const {
55             Double_t n(ndf/2.), denom(TMath::Power(2, n)*TMath::Gamma(n));
56             if (denom!=0)  return ((1./denom)*TMath::Power(x, n-1)*TMath::Exp(-x/2.)); 
57             return -999; }
58         // note that the cdf of the chisquare distribution is the normalized lower incomplete gamma function
59         /* inline */    Double_t ChiSquareCDF(Int_t ndf, Double_t x) const { return TMath::Gamma(ndf/2., x/2.); }
60         /* inline */    Double_t RhoVal() const { return (fRho) ? fRho->GetVal(): -999.;}                 
61         /* inline */    Double_t RhoVal(Double_t phi, Double_t r, Double_t n) const {
62             if(!fFitModulation) return RhoVal(); // coverity
63             switch (fFitModulationType) {
64                 case kNoFit : return RhoVal();
65                 default : {
66                     Double_t denom(2*r*fFitModulation->GetParameter(0));
67                     return  (denom <= 0.) ? RhoVal() : n*(fFitModulation->Integral(phi-r, phi+r)/denom); 
68                 }
69             }
70         }
71         // setters - analysis setup
72         void                    SetDebugMode(Int_t d)                           {fDebug = d;}
73         void                    SetFillQAHistograms(Bool_t qa)                  {fFillQAHistograms = qa;}
74         void                    SetReduceBinsXYByFactor(Int_t x, Int_t y)       {fReduceBinsXByFactor = x;
75                                                                                  fReduceBinsYByFactor = y;}
76         void                    SetNoEventWeightsForQC(Bool_t e)                {fNoEventWeightsForQC = e;}
77         void                    SetCentralityClasses(TArrayI* c)                {fCentralityClasses = c;}
78         void                    SetPtBinsHybrids(TArrayD* p)                    {fPtBinsHybrids = p;}
79         void                    SetPtBinsJets(TArrayD* p)                       {fPtBinsJets = p;}
80         void                    SetIntegratedFlow(TH1F* i, TH1F* j)             {fUserSuppliedV2 = i;
81                                                                                  fUserSuppliedV3 = j; }
82         void                    SetOnTheFlyResCorrection(TH1F* r2, TH1F* r3)    {fUserSuppliedR2 = r2;
83                                                                                  fUserSuppliedR3 = r3; }
84         void                    SetNameJetClones(const char* name)              {fNameJetClones = name; }
85         void                    SetNamePicoTrackClones(const char* name)        {fNamePicoTrackClones = name; }
86         void                    SetNameRho(const char* name)                    {fNameRho = name; }
87         void                    SetRandomSeed(TRandom3* r)                      {if (fRandom) delete fRandom; fRandom = r; }
88         void                    SetModulationFit(TF1* fit)                      {if (fFitModulation) delete fFitModulation;
89                                                                                  fFitModulation = fit; }
90         void                    SetModulationFitMinMaxP(Float_t m, Float_t n)   {fMinPvalue = m; fMaxPvalue = n; }
91         void                    SetModulationFitType(fitModulationType type)    {fFitModulationType = type; }
92         void                    SetQCnRecoveryType(qcRecovery type)             {fQCRecovery = type; }
93         void                    SetModulationFitOptions(TString opt)            {fFitModulationOptions = opt; }
94         void                    SetReferenceDetector(detectorType type)         {fDetectorType = type; }
95         void                    SetUsePtWeight(Bool_t w)                        {fUsePtWeight = w; }
96         void                    SetRunModeType(runModeType type)                {fRunModeType = type; }
97         void                    SetAbsVertexZ(Float_t v)                        {fAbsVertexZ = v; }
98         void                    SetMinDistanceRctoLJ(Float_t m)                 {fMinDisanceRCtoLJ = m; }
99         void                    SetRandomConeRadius(Float_t r)                  {fRandomConeRadius = r; }
100         void                    SetMinLeadingHadronPt(Double_t m)               {fMinLeadingHadronPt = m; }
101         void                    SetForceAbsVnHarmonics(Bool_t f)                {fAbsVnHarmonics = f; }
102         void                    SetExcludeLeadingJetsFromFit(Float_t n)         {fExcludeLeadingJetsFromFit = n; }
103         void                    SetRebinSwapHistoOnTheFly(Bool_t r)             {fRebinSwapHistoOnTheFly = r; }
104         void                    SetSaveThisPercentageOfFits(Float_t p)          {fPercentageOfFits = p; }
105         void                    SetUseV0EventPlaneFromHeader(Bool_t h)          {fUseV0EventPlaneFromHeader = h;}
106         void                    SetSetPtSub(Bool_t s)                           {fSetPtSub = s; }
107         void                    SetExplicitOutlierCutForYear(Int_t y)           {fExplicitOutlierCut = y;}
108         // getters - these are used as well by AliAnalyisTaskJetFlow, so be careful when changing them
109         TString                 GetJetsName() const                             {return fJetsName; }
110         TString                 GetTracksName() const                           {return fTracksName; }
111         TArrayI*                GetCentralityClasses() const                    {return fCentralityClasses;}
112         TArrayD*                GetPtBinsHybrids() const                        {return fPtBinsHybrids; }
113         TArrayD*                GetPtBinsJets() const                           {return fPtBinsJets; }
114         TProfile*               GetResolutionParameters(Int_t h, Int_t c) const {return (h==2) ? fProfV2Resolution[c] : fProfV3Resolution[c];}
115         TList*                  GetOutputList() const                           {return fOutputList;}
116         void                    ExecMe()                                        {ExecOnce();}
117         AliAnalysisTaskRhoVnModulation* ReturnMe()                              {return this;}
118         // local cuts
119         void                    SetLocalJetMinMaxEta(Float_t min, Float_t max)  {fLocalJetMinEta = min; fLocalJetMaxEta = max;}
120         void                    SetLocalJetMinMaxEta(Float_t R)                 {fLocalJetMinEta = - 0.9 + R; fLocalJetMaxEta = 0.9 - R; }
121         void                    SetLocalJetMinMaxPhi(Float_t min, Float_t max)  {fLocalJetMinPhi = min; fLocalJetMaxEta = max;}
122         void                    SetSoftTrackMinMaxPt(Float_t min, Float_t max)  {fSoftTrackMinPt = min; fSoftTrackMaxPt = max;}
123         // numerical evaluations
124         void                    CalculateEventPlaneVZERO(Double_t vzero[2][2]) const;
125         void                    CalculateEventPlaneTPC(Double_t* tpc);
126         void                    CalculateEventPlaneResolution(Double_t vzero[2][2], Double_t* tpc) const;
127         void                    CalculateRandomCone(Float_t &pt, Float_t &eta, Float_t &phi, AliEmcalJet* jet = 0x0, Bool_t randomize = 0) const;
128         Double_t                CalculateQC2(Int_t harm);
129         Double_t                CalculateQC4(Int_t harm);
130         // helper calculations for the q-cumulant analysis, also used by AliAnalyisTaskJetFlow
131         void                    QCnQnk(Int_t n, Int_t k, Double_t &reQ, Double_t &imQ);
132         void                    QCnDiffentialFlowVectors(
133             TClonesArray* pois, TArrayD* ptBins, Bool_t vpart, Double_t* repn, Double_t* impn, 
134             Double_t *mp, Double_t *reqn, Double_t *imqn, Double_t* mq, Int_t n);
135         Double_t                QCnS(Int_t i, Int_t j);
136         Double_t                QCnM();
137         Double_t                QCnM11();
138         Double_t                QCnM1111();
139         Bool_t                  QCnRecovery(Double_t psi2, Double_t psi3);
140         // analysis details
141         Bool_t                  CorrectRho(Double_t psi2, Double_t psi3);
142         // event and track selection, also used by AliAnalyisTaskJetFlow
143         /* inline */    Bool_t PassesCuts(const AliVTrack* track) const {
144             if(!track) return kFALSE;
145             return (track->Pt() < fTrackPtCut || track->Eta() < fTrackMinEta || track->Eta() > fTrackMaxEta || track->Phi() < fTrackMinPhi || track->Phi() > fTrackMaxPhi) ? kFALSE : kTRUE; }
146         /* inline */    Bool_t PassesCuts(AliEmcalJet* jet) const {
147             if(!jet || fJetRadius <= 0) return kFALSE;
148             return (GetLeadingHadronPt(jet) < fMinLeadingHadronPt || jet->Pt() < fJetPtCut || jet->Area()/(fJetRadius*fJetRadius*TMath::Pi()) < fPercAreaCut || jet->Eta() < fJetMinEta || jet->Eta() > fJetMaxEta || jet->Phi() < fJetMinPhi || jet->Phi() > fJetMaxPhi) ? kFALSE : kTRUE; }
149         Bool_t                  PassesCuts(AliVEvent* event);
150         Bool_t                  PassesCuts(Int_t year);
151         Bool_t                  PassesCuts(const AliVCluster* track) const;
152         // filling histograms
153         void                    FillHistogramsAfterSubtraction(Double_t vzero[2][2], Double_t* tpc) const;
154         void                    FillTrackHistograms() const;
155         void                    FillClusterHistograms() const;
156         void                    FillCorrectedClusterHistograms() const;
157         void                    FillEventPlaneHistograms(Double_t vzero[2][2], Double_t* tpc) const;
158         void                    FillRhoHistograms() const;
159         void                    FillDeltaPtHistograms(Double_t vzero[2][2], Double_t* tpc) const; 
160         void                    FillJetHistograms(Double_t vzero[2][2], Double_t* psi) const;
161         void                    FillDeltaPhiHistograms(Double_t vzero[2][2], Double_t* tpc) const;
162         void                    FillQAHistograms(AliVTrack* vtrack) const;
163         void                    FillQAHistograms(AliVEvent* vevent);
164         void                    FillAnalysisSummaryHistogram() const;
165         virtual void            Terminate(Option_t* option);
166         // interface methods for the output file
167         void                    SetOutputList(TList* l) {fOutputList = l;}
168         TH1F*                   GetResolutionFromOuptutFile(detectorType detector, Int_t h = 2, TArrayD* c = 0x0);
169         TH1F*                   CorrectForResolutionDiff(TH1F* v, detectorType detector, TArrayD* cen, Int_t c, Int_t h = 2);
170         TH1F*                   CorrectForResolutionInt(TH1F* v, detectorType detector, TArrayD* cen, Int_t h = 2);
171         TH1F*                   GetDifferentialQC(TProfile* refCumulants, TProfile* diffCumlants, TArrayD* ptBins, Int_t h);
172     private:
173         // analysis flags and settings
174         Int_t                   fDebug;                 // debug level (0 none, 1 fcn calls, 2 verbose)
175         Bool_t                  fInitialized;           //! is the analysis initialized?
176         Bool_t                  fFillQAHistograms;      // fill qa histograms
177         Int_t                   fReduceBinsXByFactor;   // reduce the bins on x-axis of histo's by this integer
178         Int_t                   fReduceBinsYByFactor;   // reduce the bins on y-axis of histo's by this integer
179         Bool_t                  fNoEventWeightsForQC;   // don't store event weights for qc analysis
180         TArrayI*                fCentralityClasses;     //-> centrality classes (maximum 10)
181         TArrayD*                fPtBinsHybrids;         //-> pt bins for hybrid track vn anaysis
182         TArrayD*                fPtBinsJets;            //-> pt bins for jet vn analysis
183         TH1F*                   fUserSuppliedV2;        // histo with integrated v2
184         TH1F*                   fUserSuppliedV3;        // histo with integrated v3
185         TH1F*                   fUserSuppliedR2;        // correct the extracted v2 with this r
186         TH1F*                   fUserSuppliedR3;        // correct the extracted v3 with this r
187         // members
188         Int_t                   fNAcceptedTracks;       //! number of accepted tracks
189         Int_t                   fNAcceptedTracksQCn;    //! accepted tracks for QCn
190         fitModulationType       fFitModulationType;     // fit modulation type
191         qcRecovery              fQCRecovery;            // recovery type for e-by-e qc method
192         Bool_t                  fUsePtWeight;           // use dptdphi instead of dndphi
193         detectorType            fDetectorType;          // type of detector used for modulation fit
194         TString                 fFitModulationOptions;  // fit options for modulation fit
195         runModeType             fRunModeType;           // run mode type 
196         dataType                fDataType;              // datatype 
197         TRandom3*               fRandom;                //-> dont use gRandom to not interfere with other tasks
198         Int_t                   fMappedRunNumber;       //! mapped runnumer (for QA)
199         Int_t                   fInCentralitySelection; //! centrality bin
200         TF1*                    fFitModulation;         //-> modulation fit for rho
201         Float_t                 fMinPvalue;             // minimum value of p
202         Float_t                 fMaxPvalue;             // maximum value of p
203         const char*             fNameJetClones;         //! collection of tclones array with jets
204         const char*             fNamePicoTrackClones;   //! collection of tclones with pico tracks
205         const char*             fNameRho;               //! name of rho
206         // additional jet cuts (most are inherited)
207         Float_t                 fLocalJetMinEta;        // local eta cut for jets
208         Float_t                 fLocalJetMaxEta;        // local eta cut for jets
209         Float_t                 fLocalJetMinPhi;        // local phi cut for jets
210         Float_t                 fLocalJetMaxPhi;        // local phi cut for jets
211         Float_t                 fSoftTrackMinPt;        // min pt for soft tracks
212         Float_t                 fSoftTrackMaxPt;        // max pt for soft tracks
213         // event cuts
214         Float_t                 fAbsVertexZ;            // cut on zvertex
215         // general qa histograms
216         TH1F*                   fHistCentrality;        //! accepted centrality
217         TH1F*                   fHistVertexz;           //! accepted verte
218         TH2F*                   fHistRunnumbersPhi;     //! run numbers averaged phi
219         TH2F*                   fHistRunnumbersEta;     //! run numbers averaged eta
220         TH1F*                   fHistPvaluePDF;         //! pdf value of chisquare p
221         TH1F*                   fHistPvalueCDF;         //! cdf value of chisquare p
222         // general settings
223         Float_t                 fMinDisanceRCtoLJ;      // min distance between rc and leading jet
224         Float_t                 fRandomConeRadius;      // radius of random cone
225         Bool_t                  fAbsVnHarmonics;        // force postive local rho
226         Float_t                 fExcludeLeadingJetsFromFit;    // exclude n leading jets from fit
227         Bool_t                  fRebinSwapHistoOnTheFly;       // rebin swap histo on the fly
228         Float_t                 fPercentageOfFits;      // save this percentage of fits
229         Bool_t                  fUseV0EventPlaneFromHeader;    // use the vzero event plane from the header
230         Bool_t                  fSetPtSub;              // store the subtracted pt in the jet
231         Int_t                   fExplicitOutlierCut;    // cut on correlation of tpc and global multiplicity
232         Double_t                fMinLeadingHadronPt;    // minimum pt for leading hadron
233         // transient object pointers
234         TList*                  fOutputList;            //! output list
235         TList*                  fOutputListGood;        //! output list for local analysis
236         TList*                  fOutputListBad;         //! output list for local analysis
237         TH1F*                   fHistAnalysisSummary;   //! analysis summary
238         TH1F*                   fHistSwap;              //! swap histogram
239         TProfile*               fProfV2;                //! extracted v2
240         TProfile*               fProfV2Cumulant;        //! v2 cumulant
241         TProfile*               fProfV2Resolution[10];  //! resolution parameters for v2
242         TProfile*               fProfV3;                //! extracted v3
243         TProfile*               fProfV3Cumulant;        //! v3 cumulant
244         TProfile*               fProfV3Resolution[10];  //! resolution parameters for v3
245         // qa histograms for accepted pico tracks
246         TH1F*                   fHistPicoTrackPt[10];    //! pt of all charged tracks
247         TH1F*                   fHistPicoTrackMult[10];  //! multiplicity of accepted pico tracks
248         TH2F*                   fHistPicoCat1[10];       //! pico tracks spd hit and refit
249         TH2F*                   fHistPicoCat2[10];       //! pico tracks wo spd hit w refit, constrained
250         TH2F*                   fHistPicoCat3[10];       //! pico tracks wo spd hit wo refit, constrained
251         // qa histograms for accepted emcal clusters
252         /* TH1F*                   fHistClusterPt[10];      //! pt uncorrected emcal clusters */
253         /* TH1F*                   fHistClusterPhi[10];     //! phi uncorrected emcal clusters */
254         /* TH1F*                   fHistClusterEta[10];     //! eta uncorrected emcal clusters */
255         // qa histograms for accepted emcal clusters aftehadronic correction
256         /* TH1F*                   fHistClusterCorrPt[10];  //! pt corrected emcal clusters */
257         /* TH1F*                   fHistClusterCorrPhi[10]; //! phi corrected emcal clusters */
258         /* TH1F*                   fHistClusterCorrEta[10]; //! eta corrected emcal clusters */
259         // qa event planes
260         TProfile*               fHistPsiControl;         //! event plane control histogram
261         TProfile*               fHistPsiSpread;          //! event plane spread histogram
262         TH1F*                   fHistPsiVZEROA;          //! psi 2 from vzero a
263         TH1F*                   fHistPsiVZEROC;          //! psi 2 from vzero c
264         TH1F*                   fHistPsiTPC;             //! psi 2 from tpc
265         // background
266         TH1F*                   fHistRhoPackage[10];     //! rho as estimated by emcal jet package
267         TH1F*                   fHistRho[10];            //! background
268         TH2F*                   fHistRhoVsMult;          //! rho versus multiplicity
269         TH2F*                   fHistRhoVsCent;          //! rho veruss centrality
270         TH2F*                   fHistRhoAVsMult;         //! rho * A vs multiplicity for all jets
271         TH2F*                   fHistRhoAVsCent;         //! rho * A vs centrality for all jets
272         // delta pt distributions
273         TH2F*                   fHistRCPhiEta[10];              //! random cone eta and phi
274         TH2F*                   fHistRhoVsRCPt[10];             //! rho * A vs rcpt
275         TH1F*                   fHistRCPt[10];                  //! rcpt
276         TH2F*                   fHistDeltaPtDeltaPhi2TPC[10];   //! dpt vs dphi tpc
277         TH2F*                   fHistDeltaPtDeltaPhi2V0A[10];   //! dpt vs dphi vzeroa
278         TH2F*                   fHistDeltaPtDeltaPhi2V0C[10];   //! dpt vs dphi vzeroc
279         TH2F*                   fHistDeltaPtDeltaPhi3TPC[10];   //! dpt vs dphi tpc
280         TH2F*                   fHistDeltaPtDeltaPhi3V0A[10];   //! dpt vs dphi vzeroa
281         TH2F*                   fHistDeltaPtDeltaPhi3V0C[10];   //! dpt vs dphi vzeroc
282         TH2F*                   fHistRCPhiEtaExLJ[10];          //! random cone eta and phi, excl leading jet
283         TH2F*                   fHistRhoVsRCPtExLJ[10];         //! rho * A vs rcpt, excl leading jet
284         TH1F*                   fHistRCPtExLJ[10];              //! rcpt, excl leading jet
285         TH2F*                   fHistDeltaPtDeltaPhi2ExLJTPC[10];  //! dpt vs dphi, excl leading jet
286         TH2F*                   fHistDeltaPtDeltaPhi2ExLJV0A[10];  //! dpt vs dphi, excl leading jet
287         TH2F*                   fHistDeltaPtDeltaPhi2ExLJV0C[10];  //! dpt vs dphi, excl leading jet
288         TH2F*                   fHistDeltaPtDeltaPhi3ExLJTPC[10];  //! dpt vs dphi, excl leading jet
289         TH2F*                   fHistDeltaPtDeltaPhi3ExLJV0A[10];  //! dpt vs dphi, excl leading jet
290         TH2F*                   fHistDeltaPtDeltaPhi3ExLJV0C[10];  //! dpt vs dphi, excl leading jet
291         /* TH2F*                   fHistRCPhiEtaRand[10];          //! random cone eta and phi, randomized */
292         /* TH2F*                   fHistRhoVsRCPtRand[10];         //! rho * A vs rcpt, randomized */
293         /* TH1F*                   fHistRCPtRand[10];              //! rcpt, randomized */ 
294         /* TH2F*                   fHistDeltaPtDeltaPhi2Rand[10];  //! dpt vs dphi, randomized */
295         /* TH2F*                   fHistDeltaPtDeltaPhi3Rand[10];  //! dpt vs dphi, randomized */
296         // jet histograms (after kinematic cuts)
297         TH1F*                   fHistJetPtRaw[10];              //! jet pt - no background subtraction
298         TH1F*                   fHistJetPt[10];                 //! pt of found jets (background subtracted)
299         TH2F*                   fHistJetEtaPhi[10];             //! eta and phi correlation
300         TH2F*                   fHistJetPtArea[10];             //! jet pt versus area
301         TH2F*                   fHistJetPtConstituents[10];     //! jet pt versus number of constituents
302         TH2F*                   fHistJetEtaRho[10];             //! jet eta versus jet rho
303         // in plane, out of plane jet spectra
304         TH2F*                   fHistJetPsiTPCPt[10];            //! psi tpc versus pt
305         TH2F*                   fHistJetPsiVZEROAPt[10];         //! psi vzeroa versus pt
306         TH2F*                   fHistJetPsiVZEROCPt[10];         //! psi vzeroc versus pt
307         // phi minus psi 
308         TH1F*                   fHistDeltaPhi2VZEROA[10];       //! phi minus psi_A
309         TH1F*                   fHistDeltaPhi2VZEROC[10];       //! phi minus psi_C
310         TH1F*                   fHistDeltaPhi2TPC[10];          //! phi minus psi_TPC
311         TH1F*                   fHistDeltaPhi3VZEROA[10];       //! phi minus psi_A
312         TH1F*                   fHistDeltaPhi3VZEROC[10];       //! phi minus psi_C
313         TH1F*                   fHistDeltaPhi3TPC[10];          //! phi minus psi_TPC
314
315         AliAnalysisTaskRhoVnModulation(const AliAnalysisTaskRhoVnModulation&);                  // not implemented
316         AliAnalysisTaskRhoVnModulation& operator=(const AliAnalysisTaskRhoVnModulation&);       // not implemented
317
318         ClassDef(AliAnalysisTaskRhoVnModulation, 14);
319 };
320
321 #endif