AliPhysics  a5cd6b6 (a5cd6b6)
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AliAnalysisTaskCRC.h
Go to the documentation of this file.
1 /*************************************************************************
2  * Copyright(c) 1998-2008, ALICE Experiment at CERN, All rights reserved. *
3  * *
4  * Author: The ALICE Off-line Project. *
5  * Contributors are mentioned in the code where appropriate. *
6  * *
7  * Permission to use, copy, modify and distribute this software and its *
8  * documentation strictly for non-commercial purposes is hereby granted *
9  * without fee, provided that the above copyright notice appears in all *
10  * copies and that both the copyright notice and this permission notice *
11  * appear in the supporting documentation. The authors make no claims *
12  * about the suitability of this software for any purpose. It is *
13  * provided "as is" without express or implied warranty. *
14  **************************************************************************/
15 
16 /********************************
17  * analysis task for CRC *
18  * *
19  * author: Jacopo Margutti *
20  * (margutti@nikhef.nl) *
21  * ******************************/
22 
23 #ifndef AliAnalysisTaskCRC_H
24 #define AliAnalysisTaskCRC_H
25 
26 #include "AliAnalysisTaskSE.h"
27 #include "AliFlowCommonConstants.h"
28 
29 class TString;
30 class TList;
31 class AliFlowEventSimple;
32 class AliFlowEvent;
33 class AliFlowAnalysisCRC;
34 
35 //==============================================================================================================
36 
38 public:
40  AliAnalysisTaskCRC(const char *name, Bool_t useParticleWeights=kFALSE);
41  virtual ~AliAnalysisTaskCRC(){};
42 
43  virtual void UserCreateOutputObjects();
44  virtual void UserExec(Option_t *option);
45  virtual void Terminate(Option_t *);
46 
47  // Common:
48  void SetBookOnlyBasicCCH(Bool_t const bobcch) {this->fBookOnlyBasicCCH = bobcch;};
49  Bool_t GetBookOnlyBasicCCH() const {return this->fBookOnlyBasicCCH;};
52  void SetHarmonic(Int_t const harmonic) {this->fHarmonic = harmonic;};
53  Int_t GetHarmonic() const {return this->fHarmonic;};
54  void SetApplyCorrectionForNUA(Bool_t const applyCorrectionForNUA) {this->fApplyCorrectionForNUA = applyCorrectionForNUA;};
56  void SetApplyCorrectionForNUAVsM(Bool_t const applyCorrectionForNUAVsM) {this->fApplyCorrectionForNUAVsM = applyCorrectionForNUAVsM;};
58  void SetPropagateErrorAlsoFromNIT(Bool_t const peafNIT) {this->fPropagateErrorAlsoFromNIT = peafNIT;};
60  void SetCalculateDiffFlow(Bool_t const calculateDiffFlow) {this->fCalculateDiffFlow = calculateDiffFlow;};
62  void SetCalculate2DDiffFlow(Bool_t const calculate2DDiffFlow) {this->fCalculate2DDiffFlow = calculate2DDiffFlow;};
64  void SetCalculateDiffFlowVsEta(Bool_t const cdfve) {this->fCalculateDiffFlowVsEta = cdfve;};
66  void SetStoreDistributions(Bool_t const storeDistributions) {this->fStoreDistributions = storeDistributions;};
68  void SetCalculateCumulantsVsM(Bool_t const ccvm) {this->fCalculateCumulantsVsM = ccvm;};
82  void SetStoreVarious(Bool_t const spdfoe) {this->fStoreVarious = spdfoe;};
83  Bool_t GetStoreVarious() const {return this->fStoreVarious;};
84  void SetExactNoRPs(Int_t const enr) {this->fExactNoRPs = enr;};
85  Int_t GetExactNoRPs() const {return this->fExactNoRPs;};
86  void SetUse2DHistograms(Bool_t const u2dh){this->fUse2DHistograms = u2dh;if(u2dh){this->fStoreControlHistograms = kTRUE;}};
87  Bool_t GetUse2DHistograms() const {return this->fUse2DHistograms;};
90  void SetUseQvectorTerms(Bool_t const uqvt){this->fUseQvectorTerms = uqvt;if(uqvt){this->fStoreControlHistograms = kTRUE;}};
91  Bool_t GetUseQvectorTerms() const {return this->fUseQvectorTerms;};
92  void SetWeightsList(TList* const kList) {this->fWeightsList = (TList*)kList->Clone();};
93  TList* GetWeightsList() const {return this->fWeightsList;};
94  void SetWeightsListChDep(TList* const kList) {this->fWeightsListChDep = (TList*)kList->Clone();};
95  TList* GetWeightsListChDep() const {return this->fWeightsListChDep;};
96  void SetWeightsListVtxDep(TList* const kList) {this->fWeightsListVtxDep = (TList*)kList->Clone();};
97  TList* GetWeightsListVtxDep() const {return this->fWeightsListVtxDep;};
98 
99  // Multiparticle correlations vs multiplicity:
100  void SetnBinsMult(Int_t const nbm) {this->fnBinsMult = nbm;};
101  Int_t GetnBinsMult() const {return this->fnBinsMult;};
102  void SetMinMult(Double_t const minm) {this->fMinMult = minm;};
103  Double_t GetMinMult() const {return this->fMinMult;};
104  void SetMaxMult(Double_t const maxm) {this->fMaxMult = maxm;};
105  Double_t GetMaxMult() const {return this->fMaxMult;};
106 
107  // Particle weights:
108  void SetUsePhiWeights(Bool_t const uPhiW) {this->fUsePhiWeights = uPhiW;};
109  Bool_t GetUsePhiWeights() const {return this->fUsePhiWeights;};
110  void SetUsePtWeights(Bool_t const uPtW) {this->fUsePtWeights = uPtW;};
111  Bool_t GetUsePtWeights() const {return this->fUsePtWeights;};
112  void SetUseEtaWeights(Bool_t const uEtaW) {this->fUseEtaWeights = uEtaW;};
113  Bool_t GetUseEtaWeights() const {return this->fUseEtaWeights;};
114  void SetUseTrackWeights(Bool_t const uTrackW) {this->fUseTrackWeights = uTrackW;};
115  Bool_t GetUseTrackWeights() const {return this->fUseTrackWeights;};
116  void SetUsePhiEtaWeights(Bool_t const uPhiEtaW) {this->fUsePhiEtaWeights = uPhiEtaW;};
118  void SetUsePhiEtaWeightsChDep(Bool_t const uPhiEtaW) {this->fUsePhiEtaWeightsChDep = uPhiEtaW;};
120  void SetUsePhiEtaWeightsVtxDep(Bool_t const uPhiEtaW) {this->fUsePhiEtaWeightsVtxDep = uPhiEtaW;};
122  void SetUsePhiEtaCuts(Bool_t const uPhiEtaW) {this->fUsePhiEtaCuts = uPhiEtaW;};
123  Bool_t GetUsePhiEtaCuts() const {return this->fUsePhiEtaCuts;};
124  void SetUseZDCESEMulWeights(Bool_t const uPhiEtaW) {this->fUseZDCESEMulWeights = uPhiEtaW;};
126  void SetUseZDCESESpecWeights(Bool_t const uPhiEtaW) {this->fUseZDCESESpecWeights = uPhiEtaW;};
128 
129  // Event weights:
130  void SetMultiplicityWeight(const char *multiplicityWeight) {*this->fMultiplicityWeight = multiplicityWeight;};
132  // # of bins for correlation axis in fDistributions[4], fCorrelation2468VsMult[4] and fCorrelationProduct2468VsMult[1]
135 
136  // Boundaries for distributions of correlations:
137  void SetMinValueOfCorrelation(Int_t const ci, Double_t const minValue) {this->fMinValueOfCorrelation[ci] = minValue;};
139  void SetMaxValueOfCorrelation(Int_t const ci, Double_t const maxValue) {this->fMaxValueOfCorrelation[ci] = maxValue;};
141 
142  // min and max values of correlation products:
143  void SetMinValueOfCorrelationProduct(Int_t const cpi, Double_t const minValue) {this->fMinValueOfCorrelationProduct[cpi] = minValue;};
145  void SetMaxValueOfCorrelationProduct(Int_t const cpi, Double_t const maxValue) {this->fMaxValueOfCorrelationProduct[cpi] = maxValue;};
147 
148  // min and max values of QvectorTerms:
149  void SetMinValueOfQvectorTerms(Int_t const qvti, Double_t const minValue) {this->fMinValueOfQvectorTerms[qvti] = minValue;};
151  void SetMaxValueOfQvectorTerms(Int_t const qvti, Double_t const maxValue) {this->fMaxValueOfQvectorTerms[qvti] = maxValue;};
153 
154  // bootstrap:
155  void SetUseBootstrap(Bool_t const ub) {this->fUseBootstrap = ub;};
156  Bool_t GetUseBootstrap() const {return this->fUseBootstrap;};
157  void SetUseBootstrapVsM(Bool_t const ubVsM) {this->fUseBootstrapVsM = ubVsM;};
158  Bool_t GetUseBootstrapVsM() const {return this->fUseBootstrapVsM;};
159  void SetnSubsamples(Int_t const ns) {this->fnSubsamples = ns;};
160  Int_t GetnSubsamples() const {return this->fnSubsamples;};
161 
162  // Charge-Rapidity Correlations:
163  void SetCalculateCRC(Bool_t const cCRC) {this->fCalculateCRC = cCRC;};
164  Bool_t GetCalculateCRC() const {return this->fCalculateCRC;};
165  void SetCalculateCRCPt(Bool_t const cCRC) {this->fCalculateCRCPt = cCRC;};
166  Bool_t GetCalculateCRCPt() const {return this->fCalculateCRCPt;};
167  void SetCalculateCME(Bool_t const cCRC) {this->fCalculateCME = cCRC;};
168  Bool_t GetCalculateCME() const {return this->fCalculateCME;};
169  void SetCalculateCRCInt(Bool_t const cCRC) {this->fCalculateCRCInt = cCRC;};
170  Bool_t GetCalculateCRCInt() const {return this->fCalculateCRCInt;};
171  void SetCalculateCRC2(Bool_t const cCRC) {this->fCalculateCRC2 = cCRC;};
172  Bool_t GetCalculateCRC2() const {return this->fCalculateCRC2;};
173  void SetCalculateCRCVZ(Bool_t const cCRC) {this->fCalculateCRCVZ = cCRC;};
174  Bool_t GetCalculateCRCVZ() const {return this->fCalculateCRCVZ;};
175  void SetCalculateCRCZDC(Bool_t const cCRC) {this->fCalculateCRCZDC = cCRC;};
176  Bool_t GetCalculateCRCZDC() const {return this->fCalculateCRCZDC;};
177  void SetCalculateEbEFlow(Bool_t const cCRC) {this->fCalculateEbEFlow = cCRC;};
179  void SetStoreZDCQVecVtxPos(Bool_t const cCRC) {this->fStoreZDCQVecVtxPos = cCRC;};
181  void SetCRC2nEtaBins(Int_t NB) {this->fCRC2nEtaBins = NB;};
183  void SetCalculateFlowQC(Bool_t const cCRC) {this->fCalculateFlowQC = cCRC;};
184  Bool_t GetCalculateFlowQC() const {return this->fCalculateFlowQC;};
185  void SetCalculateFlowZDC(Bool_t const cCRC) {this->fCalculateFlowZDC = cCRC;};
187  void SetCalculateFlowVZ(Bool_t const cCRC) {this->fCalculateFlowVZ = cCRC;};
188  Bool_t GetCalculateFlowVZ() const {return this->fCalculateFlowVZ;};
189  void SetUseVZERO(Bool_t const cCRC) {this->fUseVZERO = cCRC;};
190  Bool_t GetUseVZERO() const {return this->fUseVZERO;};
191  void SetUseZDC(Bool_t const cCRC) {this->fUseZDC = cCRC;};
192  Bool_t GetUseZDC() const {return this->fUseZDC;};
193  void SetRecenterZDC(Bool_t const cCRC) {this->fRecenterZDC = cCRC;};
194  Bool_t GetRecenterZDC() const {return this->fRecenterZDC;};
195  void SetDivSigma(Bool_t const cCRC) {this->fDivSigma = cCRC;};
196  Bool_t GetDivSigma() const {return this->fDivSigma;};
197  void SetInvertZDC(Bool_t const cCRC) {this->fInvertZDC = cCRC;};
198  Bool_t GetInvertZDC() const {return this->fInvertZDC;};
199  void SetTestSin(Bool_t const cCRC) {this->fCRCTestSin = cCRC;};
200  Bool_t GetTestSin() const {return this->fCRCTestSin;};
201  void SetNUAforCRC(Bool_t const cCRC) {this->fUseNUAforCRC = cCRC;};
202  Bool_t GetNUAforCRC() const {return this->fUseNUAforCRC;};
203  void SetUseCRCRecenter(Bool_t const cCRC) {this->fUseCRCRecenter = cCRC;};
204  Bool_t GetUseCRCRecenter() const {return this->fUseCRCRecenter;};
206  void SetQVecList(TList* const kList) {this->fQVecList = (TList*)kList->Clone();};
207  TList* GetQVecList() const {return this->fQVecList;};
208  void SetZDCESEList(TList* const kList) {this->fZDCESEList = (TList*)kList->Clone();};
209  TList* GetZDCESEList() const {return this->fZDCESEList;};
210  void SetCRCZDCCalibList(TList* const wlist) {this->fCRCZDCCalibList = (TList*)wlist->Clone();}
211  TList* GetCRCZDCCalibList() const {return this->fCRCZDCCalibList;}
212  void SetCRCZDCResList(TList* const wlist) {this->fCRCZDCResList = (TList*)wlist->Clone();}
213  TList* GetCRCZDCResList() const {return this->fCRCZDCResList;}
214  void SetnCenBin(Int_t const n) {this->fnCenBin = n;};
215  Int_t GetnCenBin() const {return this->fnCenBin;};
216  void SetFlowQCCenBin(Int_t const TL) {this->fFlowQCCenBin = TL;};
217  Int_t GetFlowQCCenBin() const {return this->fFlowQCCenBin;};
218  void SetFlowQCDeltaEta(Double_t const TL) {this->fFlowQCDeltaEta = TL;};
219  Double_t GetFlowQCDeltaEta() const {return this->fFlowQCDeltaEta;};
220  void SetCenBinWidth(Double_t const n) {this->fCenBinWidth = n;};
221  Double_t GetCenBinWidth() const {return this->fCenBinWidth;};
222  void SetDataSet(TString const n) {this->fDataSet = n;};
223  TString GetDataSet() const {return this->fDataSet;};
224  void SetInteractionRate(TString const n) {this->fInteractionRate = n;};
226  void SetSelectCharge(TString const n) {this->fSelectCharge = n;};
227  TString GetSelectCharge() const {return this->fSelectCharge;}
228  void SetCorrWeight(TString const n) {this->fCorrWeight = n;};
229  TString GetCorrWeight() const {return this->fCorrWeight;};
230  void SetCenWeightsHist(TH1D* const n) {this->fCenWeightsHist = n;};
231  TH1D* GetCenWeightsHist() const {return this->fCenWeightsHist;};
232  void SetPtWeightsHist(TH1D* const n, Int_t c) {this->fPtWeightsHist[c] = n;};
233  TH1D* GetPtWeightsHist(Int_t c) const {return this->fPtWeightsHist[c];};
234  void SetEtaWeightsHist(TH1D* const n, Int_t h, Int_t b, Int_t c) {this->fEtaWeightsHist[h][b][c] = n;};
235  TH1D* GetEtaWeightsHist(Int_t h, Int_t b, Int_t c) const {return this->fEtaWeightsHist[h][b][c];};
236  void SetZDCESEMultWeightsHist(TH2F* const n, Int_t h) {this->fZDCESEMultWeightsHist[h] = n;};
238  void SetZDCESESpecWeightsHist(TH2F* const n, Int_t h) {this->fZDCESESpecWeightsHist[h] = n;};
240  void SetNvsCenCut(TH1D* const n, Int_t c, Int_t h) {this->fNvsCenCut[c][h] = n;};
241  TH1D* GetNvsCenCut(Int_t c, Int_t h) const {return this->fNvsCenCut[c][h];};
242  void SetQAZDCCuts(Bool_t const cCRC) {this->fQAZDCCuts = cCRC;};
243  Bool_t GetQAZDCCuts() const {return this->fQAZDCCuts;};
244  void SetMinMulZN(Int_t weights) {this->fMinMulZN = weights;};
245  Int_t GetMinMulZN() const {return this->fMinMulZN;};
246  void SetMaxDevZN(Float_t weights) {this->fMaxDevZN = weights;};
247  Float_t GetMaxDevZN() const {return this->fMaxDevZN;};
249 
250 private:
253 
254  AliFlowEvent *fEvent; // the input event
255  AliFlowAnalysisCRC *fQC; // CRC object
256  TList *fListHistos; // collection of output
257  // Common:
258  Bool_t fBookOnlyBasicCCH; // book only basis common control histrograms (by default book them all)
259  Bool_t fFillMultipleControlHistograms; // fill separately control histos for events with >= 2, 4, 6 and 8 particles
260  Int_t fHarmonic; // harmonic
261  Bool_t fApplyCorrectionForNUA; // apply correction for non-uniform acceptance
262  Bool_t fApplyCorrectionForNUAVsM; // apply correction for non-uniform acceptance versus M
263  Bool_t fPropagateErrorAlsoFromNIT; // propagate error by taking into account also non-isotrpic terms
264  Bool_t fCalculateDiffFlow; // calculate differential flow in pt or eta
265  Bool_t fCalculate2DDiffFlow; // calculate differential flow in (pt,eta) (Remark: this is very expensive in terms of CPU time)
266  Bool_t fCalculateDiffFlowVsEta; // if you set kFALSE only differential flow vs pt is calculated
267  Bool_t fStoreDistributions; // store or not distributions of correlations
268  Bool_t fCalculateCumulantsVsM; // calculate cumulants versus multiplicity
269  Bool_t fCalculateAllCorrelationsVsM; // calculate all correlations versus multiplicity
270  Bool_t fCalculateMixedHarmonics; // calculate all mixed harmonics correlations
271  Bool_t fCalculateMixedHarmonicsVsM; // calculate all mixed harmonics correlations versus multiplicity
272  Bool_t fStoreControlHistograms; // store or not control histograms
273  Bool_t fMinimumBiasReferenceFlow; // store as reference flow in AliFlowCommonHistResults the minimum bias result (kFALSE by default)
274  Bool_t fForgetAboutCovariances; // when propagating error forget about the covariances
275  Bool_t fStoreVarious; // store phi distribution for one event to illustrate flow
276  Int_t fExactNoRPs; // when shuffled, select only this number of RPs for the analysis
277  Bool_t fUse2DHistograms; // use TH2D instead of TProfile to improve numerical stability in reference flow calculation
278  Bool_t fFillProfilesVsMUsingWeights; // if the width of multiplicity bin is 1, weights are not needed
279  Bool_t fUseQvectorTerms; // use TH2D with separate Q-vector terms instead of TProfile to improve numerical stability in reference flow calculation
280  // Multiparticle correlations vs multiplicity:
281  Int_t fnBinsMult; // number of multiplicity bins for flow analysis versus multiplicity
282  Double_t fMinMult; // minimal multiplicity for flow analysis versus multiplicity
283  Double_t fMaxMult; // maximal multiplicity for flow analysis versus multiplicity
284  // Particle weights:
285  Bool_t fUseParticleWeights; // use any particle weights
286  Bool_t fUsePhiWeights; // use phi weights
287  Bool_t fUsePhiEtaCuts; // use phi,eta cuts (for NUA)
288  Bool_t fUsePtWeights; // use pt weights
289  Bool_t fUseEtaWeights; // use eta weights
290  Bool_t fUseTrackWeights; // use track weights (e.g. VZERO sector weights)
291  Bool_t fUsePhiEtaWeights; // use phi,eta weights
292  Bool_t fUsePhiEtaWeightsChDep; // use phi,eta weights ch dep
293  Bool_t fUsePhiEtaWeightsVtxDep; // use phi,eta weights vtx dep
294  Bool_t fUseZDCESEMulWeights; // use ZDC-ESE mult. weights
295  Bool_t fUseZDCESESpecWeights; // use ZDC-ESE mult. weights
296  TList *fWeightsList; // list with weights
297  TList *fWeightsListChDep; // list with weights ch dep
298  TList *fWeightsListVtxDep; // list with weights vtx dep
299  // Event weights:
300  TString *fMultiplicityWeight; // event-by-event weights for multiparticle correlations ("combinations","unit" or "multiplicity")
301  AliFlowCommonConstants::ERefMultSource fMultiplicityIs; // by default "#RPs", other supported options are "RefMultFromESD" = ref. mult. from ESD, and "#POIs"
302  Int_t fnBinsForCorrelations; // # of bins for correlation axis in fDistributions[4], fCorrelation2468VsMult[4] and fCorrelationProduct2468VsMult[1]
303  // Boundaries for distributions of correlations:
304  Double_t fMinValueOfCorrelation[4]; // min values of <2>, <4>, <6> and <8>
305  Double_t fMaxValueOfCorrelation[4]; // max values of <2>, <4>, <6> and <8>
306  Double_t fMinValueOfCorrelationProduct[1]; // min values of <2><4>, <2><6>, <2><8>, <4><6> etc. TBI add the other ones when needed first time
307  Double_t fMaxValueOfCorrelationProduct[1]; // max values of <2><4>, <2><6>, <2><8>, <4><6> etc. TBI add the other ones when needed first time
308  Double_t fMinValueOfQvectorTerms[4]; // min value of Q-vector terms
309  Double_t fMaxValueOfQvectorTerms[4]; // max value of Q-vector terms
310  // Bootstrap:
311  Bool_t fUseBootstrap; // use bootstrap to estimate statistical spread
312  Bool_t fUseBootstrapVsM; // use bootstrap to estimate statistical spread for results vs M
313  Int_t fnSubsamples; // number of subsamples (SS), by default 10
314  // Charge-Eta Asymmetry
315  Bool_t fCalculateCRC; // calculate CRC quantities
324  Int_t fCRC2nEtaBins; // CRC2 n eta bins
346  TList *fQVecList; // list with weights
347  TList *fCRCZDCCalibList; // ZDC calibration
348  TList *fCRCZDCResList; // ZDC rescaling
349  TList *fZDCESEList; // list with weights
352  TH1D* fEtaWeightsHist[10][21][2];
353  TH1D* fNvsCenCut[2][2];
360 
362 };
363 
364 //================================================================================================================
365 
366 #endif
367 
368 
369 
370 
371 
372 
373 
374 
375 
376 
377 
void SetMultiplicityIs(AliFlowCommonConstants::ERefMultSource mi)
void SetMinMulZN(Int_t weights)
TH2F * GetZDCESEMultWeightsHist(Int_t h) const
Int_t GetnBinsMult() const
Int_t GetHarmonic() const
Bool_t GetUseEtaWeights() const
virtual void UserExec(Option_t *option)
void SetCRCZDCCalibList(TList *const wlist)
Double_t GetCenBinWidth() const
ClassDef(AliAnalysisTaskCRC, 9)
void SetUseBootstrapVsM(Bool_t const ubVsM)
virtual void UserCreateOutputObjects()
void SetStoreVarious(Bool_t const spdfoe)
double Double_t
Definition: External.C:58
TH2F * fZDCESEMultWeightsHist[5]
ZDC mult cuts.
Bool_t GetUsePhiEtaCuts() const
Bool_t GetCalculateCRCPt() const
Definition: External.C:236
void SetFlowQCDeltaEta(Double_t const TL)
void SetFillMultipleControlHistograms(Bool_t const fmch)
AliFlowAnalysisCRC * fQC
TH1D * GetPtWeightsHist(Int_t c) const
Bool_t GetUsePhiEtaWeights() const
TList * GetCRCZDCCalibList() const
TH2F * GetZDCESESpecWeightsHist(Int_t h) const
void SetQAZDCCuts(Bool_t const cCRC)
Bool_t GetPropagateErrorAlsoFromNIT() const
void SetCalculateCumulantsVsM(Bool_t const ccvm)
Bool_t GetUseTrackWeights() const
Double_t GetMaxMult() const
Bool_t GetCalculateCME() const
void SetUseZDCESEMulWeights(Bool_t const uPhiEtaW)
TList * GetWeightsListChDep() const
void SetZDCESEMultWeightsHist(TH2F *const n, Int_t h)
Bool_t GetStoreControlHistograms() const
void SetCRCZDCResList(TList *const wlist)
Double_t GetFlowQCDeltaEta() const
Bool_t GetUsePtWeights() const
Bool_t GetBookOnlyBasicCCH() const
Bool_t GetCalculateCRCInt() const
Bool_t GetCalculateEbEFlow() const
void SetInvertZDC(Bool_t const cCRC)
void SetCalculateCRCZDC(Bool_t const cCRC)
Bool_t GetCalculateCRC2() const
Bool_t GetApplyCorrectionForNUAVsM() const
void SetCalculateCRCVZ(Bool_t const cCRC)
void SetMinValueOfCorrelationProduct(Int_t const cpi, Double_t const minValue)
void SetNUAforCRC(Bool_t const cCRC)
void SetZDCESESpecWeightsHist(TH2F *const n, Int_t h)
Bool_t GetCalculateAllCorrelationsVsM() const
void SetDataSet(TString const n)
TCanvas * c
Definition: TestFitELoss.C:172
void SetUseVZERO(Bool_t const cCRC)
Double_t GetMinValueOfCorrelationProduct(Int_t cpi) const
void SetUseTrackWeights(Bool_t const uTrackW)
void SetInteractionRate(TString const n)
void SetDivSigma(Bool_t const cCRC)
Bool_t GetUseQvectorTerms() const
void SetCalculateCRCPt(Bool_t const cCRC)
Double_t GetMinValueOfCorrelation(Int_t ci) const
void SetCalculateAllCorrelationsVsM(Bool_t const cacvm)
void SetCRCEtaRange(Double_t const etamin, Double_t const etamax)
void SetPtWeightsHist(TH1D *const n, Int_t c)
Bool_t GetCalculateCRC() const
void SetWeightsList(TList *const kList)
void SetnBinsForCorrelations(Int_t const nb)
Bool_t GetStoreZDCQVecVtxPos() const
void SetCalculateMixedHarmonics(Bool_t const cmh)
TH2F * fZDCESESpecWeightsHist[5]
Bool_t GetApplyCorrectionForNUA() const
Bool_t GetUseZDCESEMulWeights() const
Bool_t GetUseCRCRecenter() const
void SetNvsCenCut(TH1D *const n, Int_t c, Int_t h)
void SetMaxValueOfCorrelation(Int_t const ci, Double_t const maxValue)
const Double_t etamin
Bool_t GetCalculateMixedHarmonics() const
Bool_t GetStoreDistributions() const
void SetUsePtWeights(Bool_t const uPtW)
void SetMinMult(Double_t const minm)
void SetCalculateCME(Bool_t const cCRC)
Bool_t GetUsePhiWeights() const
void SetWeightsListChDep(TList *const kList)
Double_t fMinValueOfCorrelationProduct[1]
void SetUsePhiEtaWeightsChDep(Bool_t const uPhiEtaW)
int Int_t
Definition: External.C:63
Bool_t GetTestSin() const
Double_t GetMinMult() const
Bool_t GetInvertZDC() const
virtual void Terminate(Option_t *)
float Float_t
Definition: External.C:68
void SetStoreDistributions(Bool_t const storeDistributions)
void SetMaxValueOfQvectorTerms(Int_t const qvti, Double_t const maxValue)
void SetEtaWeightsHist(TH1D *const n, Int_t h, Int_t b, Int_t c)
void SetCalculateFlowQC(Bool_t const cCRC)
Int_t GetMinMulZN() const
AliAnalysisTaskCRC & operator=(const AliAnalysisTaskCRC &aatqc)
Bool_t GetQAZDCCuts() const
Double_t fMinValueOfCorrelation[4]
Double_t fMaxValueOfCorrelation[4]
Bool_t GetUsePhiEtaWeightsChDep() const
void SetMinValueOfCorrelation(Int_t const ci, Double_t const minValue)
Bool_t GetCalculateCRCVZ() const
void SetUseBootstrap(Bool_t const ub)
Definition: External.C:212
void SetUse2DHistograms(Bool_t const u2dh)
void SetZDCESEList(TList *const kList)
Double_t fMinValueOfQvectorTerms[4]
Double_t fMaxValueOfQvectorTerms[4]
void SetFlowQCCenBin(Int_t const TL)
Bool_t GetUse2DHistograms() const
void SetCalculateDiffFlowVsEta(Bool_t const cdfve)
void SetCRC2nEtaBins(Int_t NB)
Bool_t GetUseZDCESESpecWeights() const
Double_t GetMinValueOfQvectorTerms(Int_t qvti) const
void SetRecenterZDC(Bool_t const cCRC)
Bool_t GetCalculateFlowQC() const
void SetUsePhiWeights(Bool_t const uPhiW)
void SetCalculateCRC2(Bool_t const cCRC)
void SetMaxMult(Double_t const maxm)
void SetCorrWeight(TString const n)
Bool_t GetCalculateFlowVZ() const
TList * GetZDCESEList() const
Bool_t GetCalculateFlowZDC() const
Int_t GetnBinsForCorrelations() const
void SetPropagateErrorAlsoFromNIT(Bool_t const peafNIT)
Bool_t GetUseZDC() const
Bool_t GetUsePhiEtaWeightsVtxDep() const
void SetUseCRCRecenter(Bool_t const cCRC)
void SetCalculateFlowZDC(Bool_t const cCRC)
void SetCalculateCRC(Bool_t const cCRC)
void SetCenWeightsHist(TH1D *const n)
TString GetDataSet() const
void SetCalculateEbEFlow(Bool_t const cCRC)
void SetUseQvectorTerms(Bool_t const uqvt)
void SetUsePhiEtaWeights(Bool_t const uPhiEtaW)
void SetCalculateMixedHarmonicsVsM(Bool_t const cmhvm)
void SetnSubsamples(Int_t const ns)
TList * GetCRCZDCResList() const
void SetCalculate2DDiffFlow(Bool_t const calculate2DDiffFlow)
Bool_t GetCalculateDiffFlow() const
TH1D * GetEtaWeightsHist(Int_t h, Int_t b, Int_t c) const
void SetUsePhiEtaWeightsVtxDep(Bool_t const uPhiEtaW)
TList * GetQVecList() const
Bool_t GetDivSigma() const
Int_t GetFlowQCCenBin() const
TH1D * GetCenWeightsHist() const
Int_t GetnSubsamples() const
Int_t GetExactNoRPs() const
Bool_t GetFillProfilesVsMUsingWeights() const
void SetUseEtaWeights(Bool_t const uEtaW)
Bool_t GetRecenterZDC() const
Int_t GetnCenBin() const
void SetnBinsMult(Int_t const nbm)
TString GetSelectCharge() const
TH1D * fEtaWeightsHist[10][21][2]
Double_t fMaxValueOfCorrelationProduct[1]
void SetUseZDCESESpecWeights(Bool_t const uPhiEtaW)
Bool_t GetCalculateCumulantsVsM() const
void SetSelectCharge(TString const n)
Bool_t GetUseBootstrap() const
AliFlowCommonConstants::ERefMultSource fMultiplicityIs
void SetMinValueOfQvectorTerms(Int_t const qvti, Double_t const minValue)
void SetHarmonic(Int_t const harmonic)
void SetStoreZDCQVecVtxPos(Bool_t const cCRC)
void SetMaxValueOfCorrelationProduct(Int_t const cpi, Double_t const maxValue)
Bool_t GetCalculateDiffFlowVsEta() const
Float_t GetMaxDevZN() const
Bool_t GetUseBootstrapVsM() const
Bool_t GetFillMultipleControlHistograms() const
const Double_t etamax
void SetApplyCorrectionForNUA(Bool_t const applyCorrectionForNUA)
void SetForgetAboutCovariances(Bool_t const fac)
void SetMultiplicityWeight(const char *multiplicityWeight)
void SetUsePhiEtaCuts(Bool_t const uPhiEtaW)
void SetnCenBin(Int_t const n)
Double_t GetMaxValueOfCorrelationProduct(Int_t cpi) const
Bool_t GetMinimumBiasReferenceFlow() const
void SetUseZDC(Bool_t const cCRC)
void SetCalculateCRCInt(Bool_t const cCRC)
void SetStoreControlHistograms(Bool_t const sch)
const char Option_t
Definition: External.C:48
void SetCalculateFlowVZ(Bool_t const cCRC)
Double_t GetMaxValueOfCorrelation(Int_t ci) const
void SetMinimumBiasReferenceFlow(Bool_t const mmrf)
void SetFillProfilesVsMUsingWeights(Bool_t const fpvmuw)
void SetWeightsListVtxDep(TList *const kList)
bool Bool_t
Definition: External.C:53
Bool_t GetStoreVarious() const
void SetBookOnlyBasicCCH(Bool_t const bobcch)
void SetZDCGainAlpha(Float_t a)
Bool_t GetCalculateCRCZDC() const
TList * GetWeightsList() const
void SetTestSin(Bool_t const cCRC)
TH1D * GetNvsCenCut(Int_t c, Int_t h) const
Bool_t GetNUAforCRC() const
Bool_t GetCalculate2DDiffFlow() const
void SetExactNoRPs(Int_t const enr)
TList * GetWeightsListVtxDep() const
void SetCalculateDiffFlow(Bool_t const calculateDiffFlow)
void SetCenBinWidth(Double_t const n)
Bool_t GetForgetAboutCovariances() const
Bool_t GetCalculateMixedHarmonicsVsM() const
void SetApplyCorrectionForNUAVsM(Bool_t const applyCorrectionForNUAVsM)
Double_t GetMaxValueOfQvectorTerms(Int_t qvti) const
TString GetCorrWeight() const
Bool_t GetUseVZERO() const
void SetMaxDevZN(Float_t weights)
void SetQVecList(TList *const kList)
TString GetInteractionRate() const