]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGCF/Correlations/DPhi/AliAnalysisTaskPhiCorrelations.h
correlation function calculation uses averages of ratios also for centrality
[u/mrichter/AliRoot.git] / PWGCF / Correlations / DPhi / AliAnalysisTaskPhiCorrelations.h
1 #ifndef AliAnalysisTaskPhiCorrelations_H
2 #define AliAnalysisTaskPhiCorrelations_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 ////////////////////////////////////////////////////////////////////////
8 //
9 // Analysis class for Underlying Event studies w.r.t. leading track
10 //
11 // Look for correlations on the tranverse regions w.r.t
12 // the leading track in the event
13 //
14 // This class needs input AODs.
15 // The output is a list of analysis-specific containers.
16 //
17 // The AOD can be either connected to the InputEventHandler  
18 // for a chain of AOD files 
19 // or 
20 // to the OutputEventHandler
21 // for a chain of ESD files,
22 // in this case the class should be in the train after the jet-finder
23 //
24 //    Authors:
25 //    Jan Fiete Grosse-Oetringhaus
26 // 
27 ////////////////////////////////////////////////////////////////////////
28
29 #include "AliAnalysisTask.h"
30 #include "AliUEHist.h"
31 #include "TString.h"
32 #include "AliVParticle.h"
33 #include "AliLog.h"
34
35 class AliAODEvent;
36 class AliAnalyseLeadingTrackUE;
37 class AliInputEventHandler;
38 class AliMCEvent;
39 class AliMCEventHandler;
40 class AliUEHistograms;
41 class AliVParticle;
42 class TH1D;
43 class TObjArray;
44 class AliEventPoolManager;
45 class AliESDEvent;
46
47 class  AliAnalysisTaskPhiCorrelations : public AliAnalysisTask
48   {
49   public:
50     AliAnalysisTaskPhiCorrelations(const char* name="AliAnalysisTaskPhiCorrelations");
51     virtual           ~AliAnalysisTaskPhiCorrelations();
52        
53       
54     // Implementation of interace methods
55     virtual     void   ConnectInputData(Option_t *);
56     virtual     void   CreateOutputObjects();
57     virtual     void   Exec(Option_t *option);
58
59     // Setters/Getters
60     // general configuration
61     virtual     void    SetDebugLevel( Int_t level )  { fDebug = level; }
62     virtual     void    SetMode(Int_t mode)           { fMode  = mode;  }
63     virtual     void    SetReduceMemoryFootprint(Bool_t flag) { fReduceMemoryFootprint = flag; }
64     virtual     void    SetEventMixing(Bool_t flag) { fFillMixed = flag; }
65     virtual     void    SetMixingTracks(Int_t tracks) { fMixingTracks = tracks; }
66     virtual     void    SetCompareCentralities(Bool_t flag) { fCompareCentralities = flag; }
67     virtual     void    SetTwoTrackEfficiencyStudy(Bool_t flag) { fTwoTrackEfficiencyStudy = flag; }
68     virtual     void    SetTwoTrackEfficiencyCut(Float_t value = 0.02) { fTwoTrackEfficiencyCut = value; }
69     virtual     void    SetUseVtxAxis(Bool_t flag) { fUseVtxAxis = flag; }
70     virtual     void    SetSkipTrigger(Bool_t flag) { fSkipTrigger = flag; }
71     
72     // histogram settings
73     void SetTrackingEfficiency( const TH1D* hist) { fkTrackingEfficiency = hist; }
74
75     // for event QA
76     void   SetTracksInVertex( Int_t val ){ fnTracksVertex = val; }
77     void   SetZVertex( Double_t val )    { fZVertex = val; }
78     
79     // track cuts
80     void   SetTrackEtaCut( Double_t val )    { fTrackEtaCut = val; }
81     void   SetOnlyOneEtaSide(Int_t flag)    { fOnlyOneEtaSide = flag; }
82     void   SetPtMin(Double_t val)            { fPtMin = val; }
83     void   SetFilterBit( UInt_t val )        { fFilterBit = val;  }
84     
85     void   SetEventSelectionBit( UInt_t val )        { fSelectBit = val;  }
86     void   SetUseChargeHadrons( Bool_t val ) { fUseChargeHadrons = val; }
87     void   SetSelectCharge(Int_t selectCharge) { fSelectCharge = selectCharge; }
88     void   SetTriggerRestrictEta(Float_t eta) { fTriggerRestrictEta = eta; }
89     void   SetEtaOrdering(Bool_t flag) { fEtaOrdering = flag; }
90     void   SetPairCuts(Bool_t conversions, Bool_t resonances) { fCutConversions = conversions; fCutResonances = resonances; }
91     void   SetCentralityMethod(const char* method) { fCentralityMethod = method; }
92     void   SetFillpT(Bool_t flag) { fFillpT = flag; }
93     void   SetStepsFillSkip(Bool_t step0, Bool_t step6) { fFillOnlyStep0 = step0; fSkipStep6 = step6; }
94     
95   private:
96     AliAnalysisTaskPhiCorrelations(const  AliAnalysisTaskPhiCorrelations &det);
97     AliAnalysisTaskPhiCorrelations&   operator=(const  AliAnalysisTaskPhiCorrelations &det);
98     void            AddSettingsTree();                                  // add list of settings to output list
99     // Analysis methods
100     void            AnalyseCorrectionMode();                            // main algorithm to get correction maps
101     void            AnalyseDataMode();                                  // main algorithm to get raw distributions
102     void            Initialize();                                       // initialize some common pointer
103     TObjArray* CloneAndReduceTrackList(TObjArray* tracks);
104
105     // General configuration
106     Int_t               fDebug;           //  Debug flag
107     Int_t               fMode;            //  fMode = 0: data-like analysis 
108                                           //  fMode = 1: corrections analysis   
109     Bool_t              fReduceMemoryFootprint; // reduce memory consumption by writing less debug histograms
110     Bool_t              fFillMixed;             // enable event mixing (default: ON)
111     Int_t               fMixingTracks;          // size of track buffer for event mixing
112     Bool_t              fCompareCentralities;   // use the z vtx axis for a centrality comparison
113     Bool_t              fTwoTrackEfficiencyStudy; // two-track efficiency study on
114     Float_t             fTwoTrackEfficiencyCut;   // enable two-track efficiency cut
115     Bool_t              fUseVtxAxis;              // use z vtx as axis (needs 7 times more memory!)
116     Bool_t              fSkipTrigger;             // skip trigger selection
117     
118     // Pointers to external UE classes
119     AliAnalyseLeadingTrackUE*     fAnalyseUE;      //! points to class containing common analysis algorithms
120     AliUEHistograms*  fHistos;       //! points to class to handle histograms/containers  
121     AliUEHistograms*  fHistosMixed;       //! points to class to handle mixed histograms/containers  
122     
123     const TH1D* fkTrackingEfficiency;       // used for study of bias by tracking 
124
125     // Handlers and events
126     AliAODEvent*             fAOD;             //! AOD Event 
127     AliESDEvent*             fESD;             //! ESD Event 
128     TClonesArray*            fArrayMC;         //! Array of MC particles 
129     AliInputEventHandler*    fInputHandler;    //! Generic InputEventHandler 
130     AliMCEvent*              fMcEvent;         //! MC event
131     AliMCEventHandler*       fMcHandler;       //! MCEventHandler 
132     AliEventPoolManager*     fPoolMgr;         //! event pool manager
133     
134     // Histogram settings
135     TList*              fListOfHistos;    //  Output list of containers 
136     
137     // Event QA cuts
138     Int_t               fnTracksVertex;        // QA tracks pointing to principal vertex
139     Double_t            fZVertex;              // Position of Vertex in Z direction
140     TString             fCentralityMethod;     // Method to determine centrality
141     
142     // Track cuts
143     Double_t            fTrackEtaCut;          // Eta cut on particles
144     Int_t               fOnlyOneEtaSide;       // decides that only trigger particle from one eta side are considered (0 = all; -1 = negative, 1 = positive)
145     Double_t            fPtMin;                // Min pT to start correlations
146     UInt_t              fFilterBit;            // Select tracks from an specific track cut (default 0xFF all track selected)
147     UInt_t              fSelectBit;            // Select events according to AliAnalysisTaskJetServices bit maps 
148     Bool_t              fUseChargeHadrons;     // Only use charge hadrons
149     
150     Int_t fSelectCharge;           // (un)like sign selection when building correlations: 0: no selection; 1: unlike sign; 2: like sign
151     Float_t fTriggerRestrictEta;   // restrict eta range for trigger particle (default: -1 [off])
152     Bool_t fEtaOrdering;           // eta ordering, see AliUEHistograms.h for documentation
153     Bool_t fCutConversions;        // cut on conversions (inv mass)
154     Bool_t fCutResonances;         // cut on resonances (inv mass)
155     Bool_t fFillOnlyStep0;         // fill only step 0
156     Bool_t fSkipStep6;             // skip step 6 when filling
157     
158     Bool_t fFillpT;                // fill sum pT instead of number density
159     
160     ClassDef( AliAnalysisTaskPhiCorrelations, 10); // Analysis task for delta phi correlations
161   };
162
163 class AliDPhiBasicParticle : public AliVParticle
164 {
165   public:
166     AliDPhiBasicParticle(Float_t eta, Float_t phi, Float_t pt, Short_t charge)
167       : fEta(eta), fPhi(phi), fpT(pt), fCharge(charge)
168     {
169     }
170     ~AliDPhiBasicParticle() {}
171     
172     // kinematics
173     virtual Double_t Px() const { AliFatal("Not implemented"); return 0; }
174     virtual Double_t Py() const { AliFatal("Not implemented"); return 0; }
175     virtual Double_t Pz() const { AliFatal("Not implemented"); return 0; }
176     virtual Double_t Pt() const { return fpT; }
177     virtual Double_t P() const { AliFatal("Not implemented"); return 0; }
178     virtual Bool_t   PxPyPz(Double_t[3]) const { AliFatal("Not implemented"); return 0; }
179
180     virtual Double_t Xv() const { AliFatal("Not implemented"); return 0; }
181     virtual Double_t Yv() const { AliFatal("Not implemented"); return 0; }
182     virtual Double_t Zv() const { AliFatal("Not implemented"); return 0; }
183     virtual Bool_t   XvYvZv(Double_t[3]) const { AliFatal("Not implemented"); return 0; }
184
185     virtual Double_t OneOverPt()  const { AliFatal("Not implemented"); return 0; }
186     virtual Double_t Phi()        const { return fPhi; }
187     virtual Double_t Theta()      const { AliFatal("Not implemented"); return 0; }
188
189
190     virtual Double_t E()          const { AliFatal("Not implemented"); return 0; }
191     virtual Double_t M()          const { AliFatal("Not implemented"); return 0; }
192     
193     virtual Double_t Eta()        const { return fEta; }
194     virtual Double_t Y()          const { AliFatal("Not implemented"); return 0; }
195     
196     virtual Short_t Charge()      const { return fCharge; }
197     virtual Int_t   GetLabel()    const { AliFatal("Not implemented"); return 0; }
198     // PID
199     virtual Int_t   PdgCode()     const { AliFatal("Not implemented"); return 0; }      
200     virtual const Double_t *PID() const { AliFatal("Not implemented"); return 0; }
201     
202   private:
203     Float_t fEta;      // eta
204     Float_t fPhi;      // phi
205     Float_t fpT;       // pT
206     Short_t fCharge;   // charge
207     
208     ClassDef( AliDPhiBasicParticle, 1); // class which contains only quantities requires for this analysis to reduce memory consumption for event mixing
209 };
210   
211 #endif
212
213