ROOT logo
/* 
 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. 
 * See cxx source for full Copyright notice 
 * $Id$ 
 */

/********************************** 
 * flow analysis with Q-cumulants * 
 *                                * 
 * author: Ante Bilandzic         * 
 *        (abilandzic@gmail.com)  *
 *********************************/ 

#ifndef ALIFLOWANALYSISWITHQCUMULANTS_H
#define ALIFLOWANALYSISWITHQCUMULANTS_H

#include "TMatrixD.h"
#include "TH2D.h"
#include "TRandom3.h"
#include "AliFlowCommonConstants.h"

class TObjArray;
class TList;
class TFile;
class TGraph;

class TH1;
class TProfile;
class TProfile2D;
class TDirectoryFile;

class AliFlowEventSimple;
class AliFlowVector;

class AliFlowCommonHist;
class AliFlowCommonHistResults;

//================================================================================================================

class AliFlowAnalysisWithQCumulants{
 public:
  AliFlowAnalysisWithQCumulants();
  virtual ~AliFlowAnalysisWithQCumulants(); 
  // 0.) methods called in the constructor:
  virtual void InitializeArraysForIntFlow();
  virtual void InitializeArraysForDiffFlow();
  virtual void InitializeArraysForDistributions();
  virtual void InitializeArraysForVarious();
  virtual void InitializeArraysForNestedLoops();
  virtual void InitializeArraysForMixedHarmonics();
  virtual void InitializeArraysForControlHistograms();
  virtual void InitializeArraysForBootstrap();
  // 1.) method Init() and methods called within Init():
  virtual void Init();
    virtual void CrossCheckSettings();
    virtual void CommonConstants(TString method);
    virtual void BookAndNestAllLists();
      virtual void BookAndNestListsForDifferentialFlow();
    virtual void BookCommonHistograms();
    virtual void BookAndFillWeightsHistograms();
    virtual void BookEverythingForIntegratedFlow();
    virtual void BookEverythingForDifferentialFlow();
    virtual void BookEverythingFor2DDifferentialFlow();
    virtual void BookEverythingForDistributions(); 
    virtual void BookEverythingForVarious();
    virtual void BookEverythingForNestedLoops();   
    virtual void BookEverythingForMixedHarmonics();
    virtual void BookEverythingForControlHistograms();
    virtual void BookEverythingForBootstrap();
    virtual void StoreIntFlowFlags();
    virtual void StoreDiffFlowFlags();
    virtual void StoreFlagsForDistributions();   
    virtual void StoreHarmonic();
    virtual void StoreMixedHarmonicsFlags();
    virtual void StoreControlHistogramsFlags();
    virtual void StoreBootstrapFlags();
  // 2.) method Make() and methods called within Make():
  virtual void Make(AliFlowEventSimple *anEvent);
    // 2a.) Common:
    virtual void CheckPointersUsedInMake();     
    virtual void FillAverageMultiplicities(Int_t nRP);
    virtual void FillCommonControlHistograms(AliFlowEventSimple *anEvent);
    virtual void FillControlHistograms(AliFlowEventSimple *anEvent);
    virtual void ResetEventByEventQuantities();
    // 2b.) Reference flow:
    virtual void CalculateIntFlowCorrelations(); 
    virtual void CalculateIntFlowCorrelationsUsingParticleWeights();
    virtual void CalculateIntFlowProductOfCorrelations();
    virtual void CalculateIntFlowSumOfEventWeights();
    virtual void CalculateIntFlowSumOfProductOfEventWeights();
    virtual void CalculateIntFlowCorrectionsForNUACosTerms();
    virtual void CalculateIntFlowCorrectionsForNUACosTermsUsingParticleWeights();
    virtual void CalculateIntFlowCorrectionsForNUASinTerms();  
    virtual void CalculateIntFlowCorrectionsForNUASinTermsUsingParticleWeights();    
    virtual void CalculateIntFlowProductOfCorrectionTermsForNUA();
    virtual void CalculateIntFlowSumOfEventWeightsNUA();
    virtual void CalculateIntFlowSumOfProductOfEventWeightsNUA();
    virtual void CalculateMixedHarmonics();
    // 2c.) Cross-checking reference flow correlations with nested loops: 
    virtual void EvaluateIntFlowNestedLoops(AliFlowEventSimple* const anEvent);
    virtual void EvaluateIntFlowCorrelationsWithNestedLoops(AliFlowEventSimple* const anEvent); 
    virtual void EvaluateIntFlowCorrelationsWithNestedLoopsUsingParticleWeights(AliFlowEventSimple* const anEvent); 
    virtual void EvaluateIntFlowCorrectionsForNUAWithNestedLoops(AliFlowEventSimple* const anEvent); 
    virtual void EvaluateIntFlowCorrectionsForNUAWithNestedLoopsUsingParticleWeights(AliFlowEventSimple* const anEvent);
    virtual void EvaluateMixedHarmonicsWithNestedLoops(AliFlowEventSimple* const anEvent); 
    // 2d.) Differential flow:
    virtual void CalculateDiffFlowCorrelations(TString type, TString ptOrEta); // type = RP or POI
    virtual void CalculateDiffFlowCorrelationsUsingParticleWeights(TString type, TString ptOrEta); // type = RP or POI 
    virtual void CalculateDiffFlowProductOfCorrelations(TString type, TString ptOrEta); // type = RP or POI
    virtual void CalculateDiffFlowSumOfEventWeights(TString type, TString ptOrEta); // type = RP or POI
    virtual void CalculateDiffFlowSumOfProductOfEventWeights(TString type, TString ptOrEta); // type = RP or POI
    virtual void CalculateDiffFlowCorrectionsForNUACosTerms(TString type, TString ptOrEta);
    virtual void CalculateDiffFlowCorrectionsForNUACosTermsUsingParticleWeights(TString type, TString ptOrEta);
    virtual void CalculateDiffFlowCorrectionsForNUASinTerms(TString type, TString ptOrEta);  
    virtual void CalculateDiffFlowCorrectionsForNUASinTermsUsingParticleWeights(TString type, TString ptOrEta);  
    // 2e.) 2D differential flow:
    virtual void Calculate2DDiffFlowCorrelations(TString type); // type = RP or POI
    // 2f.) Other differential correlators (i.e. Teaney-Yan correlator):    
    virtual void CalculateOtherDiffCorrelators(TString type, TString ptOrEta); // type = RP or POI    
    // 2g.) Distributions of reference flow correlations:
    virtual void StoreDistributionsOfCorrelations();
    // 2h.) Store phi distibution for one event to vizualize flow:
    virtual void StorePhiDistributionForOneEvent(AliFlowEventSimple* const anEvent);    
    // 2i.) Cross-checking differential flow correlations with nested loops:
    virtual void EvaluateDiffFlowNestedLoops(AliFlowEventSimple* const anEvent);
    virtual void EvaluateDiffFlowCorrelationsWithNestedLoops(AliFlowEventSimple* const anEvent, TString type, TString ptOrEta);
    virtual void EvaluateDiffFlowCorrelationsWithNestedLoopsUsingParticleWeights(AliFlowEventSimple* const anEvent, TString type, TString ptOrEta); 
    virtual void EvaluateDiffFlowCorrectionTermsForNUAWithNestedLoops(AliFlowEventSimple* const anEvent, TString type, TString ptOrEta);
    virtual void EvaluateDiffFlowCorrectionTermsForNUAWithNestedLoopsUsingParticleWeights(AliFlowEventSimple* const anEvent, TString type, TString ptOrEta);
    virtual void EvaluateOtherDiffCorrelatorsWithNestedLoops(AliFlowEventSimple* const anEvent, TString type, TString ptOrEta);
  // 3.) method Finish() and methods called within Finish():
  virtual void Finish();
    virtual void CheckPointersUsedInFinish();     
    // 3a.) integrated flow:
    virtual void FinalizeCorrelationsIntFlow();
    virtual void FinalizeCorrectionTermsForNUAIntFlow(); 
    virtual void CalculateCovariancesIntFlow();  
    virtual void CalculateCovariancesNUAIntFlow();  
    virtual void CalculateCumulantsIntFlow(); 
	virtual void CalculateReferenceFlow(); 
    virtual void FillCommonHistResultsIntFlow();
    //  nua:   
    virtual void CalculateQcumulantsCorrectedForNUAIntFlow(); 
    virtual void PrintFinalResultsForIntegratedFlow(TString type);
    virtual void CrossCheckIntFlowCorrelations();
    virtual void CrossCheckIntFlowExtraCorrelations(); // extra correlations which appear only when particle weights are used
    virtual void CrossCheckIntFlowCorrectionTermsForNUA(); 
    // 3b.) differential flow:
    virtual void FinalizeReducedCorrelations(TString type, TString ptOrEta);
    virtual void CalculateDiffFlowCovariances(TString type, TString ptOrEta); 
    virtual void CalculateDiffFlowCumulants(TString type, TString ptOrEta); 
    virtual void CalculateDiffFlow(TString type, TString ptOrEta); 
    virtual void FinalizeCorrectionTermsForNUADiffFlow(TString type, TString ptOrEta); 
    virtual void CalculateDiffFlowCumulantsCorrectedForNUA(TString type, TString ptOrEta);   
    virtual void CalculateDiffFlowCorrectedForNUA(TString type, TString ptOrEta); 
    virtual void CalculateFinalResultsForRPandPOIIntegratedFlow(TString type); // to be improved (add also possibility to integrate over eta yield)
    virtual void FillCommonHistResultsDiffFlow(TString type);   
    virtual void CrossCheckDiffFlowCorrelations(TString type, TString ptOrEta);
    virtual void PrintNumberOfParticlesInSelectedBin();     
    virtual void CrossCheckDiffFlowCorrectionTermsForNUA(TString type, TString ptOrEta); 
    // 3c.) 2D:
    virtual void Calculate2DDiffFlowCumulants(TString type);    
    virtual void Calculate2DDiffFlow(TString type);    
    // 3d.) Other differential correlators:
    virtual void CrossCheckOtherDiffCorrelators(TString type, TString ptOrEta);
    // 3e.) Mixed harmonics:
    virtual void CalculateCumulantsMixedHarmonics(); 
    // 3f.) Bootstrap:
    virtual void CalculateCumulantsForBootstrap();
    
  // 4.)  method GetOutputHistograms() and methods called within GetOutputHistograms(): 
  virtual void GetOutputHistograms(TList *outputListHistos);
    virtual void GetPointersForCommonHistograms(); 
    virtual void GetPointersForParticleWeightsHistograms();
    virtual void GetPointersForIntFlowHistograms(); 
    virtual void GetPointersForDiffFlowHistograms(); 
    virtual void GetPointersFor2DDiffFlowHistograms(); 
    virtual void GetPointersForOtherDiffCorrelators(); 
    virtual void GetPointersForNestedLoopsHistograms(); 
    virtual void GetPointersForMixedHarmonicsHistograms(); 
    virtual void GetPointersForControlHistograms(); 
    virtual void GetPointersForBootstrap(); 
    
  // 5.) other methods:   
  TProfile* MakePtProjection(TProfile2D *profilePtEta) const;
  TProfile* MakeEtaProjection(TProfile2D *profilePtEta) const;
  virtual void WriteHistograms(TString outputFileName);
  virtual void WriteHistograms(TDirectoryFile *outputFileName);
  
  // **** SETTERS and GETTERS ****
  
  // 0.) base:
  void SetHistList(TList* const hlist) {this->fHistList = hlist;} 
  TList* GetHistList() const {return this->fHistList;} 
  
  // 1.) common:
  void SetBookOnlyBasicCCH(Bool_t const bobcch) {this->fBookOnlyBasicCCH = bobcch;};
  Bool_t GetBookOnlyBasicCCH() const {return this->fBookOnlyBasicCCH;};  
  void SetCommonHists(AliFlowCommonHist* const ch) {this->fCommonHists = ch;};
  AliFlowCommonHist* GetCommonHists() const {return this->fCommonHists;};
  void SetCommonHists2nd(AliFlowCommonHist* const ch2nd) {this->fCommonHists2nd = ch2nd;};
  AliFlowCommonHist* GetCommonHists2nd() const {return this->fCommonHists2nd;};
  void SetCommonHists4th(AliFlowCommonHist* const ch4th) {this->fCommonHists4th = ch4th;};
  AliFlowCommonHist* GetCommonHists4th() const {return this->fCommonHists4th;};
  void SetCommonHists6th(AliFlowCommonHist* const ch6th) {this->fCommonHists6th = ch6th;};
  AliFlowCommonHist* GetCommonHists6th() const {return this->fCommonHists6th;};
  void SetCommonHists8th(AliFlowCommonHist* const ch8th) {this->fCommonHists8th = ch8th;};
  AliFlowCommonHist* GetCommonHists8th() const {return this->fCommonHists8th;};
  void SetCommonHistsResults2nd(AliFlowCommonHistResults* const chr2nd) {this->fCommonHistsResults2nd = chr2nd;};
  AliFlowCommonHistResults* GetCommonHistsResults2nd() const {return this->fCommonHistsResults2nd;};
  void SetCommonHistsResults4th(AliFlowCommonHistResults* const chr4th) {this->fCommonHistsResults4th = chr4th;};
  AliFlowCommonHistResults* GetCommonHistsResults4th() const {return this->fCommonHistsResults4th;};
  void SetCommonHistsResults6th(AliFlowCommonHistResults* const chr6th) {this->fCommonHistsResults6th = chr6th;};
  AliFlowCommonHistResults* GetCommonHistsResults6th() const {return this->fCommonHistsResults6th;};
  void SetCommonHistsResults8th(AliFlowCommonHistResults* const chr8th) {this->fCommonHistsResults8th = chr8th;};
  AliFlowCommonHistResults* GetCommonHistsResults8th() const {return this->fCommonHistsResults8th;};
  void SetCommonConstants(TProfile* const cc) {this->fCommonConstants = cc;};
  TProfile* GetCommonConstants() const {return this->fCommonConstants;};  
  void SetFillMultipleControlHistograms(Bool_t const fmch) {this->fFillMultipleControlHistograms = fmch;};
  Bool_t GetFillMultipleControlHistograms() const {return this->fFillMultipleControlHistograms;};  
  void SetHarmonic(Int_t const harmonic) {this->fHarmonic = harmonic;};
  Int_t GetHarmonic() const {return this->fHarmonic;};
  void SetAnalysisLabel(const char *aLabel) {this->fAnalysisLabel->Append(*aLabel);}; // to be improved (Append(*aLabel) changed into Append(aLabel)) 
  TString *GetAnalysisLabel() const {return this->fAnalysisLabel;};
  void SetPrintFinalResults(Bool_t const printOrNot, Int_t const i) {this->fPrintFinalResults[i] = printOrNot;};
  Bool_t GetPrintFinalResults(Int_t i) const {return this->fPrintFinalResults[i];};  
   
  // 2a.) particle weights:
  void SetWeightsList(TList* const wlist) {this->fWeightsList = (TList*)wlist->Clone();}
  TList* GetWeightsList() const {return this->fWeightsList;}  
  void SetUsePhiWeights(Bool_t const uPhiW) {this->fUsePhiWeights = uPhiW;};
  Bool_t GetUsePhiWeights() const {return this->fUsePhiWeights;};
  void SetUsePtWeights(Bool_t const uPtW) {this->fUsePtWeights = uPtW;};
  Bool_t GetUsePtWeights() const {return this->fUsePtWeights;};
  void SetUseEtaWeights(Bool_t const uEtaW) {this->fUseEtaWeights = uEtaW;};
  Bool_t GetUseEtaWeights() const {return this->fUseEtaWeights;};
  void SetUseTrackWeights(Bool_t const uTrackW) {this->fUseTrackWeights = uTrackW;};
  Bool_t GetUseTrackWeights() const {return this->fUseTrackWeights;};
  void SetUseParticleWeights(TProfile* const uPW) {this->fUseParticleWeights = uPW;};
  TProfile* GetUseParticleWeights() const {return this->fUseParticleWeights;};
  void SetPhiWeights(TH1F* const histPhiWeights) {this->fPhiWeights = histPhiWeights;};
  TH1F* GetPhiWeights() const {return this->fPhiWeights;};
  void SetPtWeights(TH1D* const histPtWeights) {this->fPtWeights = histPtWeights;};
  TH1D* GetPtWeights() const {return this->fPtWeights;};
  void SetEtaWeights(TH1D* const histEtaWeights) {this->fEtaWeights = histEtaWeights;};
  TH1D* GetEtaWeights() const {return this->fEtaWeights;};
  
  // 2b.) event weights:
  void SetMultiplicityWeight(const char *multiplicityWeight) {*this->fMultiplicityWeight = multiplicityWeight;};
  void SetMultiplicityIs(AliFlowCommonConstants::ERefMultSource mi) {this->fMultiplicityIs = mi;};
  
  // 3.) Reference flow:
  // Flags:
  void SetIntFlowFlags(TProfile* const intFlowFlags) {this->fIntFlowFlags = intFlowFlags;};
  TProfile* GetIntFlowFlags() const {return this->fIntFlowFlags;};
  void SetApplyCorrectionForNUA(Bool_t const applyCorrectionForNUA) {this->fApplyCorrectionForNUA = applyCorrectionForNUA;};
  Bool_t GetApplyCorrectionForNUA() const {return this->fApplyCorrectionForNUA;};
  void SetApplyCorrectionForNUAVsM(Bool_t const applyCorrectionForNUAVsM) {this->fApplyCorrectionForNUAVsM = applyCorrectionForNUAVsM;};
  Bool_t GetApplyCorrectionForNUAVsM() const {return this->fApplyCorrectionForNUAVsM;};  
  void SetnBinsMult(Int_t const nbm) {this->fnBinsMult = nbm;};
  Int_t GetnBinsMult() const {return this->fnBinsMult;};  
  void SetMinMult(Double_t const minm) {this->fMinMult = minm;};
  Double_t GetMinMult() const {return this->fMinMult;};
  void SetMaxMult(Double_t const maxm) {this->fMaxMult = maxm;};
  Double_t GetMaxMult() const {return this->fMaxMult;};
  void SetPropagateErrorAlsoFromNIT(Bool_t const peafNIT) {this->fPropagateErrorAlsoFromNIT = peafNIT;};
  Bool_t GetPropagateErrorAlsoFromNIT() const {return this->fPropagateErrorAlsoFromNIT;};  
  void SetCalculateCumulantsVsM(Bool_t const ccvm) {this->fCalculateCumulantsVsM = ccvm;};
  Bool_t GetCalculateCumulantsVsM() const {return this->fCalculateCumulantsVsM;};   
  void SetCalculateAllCorrelationsVsM(Bool_t const cacvm) {this->fCalculateAllCorrelationsVsM = cacvm;};
  Bool_t GetCalculateAllCorrelationsVsM() const {return this->fCalculateAllCorrelationsVsM;};   
  void SetMinimumBiasReferenceFlow(Bool_t const mmrf) {this->fMinimumBiasReferenceFlow = mmrf;};
  Bool_t GetMinimumBiasReferenceFlow() const {return this->fMinimumBiasReferenceFlow;};  
  void SetForgetAboutCovariances(Bool_t const fac) {this->fForgetAboutCovariances = fac;};
  Bool_t GetForgetAboutCovariances() const {return this->fForgetAboutCovariances;};
  void SetStorePhiDistributionForOneEvent(Bool_t const spdfoe) {this->fStorePhiDistributionForOneEvent = spdfoe;};
  Bool_t GetStorePhiDistributionForOneEvent() const {return this->fStorePhiDistributionForOneEvent;};
  void SetPhiDistributionForOneEventSettings(Double_t const pdfoes, Int_t const i) {this->fPhiDistributionForOneEventSettings[i] = pdfoes;};
  Double_t GetPhiDistributionForOneEventSettings(Int_t const i) const {return this->fPhiDistributionForOneEventSettings[i];};
  void SetExactNoRPs(Int_t const enr) {this->fExactNoRPs = enr;};
  Int_t GetExactNoRPs() const {return this->fExactNoRPs;};
  void SetUse2DHistograms(Bool_t const u2dh){this->fUse2DHistograms = u2dh;if(u2dh){this->fStoreControlHistograms = kTRUE;}};
  Bool_t GetUse2DHistograms() const {return this->fUse2DHistograms;};
  void SetFillProfilesVsMUsingWeights(Bool_t const fpvmuw){this->fFillProfilesVsMUsingWeights = fpvmuw;};
  Bool_t GetFillProfilesVsMUsingWeights() const {return this->fFillProfilesVsMUsingWeights;};
  void SetUseQvectorTerms(Bool_t const uqvt){this->fUseQvectorTerms = uqvt;if(uqvt){this->fStoreControlHistograms = kTRUE;}};
  Bool_t GetUseQvectorTerms() const {return this->fUseQvectorTerms;};

  // Reference flow profiles:
  void SetAvMultiplicity(TProfile* const avMultiplicity) {this->fAvMultiplicity = avMultiplicity;};
  TProfile* GetAvMultiplicity() const {return this->fAvMultiplicity;};
  void SetIntFlowCorrelationsPro(TProfile* const intFlowCorrelationsPro) {this->fIntFlowCorrelationsPro = intFlowCorrelationsPro;};
  TProfile* GetIntFlowCorrelationsPro() const {return this->fIntFlowCorrelationsPro;};
  void SetIntFlowSquaredCorrelationsPro(TProfile* const ifscp) {this->fIntFlowSquaredCorrelationsPro = ifscp;};
  TProfile* GetIntFlowSquaredCorrelationsPro() const {return this->fIntFlowSquaredCorrelationsPro;};
  void SetIntFlowCorrelationsVsMPro(TProfile* const ifcvp, Int_t const ci) {this->fIntFlowCorrelationsVsMPro[ci] = ifcvp;};
  TProfile* GetIntFlowCorrelationsVsMPro(Int_t const ci) const {return this->fIntFlowCorrelationsVsMPro[ci];};    
  void SetIntFlowSquaredCorrelationsVsMPro(TProfile* const ifscvp, Int_t const ci) {this->fIntFlowSquaredCorrelationsVsMPro[ci] = ifscvp;};
  TProfile* GetIntFlowSquaredCorrelationsVsMPro(Int_t const ci) const {return this->fIntFlowSquaredCorrelationsVsMPro[ci];};   
  void SetIntFlowCorrelationsAllPro(TProfile* const intFlowCorrelationsAllPro) {this->fIntFlowCorrelationsAllPro = intFlowCorrelationsAllPro;};
  TProfile* GetIntFlowCorrelationsAllPro() const {return this->fIntFlowCorrelationsAllPro;};  
  void SetIntFlowExtraCorrelationsPro(TProfile* const intFlowExtraCorrelationsPro) {this->fIntFlowExtraCorrelationsPro = intFlowExtraCorrelationsPro;};
  TProfile* GetIntFlowExtraCorrelationsPro() const {return this->fIntFlowExtraCorrelationsPro;};  
  void SetIntFlowProductOfCorrelationsPro(TProfile* const intFlowProductOfCorrelationsPro) {this->fIntFlowProductOfCorrelationsPro = intFlowProductOfCorrelationsPro;};
  TProfile* GetIntFlowProductOfCorrelationsPro() const {return this->fIntFlowProductOfCorrelationsPro;};      
  void SetIntFlowProductOfCorrelationsVsMPro(TProfile* const ifpocvm, Int_t const pi) {this->fIntFlowProductOfCorrelationsVsMPro[pi] = ifpocvm;};
  TProfile* GetIntFlowProductOfCorrelationsVsMPro(Int_t const pi) const {return this->fIntFlowProductOfCorrelationsVsMPro[pi];};    
  void SetIntFlowProductOfCorrectionTermsForNUAPro(TProfile* const ifpoctfNUA) {this->fIntFlowProductOfCorrectionTermsForNUAPro = ifpoctfNUA;};
  TProfile* GetIntFlowProductOfCorrectionTermsForNUAPro() const {return this->fIntFlowProductOfCorrectionTermsForNUAPro;};  
  void SetIntFlowCorrectionTermsForNUAPro(TProfile* const ifctfnp, Int_t const sc) {this->fIntFlowCorrectionTermsForNUAPro[sc] = ifctfnp;};
  TProfile* GetIntFlowCorrectionTermsForNUAPro(Int_t sc) const {return this->fIntFlowCorrectionTermsForNUAPro[sc];};    
  void SetIntFlowCorrectionTermsForNUAVsMPro(TProfile* const ifctfnpvm, Int_t const sc, Int_t const ci) {this->fIntFlowCorrectionTermsForNUAVsMPro[sc][ci] = ifctfnpvm;};
  TProfile* GetIntFlowCorrectionTermsForNUAVsMPro(Int_t sc, Int_t ci) const {return this->fIntFlowCorrectionTermsForNUAVsMPro[sc][ci];};    
  // integrated flow histograms holding all results:
  void SetIntFlowCorrelationsHist(TH1D* const intFlowCorrelationsHist) {this->fIntFlowCorrelationsHist = intFlowCorrelationsHist;};
  TH1D* GetIntFlowCorrelationsHist() const {return this->fIntFlowCorrelationsHist;};
  void SetIntFlowCorrelationsVsMHist(TH1D* const ifcvmh, Int_t const ci) {this->fIntFlowCorrelationsVsMHist[ci] = ifcvmh;};
  TH1D* GetIntFlowCorrelationsVsMHist(Int_t const ci) const {return this->fIntFlowCorrelationsVsMHist[ci];};    
  void SetIntFlowCorrelationsAllHist(TH1D* const intFlowCorrelationsAllHist) {this->fIntFlowCorrelationsAllHist = intFlowCorrelationsAllHist;};
  TH1D* GetIntFlowCorrelationsAllHist() const {return this->fIntFlowCorrelationsAllHist;};  
  void SetIntFlowCorrectionTermsForNUAHist(TH1D* const ifctfnh, Int_t const sc) {this->fIntFlowCorrectionTermsForNUAHist[sc] = ifctfnh;};
  TH1D* GetIntFlowCorrectionTermsForNUAHist(Int_t sc) const {return this->fIntFlowCorrectionTermsForNUAHist[sc];};  
  void SetIntFlowCovariances(TH1D* const intFlowCovariances) {this->fIntFlowCovariances = intFlowCovariances;};
  TH1D* GetIntFlowCovariances() const {return this->fIntFlowCovariances;};
  void SetIntFlowSumOfEventWeights(TH1D* const intFlowSumOfEventWeights, Int_t const power) {this->fIntFlowSumOfEventWeights[power] = intFlowSumOfEventWeights;};
  TH1D* GetIntFlowSumOfEventWeights(Int_t power) const {return this->fIntFlowSumOfEventWeights[power];};
  void SetIntFlowSumOfProductOfEventWeights(TH1D* const intFlowSumOfProductOfEventWeights) {this->fIntFlowSumOfProductOfEventWeights = intFlowSumOfProductOfEventWeights;};
  TH1D* GetIntFlowSumOfProductOfEventWeights() const {return this->fIntFlowSumOfProductOfEventWeights;}; 
  void SetIntFlowCovariancesVsM(TH1D* const ifcvm, Int_t ci) {this->fIntFlowCovariancesVsM[ci] = ifcvm;};
  TH1D* GetIntFlowCovariancesVsM(Int_t ci) const {return this->fIntFlowCovariancesVsM[ci];};    
  void SetIntFlowSumOfEventWeightsVsM(TH1D* const ifsoewvm, Int_t si, Int_t lc) {this->fIntFlowSumOfEventWeightsVsM[si][lc] = ifsoewvm;};
  TH1D* GetIntFlowSumOfEventWeightsVsM(Int_t si, Int_t lc) const {return this->fIntFlowSumOfEventWeightsVsM[si][lc];};    
  void SetIntFlowSumOfProductOfEventWeightsVsM(TH1D* const ifsopoevm, Int_t si) {this->fIntFlowSumOfProductOfEventWeightsVsM[si] = ifsopoevm;};
  TH1D* GetIntFlowSumOfProductOfEventWeightsVsM(Int_t si) const {return this->fIntFlowSumOfProductOfEventWeightsVsM[si];};      
  void SetIntFlowCovariancesNUA(TH1D* const intFlowCovariancesNUA) {this->fIntFlowCovariancesNUA = intFlowCovariancesNUA;};
  TH1D* GetIntFlowCovariancesNUA() const {return this->fIntFlowCovariancesNUA;};
  void SetIntFlowSumOfEventWeightsNUA(TH1D* const ifsoewNUA, Int_t const sc, Int_t const power) {this->fIntFlowSumOfEventWeightsNUA[sc][power] = ifsoewNUA;};
  TH1D* GetIntFlowSumOfEventWeightsNUA(Int_t sc, Int_t power) const {return this->fIntFlowSumOfEventWeightsNUA[sc][power];};
  void SetIntFlowSumOfProductOfEventWeightsNUA(TH1D* const ifsopoewNUA) {this->fIntFlowSumOfProductOfEventWeightsNUA = ifsopoewNUA;};
  TH1D* GetIntFlowSumOfProductOfEventWeightsNUA() const {return this->fIntFlowSumOfProductOfEventWeightsNUA;}; 
  void SetIntFlowQcumulants(TH1D* const intFlowQcumulants) {this->fIntFlowQcumulants = intFlowQcumulants;};
  TH1D* GetIntFlowQcumulants() const {return this->fIntFlowQcumulants;}; 
  void SetIntFlowQcumulantsVsM(TH1D* const intFlowQcumulantsVsM, Int_t co) {this->fIntFlowQcumulantsVsM[co] = intFlowQcumulantsVsM;};
  TH1D* GetIntFlowQcumulantsVsM(Int_t co) const {return this->fIntFlowQcumulantsVsM[co];};  
  void SetIntFlowQcumulantsRebinnedInM(TH1D* const ifqcrim) {this->fIntFlowQcumulantsRebinnedInM = ifqcrim;};
  TH1D* GetIntFlowQcumulantsRebinnedInM() const {return this->fIntFlowQcumulantsRebinnedInM;};    
  void SetIntFlowQcumulantsErrorSquaredRatio(TH1D* const ifqcesr) {this->fIntFlowQcumulantsErrorSquaredRatio = ifqcesr;};
  TH1D* GetIntFlowQcumulantsErrorSquaredRatio() const {return this->fIntFlowQcumulantsErrorSquaredRatio;}; 
  void SetIntFlow(TH1D* const intFlow) {this->fIntFlow = intFlow;};
  TH1D* GetIntFlow() const {return this->fIntFlow;};
  void SetIntFlowVsM(TH1D* const intFlowVsM, Int_t co) {this->fIntFlowVsM[co] = intFlowVsM;};
  TH1D* GetIntFlowVsM(Int_t co) const {return this->fIntFlowVsM[co];};     
  void SetIntFlowRebinnedInM(TH1D* const ifrim) {this->fIntFlowRebinnedInM = ifrim;};
  TH1D* GetIntFlowRebinnedInM() const {return this->fIntFlowRebinnedInM;};
  void SetIntFlowDetectorBias(TH1D* const ifdb) {this->fIntFlowDetectorBias = ifdb;};
  TH1D* GetIntFlowDetectorBias() const {return this->fIntFlowDetectorBias;};  
  void SetIntFlowDetectorBiasVsM(TH1D* const ifdbvm, Int_t ci) {this->fIntFlowDetectorBiasVsM[ci] = ifdbvm;};
  TH1D* GetIntFlowDetectorBiasVsM(Int_t ci) const {return this->fIntFlowDetectorBiasVsM[ci];};  
  // 4.) Differential flow:
  //  Flags:
  void SetDiffFlowFlags(TProfile* const diffFlowFlags) {this->fDiffFlowFlags = diffFlowFlags;};
  TProfile* GetDiffFlowFlags() const {return this->fDiffFlowFlags;};
  void SetCalculateDiffFlow(Bool_t const cdf) {this->fCalculateDiffFlow = cdf;};
  Bool_t GetCalculateDiffFlow() const {return this->fCalculateDiffFlow;};
  void SetCalculate2DDiffFlow(Bool_t const c2ddf) {this->fCalculate2DDiffFlow = c2ddf;};
  Bool_t GetCalculate2DDiffFlow() const {return this->fCalculate2DDiffFlow;};
  void SetCalculateDiffFlowVsEta(Bool_t const cdfve) {this->fCalculateDiffFlowVsEta = cdfve;};
  Bool_t GetCalculateDiffFlowVsEta() const {return this->fCalculateDiffFlowVsEta;};
  //  Profiles:
  //   1D:
  void SetDiffFlowCorrelationsPro(TProfile* const diffFlowCorrelationsPro, Int_t const i, Int_t const j, Int_t const k) {this->fDiffFlowCorrelationsPro[i][j][k] = diffFlowCorrelationsPro;};
  TProfile* GetDiffFlowCorrelationsPro(Int_t i, Int_t j, Int_t k) const {return this->fDiffFlowCorrelationsPro[i][j][k];};
  void SetDiffFlowSquaredCorrelationsPro(TProfile* const diffFlowSquaredCorrelationsPro, Int_t const i, Int_t const j, Int_t const k) {this->fDiffFlowSquaredCorrelationsPro[i][j][k] = diffFlowSquaredCorrelationsPro;};
  TProfile* GetDiffFlowSquaredCorrelationsPro(Int_t i, Int_t j, Int_t k) const {return this->fDiffFlowSquaredCorrelationsPro[i][j][k];}; 
  void SetDiffFlowProductOfCorrelationsPro(TProfile* const dfpocp, Int_t const i, Int_t const j, Int_t const k, Int_t const l) {this->fDiffFlowProductOfCorrelationsPro[i][j][k][l] = dfpocp;};
  TProfile* GetDiffFlowProductOfCorrelationsPro(Int_t i, Int_t j, Int_t k, Int_t l) const {return this->fDiffFlowProductOfCorrelationsPro[i][j][k][l];};
  void SetDiffFlowCorrectionTermsForNUAPro(TProfile* const dfctfnp, Int_t const i, Int_t const j, Int_t const k, Int_t const l) {this->fDiffFlowCorrectionTermsForNUAPro[i][j][k][l] = dfctfnp;};
  TProfile* GetDiffFlowCorrectionTermsForNUAPro(Int_t i, Int_t j, Int_t k, Int_t l) const {return this->fDiffFlowCorrectionTermsForNUAPro[i][j][k][l];};  
  //   2D:
  void Set2DDiffFlowCorrelationsPro(TProfile2D* const p2ddfcp, Int_t const i, Int_t const k) {this->f2DDiffFlowCorrelationsPro[i][k] = p2ddfcp;};
  TProfile2D* Get2DDiffFlowCorrelationsPro(Int_t i, Int_t k) const {return this->f2DDiffFlowCorrelationsPro[i][k];};
  //   Other differential correlators:
  void SetOtherDiffCorrelators(TProfile* const odc,Int_t const i,Int_t const j,Int_t const k,Int_t const l) {this->fOtherDiffCorrelators[i][j][k][l] = odc;};
  TProfile* GetOtherDiffCorrelators(Int_t i,Int_t j,Int_t k,Int_t l) const {return this->fOtherDiffCorrelators[i][j][k][l];};   
  // histograms:
  void SetDiffFlowCorrelationsHist(TH1D* const diffFlowCorrelationsHist, Int_t const i, Int_t const j, Int_t const k) {this->fDiffFlowCorrelationsHist[i][j][k] = diffFlowCorrelationsHist;};
  TH1D* GetDiffFlowCorrelationsHist(Int_t i, Int_t j, Int_t k) const {return this->fDiffFlowCorrelationsHist[i][j][k];};
  void SetDiffFlowCovariances(TH1D* const diffFlowCovariances, Int_t const i, Int_t const j, Int_t const k) {this->fDiffFlowCovariances[i][j][k] = diffFlowCovariances;};
  TH1D* GetDiffFlowCovariances(Int_t i, Int_t j, Int_t k) const {return this->fDiffFlowCovariances[i][j][k];};  
  void SetDiffFlowCumulants(TH1D* const diffFlowCumulants, Int_t const i, Int_t const j, Int_t const k) {this->fDiffFlowCumulants[i][j][k] = diffFlowCumulants;};
  TH1D* GetDiffFlowCumulants(Int_t i, Int_t j, Int_t k) const {return this->fDiffFlowCumulants[i][j][k];};
  void SetDiffFlowDetectorBias(TH1D* const dfdb, Int_t const i, Int_t const j, Int_t const k) {this->fDiffFlowDetectorBias[i][j][k] = dfdb;};
  TH1D* GetDiffFlowDetectorBias(Int_t i, Int_t j, Int_t k) const {return this->fDiffFlowDetectorBias[i][j][k];};
  void SetDiffFlow(TH1D* const diffFlow, Int_t const i, Int_t const j, Int_t const k) {this->fDiffFlow[i][j][k] = diffFlow;};
  TH1D* GetDiffFlow(Int_t i, Int_t j, Int_t k) const {return this->fDiffFlow[i][j][k];};
  void SetDiffFlowSumOfEventWeights(TH1D* const dfsoew, Int_t const i, Int_t const j, Int_t const k, Int_t const l) {this->fDiffFlowSumOfEventWeights[i][j][k][l] = dfsoew;};
  TH1D* GetDiffFlowSumOfEventWeights(Int_t i, Int_t j, Int_t k, Int_t l) const {return this->fDiffFlowSumOfEventWeights[i][j][k][l];};
  void SetDiffFlowSumOfProductOfEventWeights(TH1D* const dfsopoew, Int_t const i, Int_t const j, Int_t const k, Int_t const l) {this->fDiffFlowSumOfProductOfEventWeights[i][j][k][l] = dfsopoew;};
  TH1D* GetDiffFlowSumOfProductOfEventWeights(Int_t i, Int_t j, Int_t k, Int_t l) const {return this->fDiffFlowSumOfProductOfEventWeights[i][j][k][l];};
  void SetDiffFlowCorrectionTermsForNUAHist(TH1D* const dfctfnh, Int_t const i, Int_t const j, Int_t const k, Int_t const l) {this->fDiffFlowCorrectionTermsForNUAHist[i][j][k][l] = dfctfnh;};
  TH1D* GetDiffFlowCorrectionTermsForNUAHist(Int_t i, Int_t j, Int_t k, Int_t l) const {return this->fDiffFlowCorrectionTermsForNUAHist[i][j][k][l];};  
  //  2D:
  void Set2DDiffFlowCumulants(TH2D* const h2ddfc, Int_t const i, Int_t const j) {this->f2DDiffFlowCumulants[i][j] = h2ddfc;};
  TH2D* Get2DDiffFlowCumulants(Int_t i, Int_t j) const {return this->f2DDiffFlowCumulants[i][j];};  
  void Set2DDiffFlow(TH2D* const h2ddf, Int_t const i, Int_t const j) {this->f2DDiffFlow[i][j] = h2ddf;};
  TH2D* Get2DDiffFlow(Int_t i, Int_t j) const {return this->f2DDiffFlow[i][j];};  
  // 5.) distributions of correlations:
  // profile:
  void SetDistributionsFlags(TProfile* const distributionsFlags) {this->fDistributionsFlags = distributionsFlags;};
  TProfile* GetDistributionsFlags() const {return this->fDistributionsFlags;};  
  // flags:
  void SetStoreDistributions(Bool_t const storeDistributions) {this->fStoreDistributions = storeDistributions;};
  Bool_t GetStoreDistributions() const {return this->fStoreDistributions;};
  // # of bins for correlation axis in fDistributions[4], fCorrelation2468VsMult[4] and fCorrelationProduct2468VsMult[1]:
  void SetnBinsForCorrelations(Int_t const nb) {this->fnBinsForCorrelations = nb;};
  Int_t GetnBinsForCorrelations() const {return this->fnBinsForCorrelations;};
  // histograms:
  void SetDistributions(TH1D* const distributions, Int_t const i) {this->fDistributions[i] = distributions;};
  TH1D* GetDistributions(Int_t i) const {return this->fDistributions[i];};  
  // min and max values of correlations (ci is correlations index [0=<2>,1=<4>,2=<6>,3=<8>]):
  void SetMinValueOfCorrelation(Int_t const ci, Double_t const minValue) {this->fMinValueOfCorrelation[ci] = minValue;};
  Double_t GetMinValueOfCorrelation(Int_t ci) const {return this->fMinValueOfCorrelation[ci];};
  void SetMaxValueOfCorrelation(Int_t const ci, Double_t const maxValue) {this->fMaxValueOfCorrelation[ci] = maxValue;};
  Double_t GetMaxValueOfCorrelation(Int_t ci) const {return this->fMaxValueOfCorrelation[ci];};    
  // min and max values of correlation products:
  void SetMinValueOfCorrelationProduct(Int_t const cpi, Double_t const minValue) {this->fMinValueOfCorrelationProduct[cpi] = minValue;};
  Double_t GetMinValueOfCorrelationProduct(Int_t cpi) const {return this->fMinValueOfCorrelationProduct[cpi];};
  void SetMaxValueOfCorrelationProduct(Int_t const cpi, Double_t const maxValue) {this->fMaxValueOfCorrelationProduct[cpi] = maxValue;};
  Double_t GetMaxValueOfCorrelationProduct(Int_t cpi) const {return this->fMaxValueOfCorrelationProduct[cpi];};
  // min and max values of QvectorTerms:
  void SetMinValueOfQvectorTerms(Int_t const qvti, Double_t const minValue) {this->fMinValueOfQvectorTerms[qvti] = minValue;};
  Double_t GetMinValueOfQvectorTerms(Int_t qvti) const {return this->fMinValueOfQvectorTerms[qvti];};
  void SetMaxValueOfQvectorTerms(Int_t const qvti, Double_t const maxValue) {this->fMaxValueOfQvectorTerms[qvti] = maxValue;};
  Double_t GetMaxValueOfQvectorTerms(Int_t qvti) const {return this->fMaxValueOfQvectorTerms[qvti];};

  // x.) debugging and cross-checking:
  void SetNestedLoopsList(TList* const nllist) {this->fNestedLoopsList = nllist;};
  TList* GetNestedLoopsList() const {return this->fNestedLoopsList;}; 
  void SetEvaluateIntFlowNestedLoops(Bool_t const eifnl) {this->fEvaluateIntFlowNestedLoops = eifnl;};
  Bool_t GetEvaluateIntFlowNestedLoops() const {return this->fEvaluateIntFlowNestedLoops;};
  void SetEvaluateDiffFlowNestedLoops(Bool_t const edfnl) {this->fEvaluateDiffFlowNestedLoops = edfnl;};
  Bool_t GetEvaluateDiffFlowNestedLoops() const {return this->fEvaluateDiffFlowNestedLoops;};  
  void SetMaxAllowedMultiplicity(Int_t const maxAllowedMultiplicity) {this->fMaxAllowedMultiplicity = maxAllowedMultiplicity;};
  Int_t GetMaxAllowedMultiplicity() const {return this->fMaxAllowedMultiplicity;};
  void SetEvaluateNestedLoops(TProfile* const enl) {this->fEvaluateNestedLoops = enl;};
  TProfile* GetEvaluateNestedLoops() const {return this->fEvaluateNestedLoops;}; 
  void SetIntFlowDirectCorrelations(TProfile* const ifdc) {this->fIntFlowDirectCorrelations = ifdc;};
  TProfile* GetIntFlowDirectCorrelations() const {return this->fIntFlowDirectCorrelations;};
  void SetIntFlowExtraDirectCorrelations(TProfile* const ifedc) {this->fIntFlowExtraDirectCorrelations = ifedc;};
  TProfile* GetIntFlowExtraDirectCorrelations() const {return this->fIntFlowExtraDirectCorrelations;};
  void SetIntFlowDirectCorrectionTermsForNUA(TProfile* const ifdctfn, Int_t const sc) {this->fIntFlowDirectCorrectionTermsForNUA[sc] = ifdctfn;};
  TProfile* GetIntFlowDirectCorrectionTermsForNUA(Int_t sc) const {return this->fIntFlowDirectCorrectionTermsForNUA[sc];};  
  void SetCrossCheckInPtBinNo(Int_t const crossCheckInPtBinNo) {this->fCrossCheckInPtBinNo = crossCheckInPtBinNo;};
  Int_t GetCrossCheckInPtBinNo() const {return this->fCrossCheckInPtBinNo;};
  void SetCrossCheckInEtaBinNo(Int_t const crossCheckInEtaBinNo) {this->fCrossCheckInEtaBinNo = crossCheckInEtaBinNo;};
  Int_t GetCrossCheckInEtaBinNo() const {return this->fCrossCheckInEtaBinNo;};
  void SetNoOfParticlesInBin(TH1D* const noOfParticlesInBin) {this->fNoOfParticlesInBin = noOfParticlesInBin;};
  TH1D* GetNoOfParticlesInBin() const {return this->fNoOfParticlesInBin;};  
  void SetDiffFlowDirectCorrelations(TProfile* const diffFlowDirectCorrelations,Int_t const i,Int_t const j,Int_t const k){this->fDiffFlowDirectCorrelations[i][j][k]=diffFlowDirectCorrelations;};
  TProfile* GetDiffFlowDirectCorrelations(Int_t i, Int_t j, Int_t k) const {return this->fDiffFlowDirectCorrelations[i][j][k];};
  void SetDiffFlowDirectCorrectionTermsForNUA(TProfile* const dfdctfn, Int_t const i, Int_t const j, Int_t const k, Int_t const l) {this->fDiffFlowDirectCorrectionTermsForNUA[i][j][k][l] = dfdctfn;};
  TProfile* GetDiffFlowDirectCorrectionTermsForNUA(Int_t i, Int_t j, Int_t k, Int_t l) const {return this->fDiffFlowDirectCorrectionTermsForNUA[i][j][k][l];};          
  void SetOtherDirectDiffCorrelators(TProfile* const oddc, Int_t const i, Int_t const j, Int_t const k, Int_t const l) {this->fOtherDirectDiffCorrelators[i][j][k][l] = oddc;};
  TProfile* GetOtherDirectDiffCorrelators(Int_t i, Int_t j, Int_t k, Int_t l) const {return this->fOtherDirectDiffCorrelators[i][j][k][l];};  
  void SetMixedHarmonicsNestedLoops(TProfile* const mhnl) {this->fMixedHarmonicsNestedLoops = mhnl;};
  TProfile* GetMixedHarmonicsNestedLoops() const {return this->fMixedHarmonicsNestedLoops;};

  // 9.) Mixed harmonics:
  void SetMixedHarmonicsList(TList* const mhlist) {this->fMixedHarmonicsList = mhlist;};
  void SetMixedHarmonicsFlags(TProfile* const mhFlags) {this->fMixedHarmonicsFlags = mhFlags;};
  TProfile* GetMixedHarmonicsFlags() const {return this->fMixedHarmonicsFlags;}; 
  void SetCalculateMixedHarmonics(Bool_t const cmh) {this->fCalculateMixedHarmonics = cmh;};
  Bool_t GetCalculateMixedHarmonics() const {return this->fCalculateMixedHarmonics;};
  void SetCalculateMixedHarmonicsVsM(Bool_t const cmhvm) {this->fCalculateMixedHarmonicsVsM = cmhvm;};
  Bool_t GetCalculateMixedHarmonicsVsM() const {return this->fCalculateMixedHarmonicsVsM;};
  void Set2pCorrelations(TProfile* const p2pCorr) {this->f2pCorrelations = p2pCorr;};
  TProfile* Get2pCorrelations() const {return this->f2pCorrelations;};
  void Set3pCorrelations(TProfile* const p3pCorr) {this->f3pCorrelations = p3pCorr;};
  TProfile* Get3pCorrelations() const {return this->f3pCorrelations;};
  void Set4pCorrelations(TProfile* const p4pCorr) {this->f4pCorrelations = p4pCorr;};
  TProfile* Get4pCorrelations() const {return this->f4pCorrelations;};
  void Set5pCorrelations(TProfile* const p5pCorr) {this->f5pCorrelations = p5pCorr;};
  TProfile* Get5pCorrelations() const {return this->f5pCorrelations;};
  void Set6pCorrelations(TProfile* const p6pCorr) {this->f6pCorrelations = p6pCorr;};
  TProfile* Get6pCorrelations() const {return this->f6pCorrelations;};
  void Set7pCorrelations(TProfile* const p7pCorr) {this->f7pCorrelations = p7pCorr;};
  TProfile* Get7pCorrelations() const {return this->f7pCorrelations;};
  void Set8pCorrelations(TProfile* const p8pCorr) {this->f8pCorrelations = p8pCorr;};
  TProfile* Get8pCorrelations() const {return this->f8pCorrelations;};
  void Set2pCumulants(TH1D* const p2pC) {this->f2pCumulants = p2pC;};
  TH1D* Get2pCumulants() const {return this->f2pCumulants;};
  void Set3pCumulants(TH1D* const p3pC) {this->f3pCumulants = p3pC;};
  TH1D* Get3pCumulants() const {return this->f3pCumulants;};
  void Set4pCumulants(TH1D* const p4pC) {this->f4pCumulants = p4pC;};
  TH1D* Get4pCumulants() const {return this->f4pCumulants;};
  void Set5pCumulants(TH1D* const p5pC) {this->f5pCumulants = p5pC;};
  TH1D* Get5pCumulants() const {return this->f5pCumulants;};
  void Set6pCumulants(TH1D* const p6pC) {this->f6pCumulants = p6pC;};
  TH1D* Get6pCumulants() const {return this->f6pCumulants;};
  void Set7pCumulants(TH1D* const p7pC) {this->f7pCumulants = p7pC;};
  TH1D* Get7pCumulants() const {return this->f7pCumulants;};
  void Set8pCumulants(TH1D* const p8pC) {this->f8pCumulants = p8pC;};
  TH1D* Get8pCumulants() const {return this->f8pCumulants;};
  void SetMixedHarmonicEventWeights(TH1D* const mhew, Int_t const power) {this->fMixedHarmonicEventWeights[power] = mhew;};
  TH1D* GetMixedHarmonicEventWeights(Int_t power) const {return this->fMixedHarmonicEventWeights[power];};
  void SetMixedHarmonicProductOfEventWeights(TH2D* const mhpoew) {this->fMixedHarmonicProductOfEventWeights = mhpoew;};
  TH2D* GetMixedHarmonicProductOfEventWeights() const {return this->fMixedHarmonicProductOfEventWeights;};
  void SetMixedHarmonicProductOfCorrelations(TProfile2D* const mhpoc) {this->fMixedHarmonicProductOfCorrelations = mhpoc;};
  TProfile2D* GetMixedHarmonicProductOfCorrelations() const {return this->fMixedHarmonicProductOfCorrelations;};

  // 10.) Control histograms:
  void SetControlHistogramsList(TList* const chl) {this->fControlHistogramsList = chl;};
  void SetControlHistogramsFlags(TProfile* const chf) {this->fControlHistogramsFlags = chf;};
  TProfile* GetControlHistogramsFlags() const {return this->fControlHistogramsFlags;}; 
  void SetStoreControlHistograms(Bool_t const sch) {this->fStoreControlHistograms = sch;};
  Bool_t GetStoreControlHistograms() const {return this->fStoreControlHistograms;};
  void SetCorrelationNoRPsVsRefMult(TH2D* const cnrvrm) {this->fCorrelationNoRPsVsRefMult = cnrvrm;};
  TH2D* GetCorrelationNoRPsVsRefMult() const {return this->fCorrelationNoRPsVsRefMult;};
  void SetCorrelationNoPOIsVsRefMult(TH2D* const cnpvrm) {this->fCorrelationNoPOIsVsRefMult = cnpvrm;};
  TH2D* GetCorrelationNoPOIsVsRefMult() const {return this->fCorrelationNoPOIsVsRefMult;};
  void SetCorrelationNoRPsVsNoPOIs(TH2D* const cnrvnp) {this->fCorrelationNoRPsVsNoPOIs = cnrvnp;};
  TH2D* GetCorrelationNoRPsVsNoPOIs() const {return this->fCorrelationNoRPsVsNoPOIs;};
  void SetCorrelation2468VsMult(TH2D* const c2468vm, Int_t const ci) {this->fCorrelation2468VsMult[ci] = c2468vm;};
  TH2D* GetCorrelation2468VsMult(Int_t ci) const {return this->fCorrelation2468VsMult[ci];};
  void SetCorrelationProduct2468VsMult(TH2D* const cp2468vm, Int_t const ci) {this->fCorrelationProduct2468VsMult[ci] = cp2468vm;};
  TH2D* GetCorrelationProduct2468VsMult(Int_t ci) const {return this->fCorrelationProduct2468VsMult[ci];};
  void SetQvectorTermsVsMult(TH2D* const qvtvm, Int_t const qvti) {this->fQvectorTermsVsMult[qvti] = qvtvm;};
  TH2D* GetQvectorTermsVsMult(Int_t qvti) const {return this->fQvectorTermsVsMult[qvti];};

  // 11.) Bootstrap:
  void SetBootstrapList(TList* const bl) {this->fBootstrapList = bl;};
  void SetBootstrapProfilesList(TList* const bpl) {this->fBootstrapProfilesList = bpl;};
  void SetBootstrapResultsList(TList* const brl) {this->fBootstrapResultsList = brl;};
  void SetBootstrapFlags(TProfile* const bf) {this->fBootstrapFlags = bf;};
  TProfile* GetBootstrapFlags() const {return this->fBootstrapFlags;}; 
  void SetUseBootstrap(Bool_t const ub) {this->fUseBootstrap = ub;};
  Bool_t GetUseBootstrap() const {return this->fUseBootstrap;};
  void SetUseBootstrapVsM(Bool_t const ubVsM) {this->fUseBootstrapVsM = ubVsM;};
  Bool_t GetUseBootstrapVsM() const {return this->fUseBootstrapVsM;};
  void SetnSubsamples(Int_t const ns) {this->fnSubsamples = ns;};
  Int_t GetnSubsamples() const {return this->fnSubsamples;};
  void SetBootstrapCorrelations(TProfile2D* const bcp) {this->fBootstrapCorrelations = bcp;};
  TProfile2D* GetBootstrapCorrelations() const {return this->fBootstrapCorrelations;}; 
  void SetBootstrapCorrelationsVsM(TProfile2D* const bcpVsM, Int_t const qvti) {this->fBootstrapCorrelationsVsM[qvti] = bcpVsM;};
  TProfile2D* GetBootstrapCorrelationsVsM(Int_t qvti) const {return this->fBootstrapCorrelationsVsM[qvti];};
  void SetBootstrapCumulants(TH2D* const bc) {this->fBootstrapCumulants = bc;};
  TH2D* GetBootstrapCumulants() const {return this->fBootstrapCumulants;}; 
  void SetBootstrapCumulantsVsM(TH2D* const bcpVsM, Int_t const qvti) {this->fBootstrapCumulantsVsM[qvti] = bcpVsM;};
  TH2D* GetBootstrapCumulantsVsM(Int_t qvti) const {return this->fBootstrapCumulantsVsM[qvti];};

 private:
  
  AliFlowAnalysisWithQCumulants(const AliFlowAnalysisWithQCumulants& afawQc);
  AliFlowAnalysisWithQCumulants& operator=(const AliFlowAnalysisWithQCumulants& afawQc); 
  
  // 0.) base:
  TList* fHistList; // base list to hold all output object
  
  // 1.) common:
  Bool_t fBookOnlyBasicCCH; // book only basis common control histrograms (by default book them all)
  AliFlowCommonHist *fCommonHists; // common control histograms (taking into account ALL events) 
  AliFlowCommonHist *fCommonHists2nd; // common control histograms (taking into account only the events with 2 and more particles) 
  AliFlowCommonHist *fCommonHists4th; // common control histograms (taking into account only the events with 4 and more particles) 
  AliFlowCommonHist *fCommonHists6th; // common control histograms (taking into account only the events with 6 and more particles) 
  AliFlowCommonHist *fCommonHists8th; // common control histograms (taking into account only the events with 8 and more particles) 
  AliFlowCommonHistResults *fCommonHistsResults2nd; // final results for 2nd order int. and diff. flow for events with 2 and more particles
  AliFlowCommonHistResults *fCommonHistsResults4th; // final results for 4th order int. and diff. flow for events with 4 and more particles 
  AliFlowCommonHistResults *fCommonHistsResults6th; // final results for 6th order int. and diff. flow for events with 6 and more particles
  AliFlowCommonHistResults *fCommonHistsResults8th; // final results for 8th order int. and diff. flow for events with 8 and more particles
  Int_t fnBinsPhi; // number of phi bins
  Double_t fPhiMin; // minimum phi   
  Double_t fPhiMax; // maximum phi 
  Double_t fPhiBinWidth; // bin width for phi histograms  
  Int_t fnBinsPt; // number of pt bins
  Double_t fPtMin; // minimum pt   
  Double_t fPtMax; // maximum pt  
  Double_t fPtBinWidth; // bin width for pt histograms  
  Int_t fnBinsEta; // number of eta bins
  Double_t fEtaMin; // minimum eta   
  Double_t fEtaMax; // maximum eta
  Double_t fEtaBinWidth; // bin width for eta histograms  
  TProfile *fCommonConstants; // profile to hold common constants
  Bool_t fFillMultipleControlHistograms; // fill separately control histos for events with >= 2, 4, 6 and 8 particles 
  Int_t fHarmonic; // harmonic 
  TString *fAnalysisLabel; // analysis label (all histograms and output file will have this label)
  Bool_t fPrintFinalResults[4]; // print on the screen the final results (0=RF, 1=RP, 2=POI, 3=RF rebinned in M)
  
  // 2a.) particle weights:
  TList *fWeightsList; // list to hold all histograms with particle weights: fUseParticleWeights, fPhiWeights, fPtWeights and fEtaWeights
  Bool_t fUsePhiWeights; // use phi weights
  Bool_t fUsePtWeights; // use pt weights
  Bool_t fUseEtaWeights; // use eta weights
  Bool_t fUseTrackWeights; // use track weights (e.g. VZERO sector weights)
  TProfile *fUseParticleWeights; // profile with three bins to hold values of fUsePhiWeights, fUsePtWeights and fUseEtaWeights
  TH1F *fPhiWeights; // histogram holding phi weights
  TH1D *fPtWeights; // histogram holding phi weights
  TH1D *fEtaWeights; // histogram holding phi weights 
  
  // 2b.) event weights:
  TString *fMultiplicityWeight; // event-by-event weights for multiparticle correlations
  AliFlowCommonConstants::ERefMultSource fMultiplicityIs; // by default "kRP"
  
  // 3.) integrated flow       
  //  3a.) lists:
  TList *fIntFlowList; // list to hold all histograms and profiles relevant for integrated flow 
  TList *fIntFlowProfiles; // list to hold all profiles relevant for integrated flow
  TList *fIntFlowResults; // list to hold all histograms with final results relevant for integrated flow  
  TList *fIntFlowAllCorrelationsVsM; // list to hold all profiles with correlations vs M
  //  3b.) flags:
  TProfile *fIntFlowFlags; // profile to hold all flags for integrated flow
  Bool_t fApplyCorrectionForNUA; // apply correction for non-uniform acceptance 
  Bool_t fApplyCorrectionForNUAVsM; // apply correction for non-uniform acceptance versus M  
  Int_t fnBinsMult; // number of multiplicity bins for flow analysis versus multiplicity  
  Double_t fMinMult; // minimal multiplicity for flow analysis versus multiplicity  
  Double_t fMaxMult; // maximal multiplicity for flow analysis versus multiplicity  
  Bool_t fPropagateErrorAlsoFromNIT; // propagate error by taking into account also non-isotropic terms (not sure if resulting error then is correct - to be improved)
  Bool_t fCalculateCumulantsVsM; // calculate cumulants versus multiplicity  
  Bool_t fCalculateAllCorrelationsVsM; // calculate all correlations versus multiplicity 
  Bool_t fMinimumBiasReferenceFlow; // store as reference flow in AliFlowCommonHistResults the minimum bias result (kFALSE by default)   
  Bool_t fForgetAboutCovariances; // when propagating error forget about the covariances  
  Bool_t fStorePhiDistributionForOneEvent; // store phi distribution for one event to illustrate flow
  Double_t fPhiDistributionForOneEventSettings[4]; // [v_min,v_max,refMult_min,refMult_max]
  Int_t fExactNoRPs; // when shuffled, select only this number of RPs for the analysis
  Bool_t fUse2DHistograms; // use TH2D instead of TProfile to improve numerical stability in reference flow calculation 
  Bool_t fFillProfilesVsMUsingWeights; // if the width of multiplicity bin is 1, weights are not needed  
  Bool_t fUseQvectorTerms; // use TH2D with separate Q-vector terms instead of TProfile to improve numerical stability in reference flow calculation 

  //  3c.) event-by-event quantities:
  TMatrixD *fReQ; //! fReQ[m][k] = sum_{i=1}^{M} w_{i}^{k} cos(m*phi_{i})
  TMatrixD *fImQ; //! fImQ[m][k] = sum_{i=1}^{M} w_{i}^{k} sin(m*phi_{i})
  TMatrixD *fSpk; //! fSM[p][k] = (sum_{i=1}^{M} w_{i}^{k})^{p+1}
  TH1D *fIntFlowCorrelationsEBE; // 1st bin: <2>, 2nd bin: <4>, 3rd bin: <6>, 4th bin: <8>
  TH1D *fIntFlowEventWeightsForCorrelationsEBE; // 1st bin: eW_<2>, 2nd bin: eW_<4>, 3rd bin: eW_<6>, 4th bin: eW_<8>
  TH1D *fIntFlowCorrelationsAllEBE; // to be improved (add comment)
  TH1D *fIntFlowCorrectionTermsForNUAEBE[2]; //! [0=sin terms,1=cos terms], NUA = non-uniform acceptance
  TH1D *fIntFlowEventWeightForCorrectionTermsForNUAEBE[2]; //! [0=sin terms,1=cos terms], NUA = non-uniform acceptance 
  Double_t fNumberOfRPsEBE; // # of Reference Particles  
  Double_t fNumberOfPOIsEBE; // # of Particles of Interest
  Double_t fReferenceMultiplicityEBE; // reference multiplicity 
  //  3d.) profiles:
  TProfile *fAvMultiplicity; // profile to hold average multiplicities and number of events for events with nRP>=0, nRP>=1, ... , and nRP>=8
  TProfile *fIntFlowCorrelationsPro; // average correlations <<2>>, <<4>>, <<6>> and <<8>> (with wrong errors!) 
  TProfile *fIntFlowSquaredCorrelationsPro; // average correlations squared <<2>^2>, <<4>^2>, <<6>^2> and <<8>^2>  
  TProfile *fIntFlowCorrelationsVsMPro[4]; // average correlations <<2>>, <<4>>, <<6>> and <<8>> versus multiplicity (error is wrong here!)
  TProfile *fIntFlowSquaredCorrelationsVsMPro[4]; // average correlations <<2>^2>, <<4>^2>, <<6>^2> and <<8>^2> versus multiplicity  
  TProfile *fIntFlowCorrelationsAllPro; // average all correlations for integrated flow (with wrong errors!)
  TProfile *fIntFlowCorrelationsAllVsMPro[64]; // average all correlations vs M (errors via Sumw2 - to me improved)
  TProfile *fIntFlowExtraCorrelationsPro; // when particle weights are used some extra correlations appear 
  TProfile *fIntFlowProductOfCorrelationsPro; // average product of correlations <2>, <4>, <6> and <8>  
  TProfile *fIntFlowProductOfCorrelationsVsMPro[6]; // average product of correlations <2>, <4>, <6> and <8>  
                                                    // [0=<<2><4>>,1=<<2><6>>,2=<<2><8>>,3=<<4><6>>,4=<<4><8>>,5=<<6><8>>]  
  TProfile *fIntFlowProductOfCorrectionTermsForNUAPro; // average product of correction terms for NUA  
  TProfile *fIntFlowCorrectionTermsForNUAPro[2]; //! average correction terms for non-uniform acceptance (with wrong errors!) [0=sin terms,1=cos terms] 
  TProfile *fIntFlowCorrectionTermsForNUAVsMPro[2][4]; //! average correction terms for non-uniform acceptance (with wrong errors!) [0=sin terms,1=cos terms][correction term index] vs multiplicity   

  //  3e.) histograms with final results:
  TH1D *fIntFlowCorrelationsHist; // final results for average correlations <<2>>, <<4>>, <<6>> and <<8>> (with correct errors!) 
  TH1D *fIntFlowCorrelationsVsMHist[4]; // average correlations <<2>>, <<4>>, <<6>> and <<8>> versus multiplicity (error is correct here!)
  TH1D *fIntFlowCorrelationsAllHist; // final results for all average correlations (with correct errors!) 
  TH1D *fIntFlowCorrectionTermsForNUAHist[2]; //! final results for correction terms for non-uniform acceptance (with correct errors!) [0=sin terms,1=cos terms]
  TH1D *fIntFlowCovariances; // final result for covariances of correlations (multiplied with weight dependent prefactor)
  TH1D *fIntFlowSumOfEventWeights[2]; //! sum of linear and quadratic event weights for <2>, <4>, <6> and <8>: [0=linear 1,1=quadratic]
  TH1D *fIntFlowSumOfProductOfEventWeights; // sum of products of event weights for correlations <2>, <4>, <6> and <8>  
  TH1D *fIntFlowCovariancesVsM[6]; // final result for covariances of correlations (multiplied with weight dependent prefactor) versus M
                                   // [0=Cov(2,4),1=Cov(2,6),2=Cov(2,8),3=Cov(4,6),4=Cov(4,8),5=Cov(6,8)]
  TH1D *fIntFlowSumOfEventWeightsVsM[4][2]; // sum of linear and quadratic event weights for <2>, <4>, <6> and <8> versum multiplicity
                                            // [0=sum{w_{<2>}},1=sum{w_{<4>}},2=sum{w_{<6>}},3=sum{w_{<8>}}][0=linear 1,1=quadratic]
  TH1D *fIntFlowSumOfProductOfEventWeightsVsM[6]; // sum of products of event weights for correlations <2>, <4>, <6> and <8> vs M
                                                  // [0=sum{w_{<2>}w_{<4>}},1=sum{w_{<2>}w_{<6>}},2=sum{w_{<2>}w_{<8>}},
                                                  //  3=sum{w_{<4>}w_{<6>}},4=sum{w_{<4>}w_{<8>}},5=sum{w_{<6>}w_{<8>}}]  
  TH1D *fIntFlowCovariancesNUA; // final result for covariances of all terms needed for NUA (multiplied with weight dependent prefactor)
  TH1D *fIntFlowSumOfEventWeightsNUA[2][2]; //! sum of linear and quadratic event weights for NUA terms: [0=sin,1=cos][0=linear 1,1=quadratic]
  TH1D *fIntFlowSumOfProductOfEventWeightsNUA; // sum of products of event weights for NUA terms
  TH1D *fIntFlowQcumulants; // final results for integrated Q-cumulants QC{2}, QC{4}, QC{6} and QC{8}
  TH1D *fIntFlowQcumulantsVsM[4]; // final results for integrated Q-cumulants QC{2}, QC{4}, QC{6} and QC{8} versus multiplicity
  TH1D *fIntFlowQcumulantsRebinnedInM; // final results for reference Q-cumulants QC{2}, QC{4}, QC{6} and QC{8} rebinned in M
  TH1D *fIntFlowQcumulantsErrorSquaredRatio; // ratio between error squared: with/without non-isotropic terms
  TH1D *fIntFlow; // final results for integrated flow estimates v_n{2,QC}, v_n{4,QC}, v_n{6,QC} and v_n{8,QC}
  TH1D *fIntFlowVsM[4]; // final results for integrated flow estimates v_n{2,QC}, v_n{4,QC}, v_n{6,QC} and v_n{8,QC} versus multiplicity 
  TH1D *fIntFlowRebinnedInM; // final results for ref. flow estimates v_n{2,QC}, v_n{4,QC}, v_n{6,QC} and v_n{8,QC} rebinned in M
  TH1D *fIntFlowDetectorBias; // bias coming from detector inefficiencies to <<2>>, <<4>>, <<6>> and <<8>> (corrected/measured)  
  TH1D *fIntFlowDetectorBiasVsM[4]; // bias coming from detector inefficiencies to <<2>>, <<4>>, <<6>> and <<8>> vs M (corrected/measured)  
  // 4.) differential flow
  //  4a.) lists:
  TList *fDiffFlowList; // list to hold list with all histograms (fDiffFlowResults) and list with profiles (fDiffFlowProfiles) relevant for differential flow 
  TList *fDiffFlowProfiles; // list to hold all profiles relevant for differential flow
  TList *fDiffFlowResults; // list to hold all histograms with final results relevant for differential flow  
  TList *fDiffFlow2D; // list to hold all objects relevant for 2D differential flow  
  //    4aa.) nested list in list fDiffFlowProfiles: 
  TList *fDiffFlowCorrelationsProList[2][2]; //! list to hold profiles with all correlations for differential flow [0=RP,1=POI][0=pt,1=eta] 
  TList *fDiffFlowProductOfCorrelationsProList[2][2]; //! list to hold profiles with products of all correlations for differential flow [0=RP,1=POI][0=pt,1=eta] 
  TList *fDiffFlowCorrectionsProList[2][2]; //! list to hold profiles with correction term for NUA for differential flow [0=RP,1=POI][0=pt,1=eta] 
  TList *f2DDiffFlowCorrelationsProList[2]; //! list to hold profiles with all correlations for 2D differential flow [0=RP,1=POI]  
  //    4ab.) nested list in list fDiffFlowResults: 
  TList *fDiffFlowCorrelationsHistList[2][2]; //! list to hold histograms with all correlations for differential flow [0=RP,1=POI][0=pt,1=eta] 
  TList *fDiffFlowSumOfEventWeightsHistList[2][2][2]; //! list to hold histograms with sum of linear/quadratic event weights [0=RP,1=POI][0=pt,1=eta][0=linear 1,1=quadratic]
  TList *fDiffFlowSumOfProductOfEventWeightsHistList[2][2]; //! list to hold histograms with sum of products of event weights [0=RP,1=POI][0=pt,1=eta]
  TList *fDiffFlowCorrectionsHistList[2][2]; //! list to hold histograms with correction term for NUA for differential flow [0=RP,1=POI][0=pt,1=eta] 
  TList *fDiffFlowCovariancesHistList[2][2]; //! list to hold histograms with all covariances for differential flow [0=RP,1=POI][0=pt,1=eta] 
  TList *fDiffFlowCumulantsHistList[2][2]; //! list to hold histograms with all cumulants for differential flow [0=RP,1=POI][0=pt,1=eta] 
  TList *fDiffFlowDetectorBiasHistList[2][2]; //! list to hold histograms which quantify detector bias to differential cumulants [0=RP,1=POI][0=pt,1=eta] 
  TList *fDiffFlowHistList[2][2]; //! list to hold histograms with final results for differential flow [0=RP,1=POI][0=pt,1=eta]
  //  4b.) flags:  
  TProfile *fDiffFlowFlags; // profile to hold all flags for differential flow
  Bool_t fCalculateDiffFlow; // if you set kFALSE only reference flow will be calculated
  Bool_t fCalculate2DDiffFlow; // calculate 2D differential flow vs (pt,eta) (Remark: this is expensive in terms of CPU time)
  Bool_t fCalculateDiffFlowVsEta; // if you set kFALSE only differential flow vs pt is calculated
  //  4c.) event-by-event quantities:
  //   1D:
  TProfile *fReRPQ1dEBE[3][2][4][9]; //! real part [0=r,1=p,2=q][0=pt,1=eta][m][k]
  TProfile *fImRPQ1dEBE[3][2][4][9]; //! imaginary part [0=r,1=p,2=q][0=pt,1=eta][m][k]
  TProfile *fs1dEBE[3][2][9]; //! [0=r,1=p,2=q][0=pt,1=eta][k] // to be improved
  TH1D *fDiffFlowCorrelationsEBE[2][2][4]; //! [0=RP,1=POI][0=pt,1=eta][reduced correlation index]
  TH1D *fDiffFlowEventWeightsForCorrelationsEBE[2][2][4]; //! [0=RP,1=POI][0=pt,1=eta][event weights for reduced correlation index]
  TH1D *fDiffFlowCorrectionTermsForNUAEBE[2][2][2][10]; //! [0=RP,1=POI][0=pt,1=eta][0=sin terms,1=cos terms][correction term index]
  //   2D:
  TProfile2D *fReRPQ2dEBE[3][4][9]; // real part of r_{m*n,k}(pt,eta), p_{m*n,k}(pt,eta) and q_{m*n,k}(pt,eta)
  TProfile2D *fImRPQ2dEBE[3][4][9]; // imaginary part of r_{m*n,k}(pt,eta), p_{m*n,k}(pt,eta) and q_{m*n,k}(pt,eta)
  TProfile2D *fs2dEBE[3][9]; //! [t][k] // to be improved
  //  4d.) profiles:
  //   1D:
  TProfile *fDiffFlowCorrelationsPro[2][2][4]; //! [0=RP,1=POI][0=pt,1=eta][correlation index]
  TProfile *fDiffFlowSquaredCorrelationsPro[2][2][4]; //! [0=RP,1=POI][0=pt,1=eta][correlation index]
  TProfile *fDiffFlowProductOfCorrelationsPro[2][2][8][8]; //! [0=RP,1=POI][0=pt,1=eta] [0=<2>,1=<2'>,2=<4>,3=<4'>,4=<6>,5=<6'>,6=<8>,7=<8'>] x 
                                                           //                          [0=<2>,1=<2'>,2=<4>,3=<4'>,4=<6>,5=<6'>,6=<8>,7=<8'>]
  TProfile *fDiffFlowCorrectionTermsForNUAPro[2][2][2][10]; //! [0=RP,1=POI][0=pt,1=eta][0=sin terms,1=cos terms][correction term index]
  //   2D:                                                            
  TProfile2D *f2DDiffFlowCorrelationsPro[2][4]; //! [0=RP,1=POI][correlation index]
  //   Other differential correlators:
  TList *fOtherDiffCorrelatorsList; // list to hold profiles with other differential correlators
  TProfile *fOtherDiffCorrelators[2][2][2][1]; //! [0=RP,1=POI][0=pt,1=eta][0=sin terms,1=cos terms][correlator index] 
  //  4e.) histograms holding final results:
  //   1D:
  TH1D *fDiffFlowCorrelationsHist[2][2][4]; //! [0=RP,1=POI][0=pt,1=eta][correlation index]
  TH1D *fDiffFlowCovariances[2][2][5]; //! [0=RP,1=POI][0=pW not used,1=pW used][0=exact eW,1=non-exact eW][0=pt,1=eta][index of covariances] 
  TH1D *fDiffFlowCumulants[2][2][4]; //! [0=RP,1=POI][0=pt,1=eta][0=QC{2'},1=QC{4'},2=QC{6'},3=QC{8'}]
  TH1D *fDiffFlowDetectorBias[2][2][4]; //! [0=RP,1=POI][0=pt,1=eta][0=gQC{2'}/QC{2'},1=gQC{4'}/QC{4'},2=gQC{6'}/QC{6'},3=gQC{8'}/QC{8'}]
  TH1D *fDiffFlow[2][2][4]; //! [0=RP,1=POI][0=pt,1=eta][0=v'{2},1=v'{4},2=v'{6},3=v'{8}]
  TH1D *fDiffFlowSumOfEventWeights[2][2][2][4]; //! [0=RP,1=POI][0=pt,1=eta][0=linear 1,1=quadratic][0=<2'>,1=<4'>,2=<6'>,3=<8'>]
  TH1D *fDiffFlowSumOfProductOfEventWeights[2][2][8][8]; //! [0=RP,1=POI][0=pt,1=eta]  [0=<2>,1=<2'>,2=<4>,3=<4'>,4=<6>,5=<6'>,6=<8>,7=<8'>] x 
                                                         //                           [0=<2>,1=<2'>,2=<4>,3=<4'>,4=<6>,5=<6'>,6=<8>,7=<8'>]
  TH1D *fDiffFlowCorrectionTermsForNUAHist[2][2][2][10]; //! [0=RP,1=POI][0=pt,1=eta][0=sin terms,1=cos terms][correction term index]        
  //   2D:                                                            
  TH2D *f2DDiffFlowCumulants[2][4]; //! 2D differential cumulants [0=RP,1=POI][cumulant order]
  TH2D *f2DDiffFlow[2][4]; //! 2D differential flow [0=RP,1=POI][cumulants order]
  // 6.) distributions:
  TList *fDistributionsList; // list to hold all distributions of correlations
  TProfile *fDistributionsFlags; // profile to hold all flags for distributions of correlations
  Bool_t fStoreDistributions; // store or not distributions of correlations
  TH1D *fDistributions[4]; //! [0=distribution of <2>,1=distribution of <4>,2=distribution of <6>,3=distribution of <8>]
  Int_t fnBinsForCorrelations; // # of bins for correlation axis in fDistributions[4], fCorrelation2468VsMult[4] and fCorrelationProduct2468VsMult[1]
  Double_t fMinValueOfCorrelation[4]; // min values of <2>, <4>, <6> and <8>
  Double_t fMaxValueOfCorrelation[4]; // max values of <2>, <4>, <6> and <8>
  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
  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
  Double_t fMinValueOfQvectorTerms[4]; // MinValueOfQvectorTerms
  Double_t fMaxValueOfQvectorTerms[4]; // MaxValueOfQvectorTerms
  
  // 7.) various:
  TList *fVariousList; // list to hold various unclassified objects (TBI: what a crazy name.... )
  TH1D *fPhiDistributionForOneEvent; // store phi distribution for one event to illustrate flow
    
  // 8.) debugging and cross-checking:
  TList *fNestedLoopsList; // list to hold all profiles filled with nested loops
  Bool_t fEvaluateIntFlowNestedLoops; // evaluate nested loops relevant for integrated flow
  Bool_t fEvaluateDiffFlowNestedLoops; // evaluate nested loops relevant for differential flow
  Int_t fMaxAllowedMultiplicity; // nested loops will be evaluated only for events with multiplicity <= fMaxAllowedMultiplicity
  TProfile *fEvaluateNestedLoops; // profile with four bins: fEvaluateIntFlowNestedLoops, fEvaluateDiffFlowNestedLoops, fCrossCheckInPtBinNo and fCrossCheckInEtaBinNo 
  // integrated flow:
  TProfile *fIntFlowDirectCorrelations; // multiparticle correlations relevant for int. flow calculated with nested loops  
  TProfile *fIntFlowExtraDirectCorrelations; // when particle weights are used some extra correlations appear   
  TProfile *fIntFlowDirectCorrectionTermsForNUA[2]; //! average correction terms for non-uniform acceptance evaluated with nested loops [0=sin terms,1=cos terms] 
  // differential flow:
  Int_t fCrossCheckInPtBinNo; // cross-check results for reduced correlations and corrections in this pt bin
  Int_t fCrossCheckInEtaBinNo; // cross-check results for reduced correlations and corrections in this eta bin
  TH1D *fNoOfParticlesInBin; // bin: 1 = # of RPs in pt bin, 2 = # of RPs in eta bin, 3 = # of POIs in pt bin, 4 = # of POIs in eta bin 
  TProfile *fDiffFlowDirectCorrelations[2][2][4]; //! [0=RP,1=POI][0=pt,1=eta][correlation index]
  TProfile *fDiffFlowDirectCorrectionTermsForNUA[2][2][2][10]; //! [0=RP,1=POI][0=pt,1=eta][0=sin terms,1=cos terms][correction term index]
  // other differential correlators: 
  TProfile *fOtherDirectDiffCorrelators[2][2][2][1]; //! [0=RP,1=POI][0=pt,1=eta][0=sin terms,1=cos terms][correlator index]
  // mixed harmonics:
  TProfile *fMixedHarmonicsNestedLoops; // Cross-check mixed harmonics with nested loops.
             
  // 9.) mixed harmonics:       
  //  9a.) lists:
  TList *fMixedHarmonicsList; // list to hold all histograms and profiles for mixed harmonics 
  TList *fMixedHarmonicsProfiles; // list to hold all profiles for mixed harmonics
  TList *fMixedHarmonicsResults; // list to hold all histograms with final results for mixed harmonics  
  TList *fMixedHarmonicsErrorPropagation; // list to hold all objects needed for statistical error propagation  
  //TList *fIntFlowAllCorrelationsVsM; // list to hold all profiles with correlations vs M
  //  9b.) flags:
  TProfile *fMixedHarmonicsFlags; // profile to hold all flags for mixed harmonics
  Bool_t fCalculateMixedHarmonics; // calculate or not mixed harmonics
  Bool_t fCalculateMixedHarmonicsVsM; // calculate or not mixed harmonics vs multiplicity
  //  9c.) profiles:
  TProfile *f2pCorrelations; // profile to hold all 2-particle correlations
  TProfile *f3pCorrelations; // profile to hold all 3-particle correlations
  TProfile *f4pCorrelations; // profile to hold all 4-particle correlations
  TProfile *f5pCorrelations; // profile to hold all 5-particle correlations
  TProfile *f6pCorrelations; // profile to hold all 6-particle correlations
  TProfile *f7pCorrelations; // profile to hold all 7-particle correlations
  TProfile *f8pCorrelations; // profile to hold all 8-particle correlations
  //  9d.) results:
  TH1D *f2pCumulants; // histogram to hold all 2-particle cumulants
  TH1D *f3pCumulants; // histogram to hold all 3-particle cumulants
  TH1D *f4pCumulants; // histogram to hold all 4-particle cumulants
  TH1D *f5pCumulants; // histogram to hold all 5-particle cumulants
  TH1D *f6pCumulants; // histogram to hold all 6-particle cumulants
  TH1D *f7pCumulants; // histogram to hold all 7-particle cumulants
  TH1D *f8pCumulants; // histogram to hold all 8-particle cumulants
  //  9e.) statistical error propagation:
  TH1D *fMixedHarmonicEventWeights[2]; //! sum of linear and quadratic event weights for mixed harmonics => [0=linear 1,1=quadratic]    
  TH2D *fMixedHarmonicProductOfEventWeights; // sum of products of event weights for mixed harmonics
  TProfile2D *fMixedHarmonicProductOfCorrelations; // averages of products of mixed harmonics correlations
  // 10.) Control histograms:
  //  10a.) list:
  TList *fControlHistogramsList; // list to hold all control histograms 
  //  10b.) flags:
  TProfile *fControlHistogramsFlags; // profile to hold all flags for control histograms
  Bool_t fStoreControlHistograms; // store or not control histograms
  //  10c.) histograms:
  TH2D *fCorrelationNoRPsVsRefMult; // correlation between # RPs and ref. mult. determined centrally
  TH2D *fCorrelationNoPOIsVsRefMult; // correlation between # POIs and ref. mult. determined centrally
  TH2D *fCorrelationNoRPsVsNoPOIs; // correlation between # RPs and # POIs
  TH2D *fCorrelation2468VsMult[4]; // <2>, <4>, <6> and <8> vs multiplicity (#RPs, #POIs or external)
  TH2D *fCorrelationProduct2468VsMult[1]; // <2><4>, <2><6>, <2><8>, <4><6> etc. vs multiplicity (#RPs, #POIs or external)
                                          // TBI: added for the time being only <2><4>, the other ones will follow when needed 
  TH2D *fQvectorTermsVsMult[4]; //! |Qn|^2/M, |Q2n|^2/M, |Qn|^4/(M(2M-1)), Re[Q2nQn^*Qn^*]/M, ... vs multiplicity (#RPs, #POIs or external)
  // 11.) Bootstrap:
  //  11a) lists:
  TList *fBootstrapList; // list to hold all output objects for bootstrap 
  TList *fBootstrapProfilesList; // list to hold all profiles for bootstrap
  TList *fBootstrapResultsList; // list to hold all histograms for bootstrap 
  //  11b) flags:
  TProfile *fBootstrapFlags; // profile to hold all flags for mixed harmonics
  Bool_t fUseBootstrap; // use bootstrap to estimate statistical spread
  Bool_t fUseBootstrapVsM; // use bootstrap to estimate statistical spread for results vs M
  Int_t fnSubsamples; // number of subsamples (SS), by default 10
  TRandom3 *fRandom; // local random generator
  //  11c) profiles: 
  TProfile2D *fBootstrapCorrelations; // x-axis => <2>, <4>, <6>, <8>; y-axis => subsample # 
  TProfile2D *fBootstrapCorrelationsVsM[4]; // index => <2>, <4>, <6>, <8>; x-axis => multiplicity; y-axis => subsample # 
  //  11d) histograms:  
  TH2D *fBootstrapCumulants; // x-axis => QC{2}, QC{4}, QC{6}, QC{8}; y-axis => subsample # 
  TH2D *fBootstrapCumulantsVsM[4]; // index => QC{2}, QC{4}, QC{6}, QC{8}; x-axis => multiplicity; y-axis => subsample # 

  ClassDef(AliFlowAnalysisWithQCumulants, 4);

};

//================================================================================================================

#endif





 AliFlowAnalysisWithQCumulants.h:1
 AliFlowAnalysisWithQCumulants.h:2
 AliFlowAnalysisWithQCumulants.h:3
 AliFlowAnalysisWithQCumulants.h:4
 AliFlowAnalysisWithQCumulants.h:5
 AliFlowAnalysisWithQCumulants.h:6
 AliFlowAnalysisWithQCumulants.h:7
 AliFlowAnalysisWithQCumulants.h:8
 AliFlowAnalysisWithQCumulants.h:9
 AliFlowAnalysisWithQCumulants.h:10
 AliFlowAnalysisWithQCumulants.h:11
 AliFlowAnalysisWithQCumulants.h:12
 AliFlowAnalysisWithQCumulants.h:13
 AliFlowAnalysisWithQCumulants.h:14
 AliFlowAnalysisWithQCumulants.h:15
 AliFlowAnalysisWithQCumulants.h:16
 AliFlowAnalysisWithQCumulants.h:17
 AliFlowAnalysisWithQCumulants.h:18
 AliFlowAnalysisWithQCumulants.h:19
 AliFlowAnalysisWithQCumulants.h:20
 AliFlowAnalysisWithQCumulants.h:21
 AliFlowAnalysisWithQCumulants.h:22
 AliFlowAnalysisWithQCumulants.h:23
 AliFlowAnalysisWithQCumulants.h:24
 AliFlowAnalysisWithQCumulants.h:25
 AliFlowAnalysisWithQCumulants.h:26
 AliFlowAnalysisWithQCumulants.h:27
 AliFlowAnalysisWithQCumulants.h:28
 AliFlowAnalysisWithQCumulants.h:29
 AliFlowAnalysisWithQCumulants.h:30
 AliFlowAnalysisWithQCumulants.h:31
 AliFlowAnalysisWithQCumulants.h:32
 AliFlowAnalysisWithQCumulants.h:33
 AliFlowAnalysisWithQCumulants.h:34
 AliFlowAnalysisWithQCumulants.h:35
 AliFlowAnalysisWithQCumulants.h:36
 AliFlowAnalysisWithQCumulants.h:37
 AliFlowAnalysisWithQCumulants.h:38
 AliFlowAnalysisWithQCumulants.h:39
 AliFlowAnalysisWithQCumulants.h:40
 AliFlowAnalysisWithQCumulants.h:41
 AliFlowAnalysisWithQCumulants.h:42
 AliFlowAnalysisWithQCumulants.h:43
 AliFlowAnalysisWithQCumulants.h:44
 AliFlowAnalysisWithQCumulants.h:45
 AliFlowAnalysisWithQCumulants.h:46
 AliFlowAnalysisWithQCumulants.h:47
 AliFlowAnalysisWithQCumulants.h:48
 AliFlowAnalysisWithQCumulants.h:49
 AliFlowAnalysisWithQCumulants.h:50
 AliFlowAnalysisWithQCumulants.h:51
 AliFlowAnalysisWithQCumulants.h:52
 AliFlowAnalysisWithQCumulants.h:53
 AliFlowAnalysisWithQCumulants.h:54
 AliFlowAnalysisWithQCumulants.h:55
 AliFlowAnalysisWithQCumulants.h:56
 AliFlowAnalysisWithQCumulants.h:57
 AliFlowAnalysisWithQCumulants.h:58
 AliFlowAnalysisWithQCumulants.h:59
 AliFlowAnalysisWithQCumulants.h:60
 AliFlowAnalysisWithQCumulants.h:61
 AliFlowAnalysisWithQCumulants.h:62
 AliFlowAnalysisWithQCumulants.h:63
 AliFlowAnalysisWithQCumulants.h:64
 AliFlowAnalysisWithQCumulants.h:65
 AliFlowAnalysisWithQCumulants.h:66
 AliFlowAnalysisWithQCumulants.h:67
 AliFlowAnalysisWithQCumulants.h:68
 AliFlowAnalysisWithQCumulants.h:69
 AliFlowAnalysisWithQCumulants.h:70
 AliFlowAnalysisWithQCumulants.h:71
 AliFlowAnalysisWithQCumulants.h:72
 AliFlowAnalysisWithQCumulants.h:73
 AliFlowAnalysisWithQCumulants.h:74
 AliFlowAnalysisWithQCumulants.h:75
 AliFlowAnalysisWithQCumulants.h:76
 AliFlowAnalysisWithQCumulants.h:77
 AliFlowAnalysisWithQCumulants.h:78
 AliFlowAnalysisWithQCumulants.h:79
 AliFlowAnalysisWithQCumulants.h:80
 AliFlowAnalysisWithQCumulants.h:81
 AliFlowAnalysisWithQCumulants.h:82
 AliFlowAnalysisWithQCumulants.h:83
 AliFlowAnalysisWithQCumulants.h:84
 AliFlowAnalysisWithQCumulants.h:85
 AliFlowAnalysisWithQCumulants.h:86
 AliFlowAnalysisWithQCumulants.h:87
 AliFlowAnalysisWithQCumulants.h:88
 AliFlowAnalysisWithQCumulants.h:89
 AliFlowAnalysisWithQCumulants.h:90
 AliFlowAnalysisWithQCumulants.h:91
 AliFlowAnalysisWithQCumulants.h:92
 AliFlowAnalysisWithQCumulants.h:93
 AliFlowAnalysisWithQCumulants.h:94
 AliFlowAnalysisWithQCumulants.h:95
 AliFlowAnalysisWithQCumulants.h:96
 AliFlowAnalysisWithQCumulants.h:97
 AliFlowAnalysisWithQCumulants.h:98
 AliFlowAnalysisWithQCumulants.h:99
 AliFlowAnalysisWithQCumulants.h:100
 AliFlowAnalysisWithQCumulants.h:101
 AliFlowAnalysisWithQCumulants.h:102
 AliFlowAnalysisWithQCumulants.h:103
 AliFlowAnalysisWithQCumulants.h:104
 AliFlowAnalysisWithQCumulants.h:105
 AliFlowAnalysisWithQCumulants.h:106
 AliFlowAnalysisWithQCumulants.h:107
 AliFlowAnalysisWithQCumulants.h:108
 AliFlowAnalysisWithQCumulants.h:109
 AliFlowAnalysisWithQCumulants.h:110
 AliFlowAnalysisWithQCumulants.h:111
 AliFlowAnalysisWithQCumulants.h:112
 AliFlowAnalysisWithQCumulants.h:113
 AliFlowAnalysisWithQCumulants.h:114
 AliFlowAnalysisWithQCumulants.h:115
 AliFlowAnalysisWithQCumulants.h:116
 AliFlowAnalysisWithQCumulants.h:117
 AliFlowAnalysisWithQCumulants.h:118
 AliFlowAnalysisWithQCumulants.h:119
 AliFlowAnalysisWithQCumulants.h:120
 AliFlowAnalysisWithQCumulants.h:121
 AliFlowAnalysisWithQCumulants.h:122
 AliFlowAnalysisWithQCumulants.h:123
 AliFlowAnalysisWithQCumulants.h:124
 AliFlowAnalysisWithQCumulants.h:125
 AliFlowAnalysisWithQCumulants.h:126
 AliFlowAnalysisWithQCumulants.h:127
 AliFlowAnalysisWithQCumulants.h:128
 AliFlowAnalysisWithQCumulants.h:129
 AliFlowAnalysisWithQCumulants.h:130
 AliFlowAnalysisWithQCumulants.h:131
 AliFlowAnalysisWithQCumulants.h:132
 AliFlowAnalysisWithQCumulants.h:133
 AliFlowAnalysisWithQCumulants.h:134
 AliFlowAnalysisWithQCumulants.h:135
 AliFlowAnalysisWithQCumulants.h:136
 AliFlowAnalysisWithQCumulants.h:137
 AliFlowAnalysisWithQCumulants.h:138
 AliFlowAnalysisWithQCumulants.h:139
 AliFlowAnalysisWithQCumulants.h:140
 AliFlowAnalysisWithQCumulants.h:141
 AliFlowAnalysisWithQCumulants.h:142
 AliFlowAnalysisWithQCumulants.h:143
 AliFlowAnalysisWithQCumulants.h:144
 AliFlowAnalysisWithQCumulants.h:145
 AliFlowAnalysisWithQCumulants.h:146
 AliFlowAnalysisWithQCumulants.h:147
 AliFlowAnalysisWithQCumulants.h:148
 AliFlowAnalysisWithQCumulants.h:149
 AliFlowAnalysisWithQCumulants.h:150
 AliFlowAnalysisWithQCumulants.h:151
 AliFlowAnalysisWithQCumulants.h:152
 AliFlowAnalysisWithQCumulants.h:153
 AliFlowAnalysisWithQCumulants.h:154
 AliFlowAnalysisWithQCumulants.h:155
 AliFlowAnalysisWithQCumulants.h:156
 AliFlowAnalysisWithQCumulants.h:157
 AliFlowAnalysisWithQCumulants.h:158
 AliFlowAnalysisWithQCumulants.h:159
 AliFlowAnalysisWithQCumulants.h:160
 AliFlowAnalysisWithQCumulants.h:161
 AliFlowAnalysisWithQCumulants.h:162
 AliFlowAnalysisWithQCumulants.h:163
 AliFlowAnalysisWithQCumulants.h:164
 AliFlowAnalysisWithQCumulants.h:165
 AliFlowAnalysisWithQCumulants.h:166
 AliFlowAnalysisWithQCumulants.h:167
 AliFlowAnalysisWithQCumulants.h:168
 AliFlowAnalysisWithQCumulants.h:169
 AliFlowAnalysisWithQCumulants.h:170
 AliFlowAnalysisWithQCumulants.h:171
 AliFlowAnalysisWithQCumulants.h:172
 AliFlowAnalysisWithQCumulants.h:173
 AliFlowAnalysisWithQCumulants.h:174
 AliFlowAnalysisWithQCumulants.h:175
 AliFlowAnalysisWithQCumulants.h:176
 AliFlowAnalysisWithQCumulants.h:177
 AliFlowAnalysisWithQCumulants.h:178
 AliFlowAnalysisWithQCumulants.h:179
 AliFlowAnalysisWithQCumulants.h:180
 AliFlowAnalysisWithQCumulants.h:181
 AliFlowAnalysisWithQCumulants.h:182
 AliFlowAnalysisWithQCumulants.h:183
 AliFlowAnalysisWithQCumulants.h:184
 AliFlowAnalysisWithQCumulants.h:185
 AliFlowAnalysisWithQCumulants.h:186
 AliFlowAnalysisWithQCumulants.h:187
 AliFlowAnalysisWithQCumulants.h:188
 AliFlowAnalysisWithQCumulants.h:189
 AliFlowAnalysisWithQCumulants.h:190
 AliFlowAnalysisWithQCumulants.h:191
 AliFlowAnalysisWithQCumulants.h:192
 AliFlowAnalysisWithQCumulants.h:193
 AliFlowAnalysisWithQCumulants.h:194
 AliFlowAnalysisWithQCumulants.h:195
 AliFlowAnalysisWithQCumulants.h:196
 AliFlowAnalysisWithQCumulants.h:197
 AliFlowAnalysisWithQCumulants.h:198
 AliFlowAnalysisWithQCumulants.h:199
 AliFlowAnalysisWithQCumulants.h:200
 AliFlowAnalysisWithQCumulants.h:201
 AliFlowAnalysisWithQCumulants.h:202
 AliFlowAnalysisWithQCumulants.h:203
 AliFlowAnalysisWithQCumulants.h:204
 AliFlowAnalysisWithQCumulants.h:205
 AliFlowAnalysisWithQCumulants.h:206
 AliFlowAnalysisWithQCumulants.h:207
 AliFlowAnalysisWithQCumulants.h:208
 AliFlowAnalysisWithQCumulants.h:209
 AliFlowAnalysisWithQCumulants.h:210
 AliFlowAnalysisWithQCumulants.h:211
 AliFlowAnalysisWithQCumulants.h:212
 AliFlowAnalysisWithQCumulants.h:213
 AliFlowAnalysisWithQCumulants.h:214
 AliFlowAnalysisWithQCumulants.h:215
 AliFlowAnalysisWithQCumulants.h:216
 AliFlowAnalysisWithQCumulants.h:217
 AliFlowAnalysisWithQCumulants.h:218
 AliFlowAnalysisWithQCumulants.h:219
 AliFlowAnalysisWithQCumulants.h:220
 AliFlowAnalysisWithQCumulants.h:221
 AliFlowAnalysisWithQCumulants.h:222
 AliFlowAnalysisWithQCumulants.h:223
 AliFlowAnalysisWithQCumulants.h:224
 AliFlowAnalysisWithQCumulants.h:225
 AliFlowAnalysisWithQCumulants.h:226
 AliFlowAnalysisWithQCumulants.h:227
 AliFlowAnalysisWithQCumulants.h:228
 AliFlowAnalysisWithQCumulants.h:229
 AliFlowAnalysisWithQCumulants.h:230
 AliFlowAnalysisWithQCumulants.h:231
 AliFlowAnalysisWithQCumulants.h:232
 AliFlowAnalysisWithQCumulants.h:233
 AliFlowAnalysisWithQCumulants.h:234
 AliFlowAnalysisWithQCumulants.h:235
 AliFlowAnalysisWithQCumulants.h:236
 AliFlowAnalysisWithQCumulants.h:237
 AliFlowAnalysisWithQCumulants.h:238
 AliFlowAnalysisWithQCumulants.h:239
 AliFlowAnalysisWithQCumulants.h:240
 AliFlowAnalysisWithQCumulants.h:241
 AliFlowAnalysisWithQCumulants.h:242
 AliFlowAnalysisWithQCumulants.h:243
 AliFlowAnalysisWithQCumulants.h:244
 AliFlowAnalysisWithQCumulants.h:245
 AliFlowAnalysisWithQCumulants.h:246
 AliFlowAnalysisWithQCumulants.h:247
 AliFlowAnalysisWithQCumulants.h:248
 AliFlowAnalysisWithQCumulants.h:249
 AliFlowAnalysisWithQCumulants.h:250
 AliFlowAnalysisWithQCumulants.h:251
 AliFlowAnalysisWithQCumulants.h:252
 AliFlowAnalysisWithQCumulants.h:253
 AliFlowAnalysisWithQCumulants.h:254
 AliFlowAnalysisWithQCumulants.h:255
 AliFlowAnalysisWithQCumulants.h:256
 AliFlowAnalysisWithQCumulants.h:257
 AliFlowAnalysisWithQCumulants.h:258
 AliFlowAnalysisWithQCumulants.h:259
 AliFlowAnalysisWithQCumulants.h:260
 AliFlowAnalysisWithQCumulants.h:261
 AliFlowAnalysisWithQCumulants.h:262
 AliFlowAnalysisWithQCumulants.h:263
 AliFlowAnalysisWithQCumulants.h:264
 AliFlowAnalysisWithQCumulants.h:265
 AliFlowAnalysisWithQCumulants.h:266
 AliFlowAnalysisWithQCumulants.h:267
 AliFlowAnalysisWithQCumulants.h:268
 AliFlowAnalysisWithQCumulants.h:269
 AliFlowAnalysisWithQCumulants.h:270
 AliFlowAnalysisWithQCumulants.h:271
 AliFlowAnalysisWithQCumulants.h:272
 AliFlowAnalysisWithQCumulants.h:273
 AliFlowAnalysisWithQCumulants.h:274
 AliFlowAnalysisWithQCumulants.h:275
 AliFlowAnalysisWithQCumulants.h:276
 AliFlowAnalysisWithQCumulants.h:277
 AliFlowAnalysisWithQCumulants.h:278
 AliFlowAnalysisWithQCumulants.h:279
 AliFlowAnalysisWithQCumulants.h:280
 AliFlowAnalysisWithQCumulants.h:281
 AliFlowAnalysisWithQCumulants.h:282
 AliFlowAnalysisWithQCumulants.h:283
 AliFlowAnalysisWithQCumulants.h:284
 AliFlowAnalysisWithQCumulants.h:285
 AliFlowAnalysisWithQCumulants.h:286
 AliFlowAnalysisWithQCumulants.h:287
 AliFlowAnalysisWithQCumulants.h:288
 AliFlowAnalysisWithQCumulants.h:289
 AliFlowAnalysisWithQCumulants.h:290
 AliFlowAnalysisWithQCumulants.h:291
 AliFlowAnalysisWithQCumulants.h:292
 AliFlowAnalysisWithQCumulants.h:293
 AliFlowAnalysisWithQCumulants.h:294
 AliFlowAnalysisWithQCumulants.h:295
 AliFlowAnalysisWithQCumulants.h:296
 AliFlowAnalysisWithQCumulants.h:297
 AliFlowAnalysisWithQCumulants.h:298
 AliFlowAnalysisWithQCumulants.h:299
 AliFlowAnalysisWithQCumulants.h:300
 AliFlowAnalysisWithQCumulants.h:301
 AliFlowAnalysisWithQCumulants.h:302
 AliFlowAnalysisWithQCumulants.h:303
 AliFlowAnalysisWithQCumulants.h:304
 AliFlowAnalysisWithQCumulants.h:305
 AliFlowAnalysisWithQCumulants.h:306
 AliFlowAnalysisWithQCumulants.h:307
 AliFlowAnalysisWithQCumulants.h:308
 AliFlowAnalysisWithQCumulants.h:309
 AliFlowAnalysisWithQCumulants.h:310
 AliFlowAnalysisWithQCumulants.h:311
 AliFlowAnalysisWithQCumulants.h:312
 AliFlowAnalysisWithQCumulants.h:313
 AliFlowAnalysisWithQCumulants.h:314
 AliFlowAnalysisWithQCumulants.h:315
 AliFlowAnalysisWithQCumulants.h:316
 AliFlowAnalysisWithQCumulants.h:317
 AliFlowAnalysisWithQCumulants.h:318
 AliFlowAnalysisWithQCumulants.h:319
 AliFlowAnalysisWithQCumulants.h:320
 AliFlowAnalysisWithQCumulants.h:321
 AliFlowAnalysisWithQCumulants.h:322
 AliFlowAnalysisWithQCumulants.h:323
 AliFlowAnalysisWithQCumulants.h:324
 AliFlowAnalysisWithQCumulants.h:325
 AliFlowAnalysisWithQCumulants.h:326
 AliFlowAnalysisWithQCumulants.h:327
 AliFlowAnalysisWithQCumulants.h:328
 AliFlowAnalysisWithQCumulants.h:329
 AliFlowAnalysisWithQCumulants.h:330
 AliFlowAnalysisWithQCumulants.h:331
 AliFlowAnalysisWithQCumulants.h:332
 AliFlowAnalysisWithQCumulants.h:333
 AliFlowAnalysisWithQCumulants.h:334
 AliFlowAnalysisWithQCumulants.h:335
 AliFlowAnalysisWithQCumulants.h:336
 AliFlowAnalysisWithQCumulants.h:337
 AliFlowAnalysisWithQCumulants.h:338
 AliFlowAnalysisWithQCumulants.h:339
 AliFlowAnalysisWithQCumulants.h:340
 AliFlowAnalysisWithQCumulants.h:341
 AliFlowAnalysisWithQCumulants.h:342
 AliFlowAnalysisWithQCumulants.h:343
 AliFlowAnalysisWithQCumulants.h:344
 AliFlowAnalysisWithQCumulants.h:345
 AliFlowAnalysisWithQCumulants.h:346
 AliFlowAnalysisWithQCumulants.h:347
 AliFlowAnalysisWithQCumulants.h:348
 AliFlowAnalysisWithQCumulants.h:349
 AliFlowAnalysisWithQCumulants.h:350
 AliFlowAnalysisWithQCumulants.h:351
 AliFlowAnalysisWithQCumulants.h:352
 AliFlowAnalysisWithQCumulants.h:353
 AliFlowAnalysisWithQCumulants.h:354
 AliFlowAnalysisWithQCumulants.h:355
 AliFlowAnalysisWithQCumulants.h:356
 AliFlowAnalysisWithQCumulants.h:357
 AliFlowAnalysisWithQCumulants.h:358
 AliFlowAnalysisWithQCumulants.h:359
 AliFlowAnalysisWithQCumulants.h:360
 AliFlowAnalysisWithQCumulants.h:361
 AliFlowAnalysisWithQCumulants.h:362
 AliFlowAnalysisWithQCumulants.h:363
 AliFlowAnalysisWithQCumulants.h:364
 AliFlowAnalysisWithQCumulants.h:365
 AliFlowAnalysisWithQCumulants.h:366
 AliFlowAnalysisWithQCumulants.h:367
 AliFlowAnalysisWithQCumulants.h:368
 AliFlowAnalysisWithQCumulants.h:369
 AliFlowAnalysisWithQCumulants.h:370
 AliFlowAnalysisWithQCumulants.h:371
 AliFlowAnalysisWithQCumulants.h:372
 AliFlowAnalysisWithQCumulants.h:373
 AliFlowAnalysisWithQCumulants.h:374
 AliFlowAnalysisWithQCumulants.h:375
 AliFlowAnalysisWithQCumulants.h:376
 AliFlowAnalysisWithQCumulants.h:377
 AliFlowAnalysisWithQCumulants.h:378
 AliFlowAnalysisWithQCumulants.h:379
 AliFlowAnalysisWithQCumulants.h:380
 AliFlowAnalysisWithQCumulants.h:381
 AliFlowAnalysisWithQCumulants.h:382
 AliFlowAnalysisWithQCumulants.h:383
 AliFlowAnalysisWithQCumulants.h:384
 AliFlowAnalysisWithQCumulants.h:385
 AliFlowAnalysisWithQCumulants.h:386
 AliFlowAnalysisWithQCumulants.h:387
 AliFlowAnalysisWithQCumulants.h:388
 AliFlowAnalysisWithQCumulants.h:389
 AliFlowAnalysisWithQCumulants.h:390
 AliFlowAnalysisWithQCumulants.h:391
 AliFlowAnalysisWithQCumulants.h:392
 AliFlowAnalysisWithQCumulants.h:393
 AliFlowAnalysisWithQCumulants.h:394
 AliFlowAnalysisWithQCumulants.h:395
 AliFlowAnalysisWithQCumulants.h:396
 AliFlowAnalysisWithQCumulants.h:397
 AliFlowAnalysisWithQCumulants.h:398
 AliFlowAnalysisWithQCumulants.h:399
 AliFlowAnalysisWithQCumulants.h:400
 AliFlowAnalysisWithQCumulants.h:401
 AliFlowAnalysisWithQCumulants.h:402
 AliFlowAnalysisWithQCumulants.h:403
 AliFlowAnalysisWithQCumulants.h:404
 AliFlowAnalysisWithQCumulants.h:405
 AliFlowAnalysisWithQCumulants.h:406
 AliFlowAnalysisWithQCumulants.h:407
 AliFlowAnalysisWithQCumulants.h:408
 AliFlowAnalysisWithQCumulants.h:409
 AliFlowAnalysisWithQCumulants.h:410
 AliFlowAnalysisWithQCumulants.h:411
 AliFlowAnalysisWithQCumulants.h:412
 AliFlowAnalysisWithQCumulants.h:413
 AliFlowAnalysisWithQCumulants.h:414
 AliFlowAnalysisWithQCumulants.h:415
 AliFlowAnalysisWithQCumulants.h:416
 AliFlowAnalysisWithQCumulants.h:417
 AliFlowAnalysisWithQCumulants.h:418
 AliFlowAnalysisWithQCumulants.h:419
 AliFlowAnalysisWithQCumulants.h:420
 AliFlowAnalysisWithQCumulants.h:421
 AliFlowAnalysisWithQCumulants.h:422
 AliFlowAnalysisWithQCumulants.h:423
 AliFlowAnalysisWithQCumulants.h:424
 AliFlowAnalysisWithQCumulants.h:425
 AliFlowAnalysisWithQCumulants.h:426
 AliFlowAnalysisWithQCumulants.h:427
 AliFlowAnalysisWithQCumulants.h:428
 AliFlowAnalysisWithQCumulants.h:429
 AliFlowAnalysisWithQCumulants.h:430
 AliFlowAnalysisWithQCumulants.h:431
 AliFlowAnalysisWithQCumulants.h:432
 AliFlowAnalysisWithQCumulants.h:433
 AliFlowAnalysisWithQCumulants.h:434
 AliFlowAnalysisWithQCumulants.h:435
 AliFlowAnalysisWithQCumulants.h:436
 AliFlowAnalysisWithQCumulants.h:437
 AliFlowAnalysisWithQCumulants.h:438
 AliFlowAnalysisWithQCumulants.h:439
 AliFlowAnalysisWithQCumulants.h:440
 AliFlowAnalysisWithQCumulants.h:441
 AliFlowAnalysisWithQCumulants.h:442
 AliFlowAnalysisWithQCumulants.h:443
 AliFlowAnalysisWithQCumulants.h:444
 AliFlowAnalysisWithQCumulants.h:445
 AliFlowAnalysisWithQCumulants.h:446
 AliFlowAnalysisWithQCumulants.h:447
 AliFlowAnalysisWithQCumulants.h:448
 AliFlowAnalysisWithQCumulants.h:449
 AliFlowAnalysisWithQCumulants.h:450
 AliFlowAnalysisWithQCumulants.h:451
 AliFlowAnalysisWithQCumulants.h:452
 AliFlowAnalysisWithQCumulants.h:453
 AliFlowAnalysisWithQCumulants.h:454
 AliFlowAnalysisWithQCumulants.h:455
 AliFlowAnalysisWithQCumulants.h:456
 AliFlowAnalysisWithQCumulants.h:457
 AliFlowAnalysisWithQCumulants.h:458
 AliFlowAnalysisWithQCumulants.h:459
 AliFlowAnalysisWithQCumulants.h:460
 AliFlowAnalysisWithQCumulants.h:461
 AliFlowAnalysisWithQCumulants.h:462
 AliFlowAnalysisWithQCumulants.h:463
 AliFlowAnalysisWithQCumulants.h:464
 AliFlowAnalysisWithQCumulants.h:465
 AliFlowAnalysisWithQCumulants.h:466
 AliFlowAnalysisWithQCumulants.h:467
 AliFlowAnalysisWithQCumulants.h:468
 AliFlowAnalysisWithQCumulants.h:469
 AliFlowAnalysisWithQCumulants.h:470
 AliFlowAnalysisWithQCumulants.h:471
 AliFlowAnalysisWithQCumulants.h:472
 AliFlowAnalysisWithQCumulants.h:473
 AliFlowAnalysisWithQCumulants.h:474
 AliFlowAnalysisWithQCumulants.h:475
 AliFlowAnalysisWithQCumulants.h:476
 AliFlowAnalysisWithQCumulants.h:477
 AliFlowAnalysisWithQCumulants.h:478
 AliFlowAnalysisWithQCumulants.h:479
 AliFlowAnalysisWithQCumulants.h:480
 AliFlowAnalysisWithQCumulants.h:481
 AliFlowAnalysisWithQCumulants.h:482
 AliFlowAnalysisWithQCumulants.h:483
 AliFlowAnalysisWithQCumulants.h:484
 AliFlowAnalysisWithQCumulants.h:485
 AliFlowAnalysisWithQCumulants.h:486
 AliFlowAnalysisWithQCumulants.h:487
 AliFlowAnalysisWithQCumulants.h:488
 AliFlowAnalysisWithQCumulants.h:489
 AliFlowAnalysisWithQCumulants.h:490
 AliFlowAnalysisWithQCumulants.h:491
 AliFlowAnalysisWithQCumulants.h:492
 AliFlowAnalysisWithQCumulants.h:493
 AliFlowAnalysisWithQCumulants.h:494
 AliFlowAnalysisWithQCumulants.h:495
 AliFlowAnalysisWithQCumulants.h:496
 AliFlowAnalysisWithQCumulants.h:497
 AliFlowAnalysisWithQCumulants.h:498
 AliFlowAnalysisWithQCumulants.h:499
 AliFlowAnalysisWithQCumulants.h:500
 AliFlowAnalysisWithQCumulants.h:501
 AliFlowAnalysisWithQCumulants.h:502
 AliFlowAnalysisWithQCumulants.h:503
 AliFlowAnalysisWithQCumulants.h:504
 AliFlowAnalysisWithQCumulants.h:505
 AliFlowAnalysisWithQCumulants.h:506
 AliFlowAnalysisWithQCumulants.h:507
 AliFlowAnalysisWithQCumulants.h:508
 AliFlowAnalysisWithQCumulants.h:509
 AliFlowAnalysisWithQCumulants.h:510
 AliFlowAnalysisWithQCumulants.h:511
 AliFlowAnalysisWithQCumulants.h:512
 AliFlowAnalysisWithQCumulants.h:513
 AliFlowAnalysisWithQCumulants.h:514
 AliFlowAnalysisWithQCumulants.h:515
 AliFlowAnalysisWithQCumulants.h:516
 AliFlowAnalysisWithQCumulants.h:517
 AliFlowAnalysisWithQCumulants.h:518
 AliFlowAnalysisWithQCumulants.h:519
 AliFlowAnalysisWithQCumulants.h:520
 AliFlowAnalysisWithQCumulants.h:521
 AliFlowAnalysisWithQCumulants.h:522
 AliFlowAnalysisWithQCumulants.h:523
 AliFlowAnalysisWithQCumulants.h:524
 AliFlowAnalysisWithQCumulants.h:525
 AliFlowAnalysisWithQCumulants.h:526
 AliFlowAnalysisWithQCumulants.h:527
 AliFlowAnalysisWithQCumulants.h:528
 AliFlowAnalysisWithQCumulants.h:529
 AliFlowAnalysisWithQCumulants.h:530
 AliFlowAnalysisWithQCumulants.h:531
 AliFlowAnalysisWithQCumulants.h:532
 AliFlowAnalysisWithQCumulants.h:533
 AliFlowAnalysisWithQCumulants.h:534
 AliFlowAnalysisWithQCumulants.h:535
 AliFlowAnalysisWithQCumulants.h:536
 AliFlowAnalysisWithQCumulants.h:537
 AliFlowAnalysisWithQCumulants.h:538
 AliFlowAnalysisWithQCumulants.h:539
 AliFlowAnalysisWithQCumulants.h:540
 AliFlowAnalysisWithQCumulants.h:541
 AliFlowAnalysisWithQCumulants.h:542
 AliFlowAnalysisWithQCumulants.h:543
 AliFlowAnalysisWithQCumulants.h:544
 AliFlowAnalysisWithQCumulants.h:545
 AliFlowAnalysisWithQCumulants.h:546
 AliFlowAnalysisWithQCumulants.h:547
 AliFlowAnalysisWithQCumulants.h:548
 AliFlowAnalysisWithQCumulants.h:549
 AliFlowAnalysisWithQCumulants.h:550
 AliFlowAnalysisWithQCumulants.h:551
 AliFlowAnalysisWithQCumulants.h:552
 AliFlowAnalysisWithQCumulants.h:553
 AliFlowAnalysisWithQCumulants.h:554
 AliFlowAnalysisWithQCumulants.h:555
 AliFlowAnalysisWithQCumulants.h:556
 AliFlowAnalysisWithQCumulants.h:557
 AliFlowAnalysisWithQCumulants.h:558
 AliFlowAnalysisWithQCumulants.h:559
 AliFlowAnalysisWithQCumulants.h:560
 AliFlowAnalysisWithQCumulants.h:561
 AliFlowAnalysisWithQCumulants.h:562
 AliFlowAnalysisWithQCumulants.h:563
 AliFlowAnalysisWithQCumulants.h:564
 AliFlowAnalysisWithQCumulants.h:565
 AliFlowAnalysisWithQCumulants.h:566
 AliFlowAnalysisWithQCumulants.h:567
 AliFlowAnalysisWithQCumulants.h:568
 AliFlowAnalysisWithQCumulants.h:569
 AliFlowAnalysisWithQCumulants.h:570
 AliFlowAnalysisWithQCumulants.h:571
 AliFlowAnalysisWithQCumulants.h:572
 AliFlowAnalysisWithQCumulants.h:573
 AliFlowAnalysisWithQCumulants.h:574
 AliFlowAnalysisWithQCumulants.h:575
 AliFlowAnalysisWithQCumulants.h:576
 AliFlowAnalysisWithQCumulants.h:577
 AliFlowAnalysisWithQCumulants.h:578
 AliFlowAnalysisWithQCumulants.h:579
 AliFlowAnalysisWithQCumulants.h:580
 AliFlowAnalysisWithQCumulants.h:581
 AliFlowAnalysisWithQCumulants.h:582
 AliFlowAnalysisWithQCumulants.h:583
 AliFlowAnalysisWithQCumulants.h:584
 AliFlowAnalysisWithQCumulants.h:585
 AliFlowAnalysisWithQCumulants.h:586
 AliFlowAnalysisWithQCumulants.h:587
 AliFlowAnalysisWithQCumulants.h:588
 AliFlowAnalysisWithQCumulants.h:589
 AliFlowAnalysisWithQCumulants.h:590
 AliFlowAnalysisWithQCumulants.h:591
 AliFlowAnalysisWithQCumulants.h:592
 AliFlowAnalysisWithQCumulants.h:593
 AliFlowAnalysisWithQCumulants.h:594
 AliFlowAnalysisWithQCumulants.h:595
 AliFlowAnalysisWithQCumulants.h:596
 AliFlowAnalysisWithQCumulants.h:597
 AliFlowAnalysisWithQCumulants.h:598
 AliFlowAnalysisWithQCumulants.h:599
 AliFlowAnalysisWithQCumulants.h:600
 AliFlowAnalysisWithQCumulants.h:601
 AliFlowAnalysisWithQCumulants.h:602
 AliFlowAnalysisWithQCumulants.h:603
 AliFlowAnalysisWithQCumulants.h:604
 AliFlowAnalysisWithQCumulants.h:605
 AliFlowAnalysisWithQCumulants.h:606
 AliFlowAnalysisWithQCumulants.h:607
 AliFlowAnalysisWithQCumulants.h:608
 AliFlowAnalysisWithQCumulants.h:609
 AliFlowAnalysisWithQCumulants.h:610
 AliFlowAnalysisWithQCumulants.h:611
 AliFlowAnalysisWithQCumulants.h:612
 AliFlowAnalysisWithQCumulants.h:613
 AliFlowAnalysisWithQCumulants.h:614
 AliFlowAnalysisWithQCumulants.h:615
 AliFlowAnalysisWithQCumulants.h:616
 AliFlowAnalysisWithQCumulants.h:617
 AliFlowAnalysisWithQCumulants.h:618
 AliFlowAnalysisWithQCumulants.h:619
 AliFlowAnalysisWithQCumulants.h:620
 AliFlowAnalysisWithQCumulants.h:621
 AliFlowAnalysisWithQCumulants.h:622
 AliFlowAnalysisWithQCumulants.h:623
 AliFlowAnalysisWithQCumulants.h:624
 AliFlowAnalysisWithQCumulants.h:625
 AliFlowAnalysisWithQCumulants.h:626
 AliFlowAnalysisWithQCumulants.h:627
 AliFlowAnalysisWithQCumulants.h:628
 AliFlowAnalysisWithQCumulants.h:629
 AliFlowAnalysisWithQCumulants.h:630
 AliFlowAnalysisWithQCumulants.h:631
 AliFlowAnalysisWithQCumulants.h:632
 AliFlowAnalysisWithQCumulants.h:633
 AliFlowAnalysisWithQCumulants.h:634
 AliFlowAnalysisWithQCumulants.h:635
 AliFlowAnalysisWithQCumulants.h:636
 AliFlowAnalysisWithQCumulants.h:637
 AliFlowAnalysisWithQCumulants.h:638
 AliFlowAnalysisWithQCumulants.h:639
 AliFlowAnalysisWithQCumulants.h:640
 AliFlowAnalysisWithQCumulants.h:641
 AliFlowAnalysisWithQCumulants.h:642
 AliFlowAnalysisWithQCumulants.h:643
 AliFlowAnalysisWithQCumulants.h:644
 AliFlowAnalysisWithQCumulants.h:645
 AliFlowAnalysisWithQCumulants.h:646
 AliFlowAnalysisWithQCumulants.h:647
 AliFlowAnalysisWithQCumulants.h:648
 AliFlowAnalysisWithQCumulants.h:649
 AliFlowAnalysisWithQCumulants.h:650
 AliFlowAnalysisWithQCumulants.h:651
 AliFlowAnalysisWithQCumulants.h:652
 AliFlowAnalysisWithQCumulants.h:653
 AliFlowAnalysisWithQCumulants.h:654
 AliFlowAnalysisWithQCumulants.h:655
 AliFlowAnalysisWithQCumulants.h:656
 AliFlowAnalysisWithQCumulants.h:657
 AliFlowAnalysisWithQCumulants.h:658
 AliFlowAnalysisWithQCumulants.h:659
 AliFlowAnalysisWithQCumulants.h:660
 AliFlowAnalysisWithQCumulants.h:661
 AliFlowAnalysisWithQCumulants.h:662
 AliFlowAnalysisWithQCumulants.h:663
 AliFlowAnalysisWithQCumulants.h:664
 AliFlowAnalysisWithQCumulants.h:665
 AliFlowAnalysisWithQCumulants.h:666
 AliFlowAnalysisWithQCumulants.h:667
 AliFlowAnalysisWithQCumulants.h:668
 AliFlowAnalysisWithQCumulants.h:669
 AliFlowAnalysisWithQCumulants.h:670
 AliFlowAnalysisWithQCumulants.h:671
 AliFlowAnalysisWithQCumulants.h:672
 AliFlowAnalysisWithQCumulants.h:673
 AliFlowAnalysisWithQCumulants.h:674
 AliFlowAnalysisWithQCumulants.h:675
 AliFlowAnalysisWithQCumulants.h:676
 AliFlowAnalysisWithQCumulants.h:677
 AliFlowAnalysisWithQCumulants.h:678
 AliFlowAnalysisWithQCumulants.h:679
 AliFlowAnalysisWithQCumulants.h:680
 AliFlowAnalysisWithQCumulants.h:681
 AliFlowAnalysisWithQCumulants.h:682
 AliFlowAnalysisWithQCumulants.h:683
 AliFlowAnalysisWithQCumulants.h:684
 AliFlowAnalysisWithQCumulants.h:685
 AliFlowAnalysisWithQCumulants.h:686
 AliFlowAnalysisWithQCumulants.h:687
 AliFlowAnalysisWithQCumulants.h:688
 AliFlowAnalysisWithQCumulants.h:689
 AliFlowAnalysisWithQCumulants.h:690
 AliFlowAnalysisWithQCumulants.h:691
 AliFlowAnalysisWithQCumulants.h:692
 AliFlowAnalysisWithQCumulants.h:693
 AliFlowAnalysisWithQCumulants.h:694
 AliFlowAnalysisWithQCumulants.h:695
 AliFlowAnalysisWithQCumulants.h:696
 AliFlowAnalysisWithQCumulants.h:697
 AliFlowAnalysisWithQCumulants.h:698
 AliFlowAnalysisWithQCumulants.h:699
 AliFlowAnalysisWithQCumulants.h:700
 AliFlowAnalysisWithQCumulants.h:701
 AliFlowAnalysisWithQCumulants.h:702
 AliFlowAnalysisWithQCumulants.h:703
 AliFlowAnalysisWithQCumulants.h:704
 AliFlowAnalysisWithQCumulants.h:705
 AliFlowAnalysisWithQCumulants.h:706
 AliFlowAnalysisWithQCumulants.h:707
 AliFlowAnalysisWithQCumulants.h:708
 AliFlowAnalysisWithQCumulants.h:709
 AliFlowAnalysisWithQCumulants.h:710
 AliFlowAnalysisWithQCumulants.h:711
 AliFlowAnalysisWithQCumulants.h:712
 AliFlowAnalysisWithQCumulants.h:713
 AliFlowAnalysisWithQCumulants.h:714
 AliFlowAnalysisWithQCumulants.h:715
 AliFlowAnalysisWithQCumulants.h:716
 AliFlowAnalysisWithQCumulants.h:717
 AliFlowAnalysisWithQCumulants.h:718
 AliFlowAnalysisWithQCumulants.h:719
 AliFlowAnalysisWithQCumulants.h:720
 AliFlowAnalysisWithQCumulants.h:721
 AliFlowAnalysisWithQCumulants.h:722
 AliFlowAnalysisWithQCumulants.h:723
 AliFlowAnalysisWithQCumulants.h:724
 AliFlowAnalysisWithQCumulants.h:725
 AliFlowAnalysisWithQCumulants.h:726
 AliFlowAnalysisWithQCumulants.h:727
 AliFlowAnalysisWithQCumulants.h:728
 AliFlowAnalysisWithQCumulants.h:729
 AliFlowAnalysisWithQCumulants.h:730
 AliFlowAnalysisWithQCumulants.h:731
 AliFlowAnalysisWithQCumulants.h:732
 AliFlowAnalysisWithQCumulants.h:733
 AliFlowAnalysisWithQCumulants.h:734
 AliFlowAnalysisWithQCumulants.h:735
 AliFlowAnalysisWithQCumulants.h:736
 AliFlowAnalysisWithQCumulants.h:737
 AliFlowAnalysisWithQCumulants.h:738
 AliFlowAnalysisWithQCumulants.h:739
 AliFlowAnalysisWithQCumulants.h:740
 AliFlowAnalysisWithQCumulants.h:741
 AliFlowAnalysisWithQCumulants.h:742
 AliFlowAnalysisWithQCumulants.h:743
 AliFlowAnalysisWithQCumulants.h:744
 AliFlowAnalysisWithQCumulants.h:745
 AliFlowAnalysisWithQCumulants.h:746
 AliFlowAnalysisWithQCumulants.h:747
 AliFlowAnalysisWithQCumulants.h:748
 AliFlowAnalysisWithQCumulants.h:749
 AliFlowAnalysisWithQCumulants.h:750
 AliFlowAnalysisWithQCumulants.h:751
 AliFlowAnalysisWithQCumulants.h:752
 AliFlowAnalysisWithQCumulants.h:753
 AliFlowAnalysisWithQCumulants.h:754
 AliFlowAnalysisWithQCumulants.h:755
 AliFlowAnalysisWithQCumulants.h:756
 AliFlowAnalysisWithQCumulants.h:757
 AliFlowAnalysisWithQCumulants.h:758
 AliFlowAnalysisWithQCumulants.h:759
 AliFlowAnalysisWithQCumulants.h:760
 AliFlowAnalysisWithQCumulants.h:761
 AliFlowAnalysisWithQCumulants.h:762
 AliFlowAnalysisWithQCumulants.h:763
 AliFlowAnalysisWithQCumulants.h:764
 AliFlowAnalysisWithQCumulants.h:765
 AliFlowAnalysisWithQCumulants.h:766
 AliFlowAnalysisWithQCumulants.h:767
 AliFlowAnalysisWithQCumulants.h:768
 AliFlowAnalysisWithQCumulants.h:769
 AliFlowAnalysisWithQCumulants.h:770
 AliFlowAnalysisWithQCumulants.h:771
 AliFlowAnalysisWithQCumulants.h:772
 AliFlowAnalysisWithQCumulants.h:773
 AliFlowAnalysisWithQCumulants.h:774
 AliFlowAnalysisWithQCumulants.h:775
 AliFlowAnalysisWithQCumulants.h:776
 AliFlowAnalysisWithQCumulants.h:777
 AliFlowAnalysisWithQCumulants.h:778
 AliFlowAnalysisWithQCumulants.h:779
 AliFlowAnalysisWithQCumulants.h:780
 AliFlowAnalysisWithQCumulants.h:781
 AliFlowAnalysisWithQCumulants.h:782
 AliFlowAnalysisWithQCumulants.h:783
 AliFlowAnalysisWithQCumulants.h:784
 AliFlowAnalysisWithQCumulants.h:785
 AliFlowAnalysisWithQCumulants.h:786
 AliFlowAnalysisWithQCumulants.h:787
 AliFlowAnalysisWithQCumulants.h:788
 AliFlowAnalysisWithQCumulants.h:789
 AliFlowAnalysisWithQCumulants.h:790
 AliFlowAnalysisWithQCumulants.h:791
 AliFlowAnalysisWithQCumulants.h:792
 AliFlowAnalysisWithQCumulants.h:793
 AliFlowAnalysisWithQCumulants.h:794
 AliFlowAnalysisWithQCumulants.h:795
 AliFlowAnalysisWithQCumulants.h:796
 AliFlowAnalysisWithQCumulants.h:797
 AliFlowAnalysisWithQCumulants.h:798
 AliFlowAnalysisWithQCumulants.h:799
 AliFlowAnalysisWithQCumulants.h:800
 AliFlowAnalysisWithQCumulants.h:801
 AliFlowAnalysisWithQCumulants.h:802
 AliFlowAnalysisWithQCumulants.h:803
 AliFlowAnalysisWithQCumulants.h:804
 AliFlowAnalysisWithQCumulants.h:805
 AliFlowAnalysisWithQCumulants.h:806
 AliFlowAnalysisWithQCumulants.h:807
 AliFlowAnalysisWithQCumulants.h:808
 AliFlowAnalysisWithQCumulants.h:809
 AliFlowAnalysisWithQCumulants.h:810
 AliFlowAnalysisWithQCumulants.h:811
 AliFlowAnalysisWithQCumulants.h:812
 AliFlowAnalysisWithQCumulants.h:813
 AliFlowAnalysisWithQCumulants.h:814
 AliFlowAnalysisWithQCumulants.h:815
 AliFlowAnalysisWithQCumulants.h:816
 AliFlowAnalysisWithQCumulants.h:817
 AliFlowAnalysisWithQCumulants.h:818
 AliFlowAnalysisWithQCumulants.h:819
 AliFlowAnalysisWithQCumulants.h:820
 AliFlowAnalysisWithQCumulants.h:821
 AliFlowAnalysisWithQCumulants.h:822
 AliFlowAnalysisWithQCumulants.h:823
 AliFlowAnalysisWithQCumulants.h:824
 AliFlowAnalysisWithQCumulants.h:825
 AliFlowAnalysisWithQCumulants.h:826
 AliFlowAnalysisWithQCumulants.h:827
 AliFlowAnalysisWithQCumulants.h:828
 AliFlowAnalysisWithQCumulants.h:829
 AliFlowAnalysisWithQCumulants.h:830
 AliFlowAnalysisWithQCumulants.h:831
 AliFlowAnalysisWithQCumulants.h:832
 AliFlowAnalysisWithQCumulants.h:833
 AliFlowAnalysisWithQCumulants.h:834
 AliFlowAnalysisWithQCumulants.h:835
 AliFlowAnalysisWithQCumulants.h:836
 AliFlowAnalysisWithQCumulants.h:837
 AliFlowAnalysisWithQCumulants.h:838
 AliFlowAnalysisWithQCumulants.h:839
 AliFlowAnalysisWithQCumulants.h:840
 AliFlowAnalysisWithQCumulants.h:841
 AliFlowAnalysisWithQCumulants.h:842
 AliFlowAnalysisWithQCumulants.h:843
 AliFlowAnalysisWithQCumulants.h:844
 AliFlowAnalysisWithQCumulants.h:845
 AliFlowAnalysisWithQCumulants.h:846
 AliFlowAnalysisWithQCumulants.h:847
 AliFlowAnalysisWithQCumulants.h:848
 AliFlowAnalysisWithQCumulants.h:849
 AliFlowAnalysisWithQCumulants.h:850
 AliFlowAnalysisWithQCumulants.h:851
 AliFlowAnalysisWithQCumulants.h:852
 AliFlowAnalysisWithQCumulants.h:853
 AliFlowAnalysisWithQCumulants.h:854
 AliFlowAnalysisWithQCumulants.h:855
 AliFlowAnalysisWithQCumulants.h:856
 AliFlowAnalysisWithQCumulants.h:857
 AliFlowAnalysisWithQCumulants.h:858