#ifndef ALIFLOWANALYSISWITHMIXEDHARMONICS_H
#define ALIFLOWANALYSISWITHMIXEDHARMONICS_H
#include "TMatrixD.h"
class TDirectoryFile;
class TList;
class TFile;
class TH1F;
class TH1D;
class TH2D;
class TProfile;
class TProfile2D;
class AliFlowEventSimple;
class AliFlowCommonConstants;
class AliFlowCommonHist;
class AliFlowCommonHistResults;
class AliFlowAnalysisWithMixedHarmonics
{
public:
AliFlowAnalysisWithMixedHarmonics();
virtual ~AliFlowAnalysisWithMixedHarmonics();
virtual void InitializeArrays();
virtual void Init();
virtual void CrossCheckSettings();
virtual void AccessConstants(TString method);
virtual void BookAndNestAllLists();
virtual void BookProfileHoldingSettings();
virtual void BookCommonHistograms();
virtual void BookAllEventByEventQuantities();
virtual void BookAllAllEventQuantities();
virtual void BookDefault();
virtual void BookVsM();
virtual void BookDifferential();
virtual void BookAndFillWeightsHistograms();
virtual void StoreHarmonic();
virtual void Make(AliFlowEventSimple *anEvent);
virtual void CheckPointersUsedInMake();
virtual void Calculate3pCorrelator();
virtual void Calculate5pCorrelator();
virtual void CalculateNonIsotropicTerms();
virtual void CalculateDifferential3pCorrelator(Double_t &gIntegratedValue);
virtual void ResetEventByEventQuantities();
virtual void Finish();
virtual void AccessSettings();
virtual void CheckPointersUsedInFinish();
virtual void CorrectForDetectorEffects();
virtual void CorrectForDetectorEffectsVsM();
virtual void PrintOnTheScreen();
virtual void GetCorrelatorAndError(TProfile *g3pCorrelatorVsPt,
Double_t &g3pCorrelatorValue,
Double_t &g3pCorrelatorError);
virtual void GetOutputHistograms(TList *outputListHistos);
virtual void GetPointersForBaseHistograms();
virtual void GetPointersForCommonHistograms();
virtual void GetPointersForAllEventProfiles();
virtual void GetPointersForResultsHistograms();
virtual void WriteHistograms(TString outputFileName);
virtual void WriteHistograms(TDirectoryFile *outputFileName);
void SetHistList(TList* const hl) {this->fHistList = hl;}
TList* GetHistList() const {return this->fHistList;}
void SetHistListName(const char *hln) {this->fHistListName->Append(*hln);};
TString *GetHistListName() const {return this->fHistListName;};
void SetHarmonic(Int_t const harmonic) {this->fHarmonic = harmonic;};
Int_t GetHarmonic() const {return this->fHarmonic;};
void SetAnalysisLabel(const char *al) {this->fAnalysisLabel->Append(*al);};
TString *GetAnalysisLabel() const {return this->fAnalysisLabel;};
void SetAnalysisSettings(TProfile* const as) {this->fAnalysisSettings = as;};
TProfile* GetAnalysisSettings() const {return this->fAnalysisSettings;};
void SetNoOfMultipicityBins(Int_t const nomb) {this->fNoOfMultipicityBins = nomb;};
Int_t GetNoOfMultipicityBins() const {return this->fNoOfMultipicityBins;};
void SetMultipicityBinWidth(Double_t const mbw) {this->fMultipicityBinWidth = mbw;};
Double_t GetMultipicityBinWidth() const {return this->fMultipicityBinWidth;};
void SetMinMultiplicity(Double_t const mm) {this->fMinMultiplicity = mm;};
Double_t GetMinMultiplicity() const {return this->fMinMultiplicity;};
void SetOppositeChargesPOI(Bool_t const ocp) {this->fOppositeChargesPOI = ocp;};
Bool_t GetOppositeChargesPOI() const {return this->fOppositeChargesPOI;};
void SetEvaluateDifferential3pCorrelator(Bool_t const ed3pc) {this->fEvaluateDifferential3pCorrelator = ed3pc;};
Bool_t GetEvaluateDifferential3pCorrelator() const {return this->fEvaluateDifferential3pCorrelator;};
void SetCorrectForDetectorEffects(Bool_t const cfde) {this->fCorrectForDetectorEffects = cfde;};
Bool_t GetCorrectForDetectorEffects() const {return this->fCorrectForDetectorEffects;};
void SetPrintOnTheScreen(Bool_t const pots) {this->fPrintOnTheScreen = pots;};
Bool_t GetPrintOnTheScreen() const {return this->fPrintOnTheScreen;};
void SetCalculateVsM(Bool_t const cvm) {this->fCalculateVsM = cvm;};
Bool_t GetCalculateVsM() const {return this->fCalculateVsM;};
void SetShowBinLabelsVsM(Bool_t const sblvm) {this->fShowBinLabelsVsM = sblvm;};
Bool_t GetShowBinLabelsVsM() const {return this->fShowBinLabelsVsM;};
void SetCommonHists(AliFlowCommonHist* const ch) {this->fCommonHists = ch;};
AliFlowCommonHist* GetCommonHists() const {return this->fCommonHists;};
void SetCommonConstants(TProfile* const cc) {this->fCommonConstants = cc;};
TProfile* GetCommonConstants() const {return this->fCommonConstants;};
void SetWeightsList(TList* const wl) {this->fWeightsList = (TList*)wl->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 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;};
void SetProfileList(TList* const plist) {this->fProfileList = plist;}
TList* GetProfileList() const {return this->fProfileList;}
void Set3pCorrelatorPro(TProfile* const s3pPro) {this->f3pCorrelatorPro = s3pPro;};
TProfile* Get3pCorrelatorPro() const {return this->f3pCorrelatorPro;};
void Set5pCorrelatorPro(TProfile* const s5pPro) {this->f5pCorrelatorPro = s5pPro;};
TProfile* Get5pCorrelatorPro() const {return this->f5pCorrelatorPro;};
void SetNonIsotropicTermsPro(TProfile* const nitPro) {this->fNonIsotropicTermsPro = nitPro;};
TProfile* GetNonIsotropicTermsPro() const {return this->fNonIsotropicTermsPro;};
void Set3pCorrelatorVsMPro(TProfile* const s3pVsMPro) {this->f3pCorrelatorVsMPro = s3pVsMPro;};
TProfile* Get3pCorrelatorVsMPro() const {return this->f3pCorrelatorVsMPro;};
void Set3pPOICorrelatorVsM(TProfile* const s3pPOIVsM) {this->f3pPOICorrelatorVsM = s3pPOIVsM;};
TProfile* Get3pPOICorrelatorVsM() const {return this->f3pPOICorrelatorVsM;};
void SetNonIsotropicTermsVsMPro(TProfile2D* const nitVsMPro) {this->fNonIsotropicTermsVsMPro = nitVsMPro;};
TProfile2D* GetNonIsotropicTermsVsMPro() const {return this->fNonIsotropicTermsVsMPro;};
void Set2pCorrelatorCosPsiDiffPtDiff(TProfile* const g2pCorrelatorCosPsiDiffPtDiff) {this->f2pCorrelatorCosPsiDiffPtDiff = g2pCorrelatorCosPsiDiffPtDiff;};
TProfile* Get2pCorrelatorCosPsiDiffPtDiff() const {return this->f2pCorrelatorCosPsiDiffPtDiff;};
void Set2pCorrelatorCosPsiSumPtDiff(TProfile* const g2pCorrelatorCosPsiSumPtDiff) {this->f2pCorrelatorCosPsiSumPtDiff = g2pCorrelatorCosPsiSumPtDiff;};
TProfile* Get2pCorrelatorCosPsiSumPtDiff() const {return this->f2pCorrelatorCosPsiSumPtDiff;};
void Set2pCorrelatorSinPsiDiffPtDiff(TProfile* const g2pCorrelatorSinPsiDiffPtDiff) {this->f2pCorrelatorSinPsiDiffPtDiff = g2pCorrelatorSinPsiDiffPtDiff;};
TProfile* Get2pCorrelatorSinPsiDiffPtDiff() const {return this->f2pCorrelatorSinPsiDiffPtDiff;};
void Set2pCorrelatorSinPsiSumPtDiff(TProfile* const g2pCorrelatorSinPsiSumPtDiff) {this->f2pCorrelatorSinPsiSumPtDiff = g2pCorrelatorSinPsiSumPtDiff;};
TProfile* Get2pCorrelatorSinPsiSumPtDiff() const {return this->f2pCorrelatorSinPsiSumPtDiff;};
void Set2pCorrelatorCosPsiDiffPtSum(TProfile* const g2pCorrelatorCosPsiDiffPtSum) {this->f2pCorrelatorCosPsiDiffPtSum = g2pCorrelatorCosPsiDiffPtSum;};
TProfile* Get2pCorrelatorCosPsiDiffPtSum() const {return this->f2pCorrelatorCosPsiDiffPtSum;};
void Set2pCorrelatorCosPsiSumPtSum(TProfile* const g2pCorrelatorCosPsiSumPtSum) {this->f2pCorrelatorCosPsiSumPtSum = g2pCorrelatorCosPsiSumPtSum;};
TProfile* Get2pCorrelatorCosPsiSumPtSum() const {return this->f2pCorrelatorCosPsiSumPtSum;};
void Set2pCorrelatorSinPsiDiffPtSum(TProfile* const g2pCorrelatorSinPsiDiffPtSum) {this->f2pCorrelatorSinPsiDiffPtSum = g2pCorrelatorSinPsiDiffPtSum;};
TProfile* Get2pCorrelatorSinPsiDiffPtSum() const {return this->f2pCorrelatorSinPsiDiffPtSum;};
void Set2pCorrelatorSinPsiSumPtSum(TProfile* const g2pCorrelatorSinPsiSumPtSum) {this->f2pCorrelatorSinPsiSumPtSum = g2pCorrelatorSinPsiSumPtSum;};
TProfile* Get2pCorrelatorSinPsiSumPtSum() const {return this->f2pCorrelatorSinPsiSumPtSum;};
void Set2pCorrelatorCosPsiDiffEtaDiff(TProfile* const g2pCorrelatorCosPsiDiffEtaDiff) {this->f2pCorrelatorCosPsiDiffEtaDiff = g2pCorrelatorCosPsiDiffEtaDiff;};
TProfile* Get2pCorrelatorCosPsiDiffEtaDiff() const {return this->f2pCorrelatorCosPsiDiffEtaDiff;};
void Set2pCorrelatorCosPsiSumEtaDiff(TProfile* const g2pCorrelatorCosPsiSumEtaDiff) {this->f2pCorrelatorCosPsiSumEtaDiff = g2pCorrelatorCosPsiSumEtaDiff;};
TProfile* Get2pCorrelatorCosPsiSumEtaDiff() const {return this->f2pCorrelatorCosPsiSumEtaDiff;};
void Set2pCorrelatorSinPsiDiffEtaDiff(TProfile* const g2pCorrelatorSinPsiDiffEtaDiff) {this->f2pCorrelatorSinPsiDiffEtaDiff = g2pCorrelatorSinPsiDiffEtaDiff;};
TProfile* Get2pCorrelatorSinPsiDiffEtaDiff() const {return this->f2pCorrelatorSinPsiDiffEtaDiff;};
void Set2pCorrelatorSinPsiSumEtaDiff(TProfile* const g2pCorrelatorSinPsiSumEtaDiff) {this->f2pCorrelatorSinPsiSumEtaDiff = g2pCorrelatorSinPsiSumEtaDiff;};
TProfile* Get2pCorrelatorSinPsiSumEtaDiff() const {return this->f2pCorrelatorSinPsiSumEtaDiff;};
void Set2pCorrelatorCosPsiDiffEtaSum(TProfile* const g2pCorrelatorCosPsiDiffEtaSum) {this->f2pCorrelatorCosPsiDiffEtaSum = g2pCorrelatorCosPsiDiffEtaSum;};
TProfile* Get2pCorrelatorCosPsiDiffEtaSum() const {return this->f2pCorrelatorCosPsiDiffEtaSum;};
void Set2pCorrelatorCosPsiSumEtaSum(TProfile* const g2pCorrelatorCosPsiSumEtaSum) {this->f2pCorrelatorCosPsiSumEtaSum = g2pCorrelatorCosPsiSumEtaSum;};
TProfile* Get2pCorrelatorCosPsiSumEtaSum() const {return this->f2pCorrelatorCosPsiSumEtaSum;};
void Set2pCorrelatorSinPsiDiffEtaSum(TProfile* const g2pCorrelatorSinPsiDiffEtaSum) {this->f2pCorrelatorSinPsiDiffEtaSum = g2pCorrelatorSinPsiDiffEtaSum;};
TProfile* Get2pCorrelatorSinPsiDiffEtaSum() const {return this->f2pCorrelatorSinPsiDiffEtaSum;};
void Set2pCorrelatorSinPsiSumEtaSum(TProfile* const g2pCorrelatorSinPsiSumEtaSum) {this->f2pCorrelatorSinPsiSumEtaSum = g2pCorrelatorSinPsiSumEtaSum;};
TProfile* Get2pCorrelatorSinPsiSumEtaSum() const {return this->f2pCorrelatorSinPsiSumEtaSum;};
void SetResultsList(TList* const rlist) {this->fResultsList = rlist;}
TList* GetResultsList() const {return this->fResultsList;}
void Set3pCorrelatorHist(TH1D* const s3pHist) {this->f3pCorrelatorHist = s3pHist;};
TH1D* Get3pCorrelatorHist() const {return this->f3pCorrelatorHist;};
void Set3pCorrelatorVsMHist(TH1D* const s3pVsMHist) {this->f3pCorrelatorVsMHist = s3pVsMHist;};
TH1D* Get3pCorrelatorVsMHist() const {return this->f3pCorrelatorVsMHist;};
void SetDetectorBiasHist(TH1D* const dbHist) {this->fDetectorBiasHist = dbHist;};
TH1D* GetDetectorBiasHist() const {return this->fDetectorBiasHist;};
void SetDetectorBiasVsMHist(TH1D* const dbVsMHist) {this->fDetectorBiasVsMHist = dbVsMHist;};
TH1D* GetDetectorBiasVsMHist() const {return this->fDetectorBiasVsMHist;};
void Set3pCorrelatorVsPtSumDiffPro(TProfile* const s3pcvpsd, Int_t const sd) {this->f3pCorrelatorVsPtSumDiffPro[sd] = s3pcvpsd;};
TProfile* Get3pCorrelatorVsPtSumDiffPro(Int_t sd) const {return this->f3pCorrelatorVsPtSumDiffPro[sd];};
void Set3pCorrelatorVsEtaSumDiffPro(TProfile* const s3pcvpsd, Int_t const sd) {this->f3pCorrelatorVsEtaSumDiffPro[sd] = s3pcvpsd;};
TProfile* Get3pCorrelatorVsEtaSumDiffPro(Int_t sd) const {return this->f3pCorrelatorVsEtaSumDiffPro[sd];};
void SetNonIsotropicTermsList(TList* const nitlist) {this->fNonIsotropicTermsList = nitlist;}
TList* GetNonIsotropicTermsList() const {return this->fNonIsotropicTermsList;}
void SetNonIsotropicTermsVsPtSumDiffPro(TProfile* const nt, Int_t const sd, Int_t const t) {this->fNonIsotropicTermsVsPtSumDiffPro[sd][t] = nt;};
TProfile* GetNonIsotropicTermsVsPtSumDiffPro(Int_t sd, Int_t t) const {return this->fNonIsotropicTermsVsPtSumDiffPro[sd][t];};
void SetNonIsotropicTermsVsEtaSumDiffPro(TProfile* const nt,Int_t const sd,Int_t const t){this->fNonIsotropicTermsVsEtaSumDiffPro[sd][t] = nt;};
TProfile* GetNonIsotropicTermsVsEtaSumDiffPro(Int_t sd, Int_t t) const {return this->fNonIsotropicTermsVsEtaSumDiffPro[sd][t];};
void Set3pCorrelatorVsPtSumDiffHist(TH1D* const hist, Int_t const sd) {this->f3pCorrelatorVsPtSumDiffHist[sd] = hist;};
TH1D* Get3pCorrelatorVsPtSumDiffHist(Int_t sd) const {return this->f3pCorrelatorVsPtSumDiffHist[sd];};
void Set3pCorrelatorVsEtaSumDiffHist(TH1D* const hist, Int_t const sd) {this->f3pCorrelatorVsEtaSumDiffHist[sd] = hist;};
TH1D* Get3pCorrelatorVsEtaSumDiffHist(Int_t sd) const {return this->f3pCorrelatorVsEtaSumDiffHist[sd];};
private:
AliFlowAnalysisWithMixedHarmonics(const AliFlowAnalysisWithMixedHarmonics& afawQc);
AliFlowAnalysisWithMixedHarmonics& operator=(const AliFlowAnalysisWithMixedHarmonics& afawQc);
TList *fHistList;
TString *fHistListName;
Int_t fHarmonic;
TString *fAnalysisLabel;
TProfile *fAnalysisSettings;
Int_t fNoOfMultipicityBins;
Double_t fMultipicityBinWidth;
Double_t fMinMultiplicity;
Bool_t fOppositeChargesPOI;
Bool_t fEvaluateDifferential3pCorrelator;
Bool_t fCorrectForDetectorEffects;
Bool_t fPrintOnTheScreen;
Bool_t fCalculateVsM;
Bool_t fShowBinLabelsVsM;
AliFlowCommonHist *fCommonHists;
Int_t fnBinsPhi;
Double_t fPhiMin;
Double_t fPhiMax;
Double_t fPhiBinWidth;
Int_t fnBinsPt;
Double_t fPtMin;
Double_t fPtMax;
Double_t fPtBinWidth;
Int_t fnBinsEta;
Double_t fEtaMin;
Double_t fEtaMax;
Double_t fEtaBinWidth;
TProfile *fCommonConstants;
TList *fWeightsList;
Bool_t fUsePhiWeights;
Bool_t fUsePtWeights;
Bool_t fUseEtaWeights;
TProfile *fUseParticleWeights;
TH1F *fPhiWeights;
TH1D *fPtWeights;
TH1D *fEtaWeights;
TMatrixD *fReQnk;
TMatrixD *fImQnk;
TMatrixD *fSpk;
TProfile *fRePEBE[2];
TProfile *fImPEBE[2];
TProfile *fOverlapEBE[2][2];
TProfile *fReEtaEBE[2];
TProfile *fImEtaEBE[2];
TProfile *fOverlapEBE2[2][2];
TList *fProfileList;
TProfile *f3pCorrelatorPro;
TProfile *f5pCorrelatorPro;
TProfile *fNonIsotropicTermsPro;
TProfile *f3pCorrelatorVsMPro;
TProfile *f3pPOICorrelatorVsM;
TProfile2D *fNonIsotropicTermsVsMPro;
TProfile *f3pCorrelatorVsPtSumDiffPro[2];
TProfile *f3pCorrelatorVsEtaSumDiffPro[2];
TList *fNonIsotropicTermsList;
TProfile *fReNITEBE[2][2][4];
TProfile *fImNITEBE[2][2][4];
TProfile *fNonIsotropicTermsVsPtSumDiffPro[2][10];
TProfile *fNonIsotropicTermsVsEtaSumDiffPro[2][10];
TProfile *f2pCorrelatorCosPsiDiffPtDiff;
TProfile *f2pCorrelatorCosPsiSumPtDiff;
TProfile *f2pCorrelatorSinPsiDiffPtDiff;
TProfile *f2pCorrelatorSinPsiSumPtDiff;
TProfile *f2pCorrelatorCosPsiDiffPtSum;
TProfile *f2pCorrelatorCosPsiSumPtSum;
TProfile *f2pCorrelatorSinPsiDiffPtSum;
TProfile *f2pCorrelatorSinPsiSumPtSum;
TProfile *f2pCorrelatorCosPsiDiffEtaDiff;
TProfile *f2pCorrelatorCosPsiSumEtaDiff;
TProfile *f2pCorrelatorSinPsiDiffEtaDiff;
TProfile *f2pCorrelatorSinPsiSumEtaDiff;
TProfile *f2pCorrelatorCosPsiDiffEtaSum;
TProfile *f2pCorrelatorCosPsiSumEtaSum;
TProfile *f2pCorrelatorSinPsiDiffEtaSum;
TProfile *f2pCorrelatorSinPsiSumEtaSum;
TList *fResultsList;
TH1D *f3pCorrelatorHist;
TH1D *fDetectorBiasHist;
TH1D *f3pCorrelatorVsMHist;
TH1D *fDetectorBiasVsMHist;
TH1D *f3pCorrelatorVsPtSumDiffHist[2];
TH1D *f3pCorrelatorVsEtaSumDiffHist[2];
ClassDef(AliFlowAnalysisWithMixedHarmonics, 0);
};
#endif
AliFlowAnalysisWithMixedHarmonics.h:1 AliFlowAnalysisWithMixedHarmonics.h:2 AliFlowAnalysisWithMixedHarmonics.h:3 AliFlowAnalysisWithMixedHarmonics.h:4 AliFlowAnalysisWithMixedHarmonics.h:5 AliFlowAnalysisWithMixedHarmonics.h:6 AliFlowAnalysisWithMixedHarmonics.h:7 AliFlowAnalysisWithMixedHarmonics.h:8 AliFlowAnalysisWithMixedHarmonics.h:9 AliFlowAnalysisWithMixedHarmonics.h:10 AliFlowAnalysisWithMixedHarmonics.h:11 AliFlowAnalysisWithMixedHarmonics.h:12 AliFlowAnalysisWithMixedHarmonics.h:13 AliFlowAnalysisWithMixedHarmonics.h:14 AliFlowAnalysisWithMixedHarmonics.h:15 AliFlowAnalysisWithMixedHarmonics.h:16 AliFlowAnalysisWithMixedHarmonics.h:17 AliFlowAnalysisWithMixedHarmonics.h:18 AliFlowAnalysisWithMixedHarmonics.h:19 AliFlowAnalysisWithMixedHarmonics.h:20 AliFlowAnalysisWithMixedHarmonics.h:21 AliFlowAnalysisWithMixedHarmonics.h:22 AliFlowAnalysisWithMixedHarmonics.h:23 AliFlowAnalysisWithMixedHarmonics.h:24 AliFlowAnalysisWithMixedHarmonics.h:25 AliFlowAnalysisWithMixedHarmonics.h:26 AliFlowAnalysisWithMixedHarmonics.h:27 AliFlowAnalysisWithMixedHarmonics.h:28 AliFlowAnalysisWithMixedHarmonics.h:29 AliFlowAnalysisWithMixedHarmonics.h:30 AliFlowAnalysisWithMixedHarmonics.h:31 AliFlowAnalysisWithMixedHarmonics.h:32 AliFlowAnalysisWithMixedHarmonics.h:33 AliFlowAnalysisWithMixedHarmonics.h:34 AliFlowAnalysisWithMixedHarmonics.h:35 AliFlowAnalysisWithMixedHarmonics.h:36 AliFlowAnalysisWithMixedHarmonics.h:37 AliFlowAnalysisWithMixedHarmonics.h:38 AliFlowAnalysisWithMixedHarmonics.h:39 AliFlowAnalysisWithMixedHarmonics.h:40 AliFlowAnalysisWithMixedHarmonics.h:41 AliFlowAnalysisWithMixedHarmonics.h:42 AliFlowAnalysisWithMixedHarmonics.h:43 AliFlowAnalysisWithMixedHarmonics.h:44 AliFlowAnalysisWithMixedHarmonics.h:45 AliFlowAnalysisWithMixedHarmonics.h:46 AliFlowAnalysisWithMixedHarmonics.h:47 AliFlowAnalysisWithMixedHarmonics.h:48 AliFlowAnalysisWithMixedHarmonics.h:49 AliFlowAnalysisWithMixedHarmonics.h:50 AliFlowAnalysisWithMixedHarmonics.h:51 AliFlowAnalysisWithMixedHarmonics.h:52 AliFlowAnalysisWithMixedHarmonics.h:53 AliFlowAnalysisWithMixedHarmonics.h:54 AliFlowAnalysisWithMixedHarmonics.h:55 AliFlowAnalysisWithMixedHarmonics.h:56 AliFlowAnalysisWithMixedHarmonics.h:57 AliFlowAnalysisWithMixedHarmonics.h:58 AliFlowAnalysisWithMixedHarmonics.h:59 AliFlowAnalysisWithMixedHarmonics.h:60 AliFlowAnalysisWithMixedHarmonics.h:61 AliFlowAnalysisWithMixedHarmonics.h:62 AliFlowAnalysisWithMixedHarmonics.h:63 AliFlowAnalysisWithMixedHarmonics.h:64 AliFlowAnalysisWithMixedHarmonics.h:65 AliFlowAnalysisWithMixedHarmonics.h:66 AliFlowAnalysisWithMixedHarmonics.h:67 AliFlowAnalysisWithMixedHarmonics.h:68 AliFlowAnalysisWithMixedHarmonics.h:69 AliFlowAnalysisWithMixedHarmonics.h:70 AliFlowAnalysisWithMixedHarmonics.h:71 AliFlowAnalysisWithMixedHarmonics.h:72 AliFlowAnalysisWithMixedHarmonics.h:73 AliFlowAnalysisWithMixedHarmonics.h:74 AliFlowAnalysisWithMixedHarmonics.h:75 AliFlowAnalysisWithMixedHarmonics.h:76 AliFlowAnalysisWithMixedHarmonics.h:77 AliFlowAnalysisWithMixedHarmonics.h:78 AliFlowAnalysisWithMixedHarmonics.h:79 AliFlowAnalysisWithMixedHarmonics.h:80 AliFlowAnalysisWithMixedHarmonics.h:81 AliFlowAnalysisWithMixedHarmonics.h:82 AliFlowAnalysisWithMixedHarmonics.h:83 AliFlowAnalysisWithMixedHarmonics.h:84 AliFlowAnalysisWithMixedHarmonics.h:85 AliFlowAnalysisWithMixedHarmonics.h:86 AliFlowAnalysisWithMixedHarmonics.h:87 AliFlowAnalysisWithMixedHarmonics.h:88 AliFlowAnalysisWithMixedHarmonics.h:89 AliFlowAnalysisWithMixedHarmonics.h:90 AliFlowAnalysisWithMixedHarmonics.h:91 AliFlowAnalysisWithMixedHarmonics.h:92 AliFlowAnalysisWithMixedHarmonics.h:93 AliFlowAnalysisWithMixedHarmonics.h:94 AliFlowAnalysisWithMixedHarmonics.h:95 AliFlowAnalysisWithMixedHarmonics.h:96 AliFlowAnalysisWithMixedHarmonics.h:97 AliFlowAnalysisWithMixedHarmonics.h:98 AliFlowAnalysisWithMixedHarmonics.h:99 AliFlowAnalysisWithMixedHarmonics.h:100 AliFlowAnalysisWithMixedHarmonics.h:101 AliFlowAnalysisWithMixedHarmonics.h:102 AliFlowAnalysisWithMixedHarmonics.h:103 AliFlowAnalysisWithMixedHarmonics.h:104 AliFlowAnalysisWithMixedHarmonics.h:105 AliFlowAnalysisWithMixedHarmonics.h:106 AliFlowAnalysisWithMixedHarmonics.h:107 AliFlowAnalysisWithMixedHarmonics.h:108 AliFlowAnalysisWithMixedHarmonics.h:109 AliFlowAnalysisWithMixedHarmonics.h:110 AliFlowAnalysisWithMixedHarmonics.h:111 AliFlowAnalysisWithMixedHarmonics.h:112 AliFlowAnalysisWithMixedHarmonics.h:113 AliFlowAnalysisWithMixedHarmonics.h:114 AliFlowAnalysisWithMixedHarmonics.h:115 AliFlowAnalysisWithMixedHarmonics.h:116 AliFlowAnalysisWithMixedHarmonics.h:117 AliFlowAnalysisWithMixedHarmonics.h:118 AliFlowAnalysisWithMixedHarmonics.h:119 AliFlowAnalysisWithMixedHarmonics.h:120 AliFlowAnalysisWithMixedHarmonics.h:121 AliFlowAnalysisWithMixedHarmonics.h:122 AliFlowAnalysisWithMixedHarmonics.h:123 AliFlowAnalysisWithMixedHarmonics.h:124 AliFlowAnalysisWithMixedHarmonics.h:125 AliFlowAnalysisWithMixedHarmonics.h:126 AliFlowAnalysisWithMixedHarmonics.h:127 AliFlowAnalysisWithMixedHarmonics.h:128 AliFlowAnalysisWithMixedHarmonics.h:129 AliFlowAnalysisWithMixedHarmonics.h:130 AliFlowAnalysisWithMixedHarmonics.h:131 AliFlowAnalysisWithMixedHarmonics.h:132 AliFlowAnalysisWithMixedHarmonics.h:133 AliFlowAnalysisWithMixedHarmonics.h:134 AliFlowAnalysisWithMixedHarmonics.h:135 AliFlowAnalysisWithMixedHarmonics.h:136 AliFlowAnalysisWithMixedHarmonics.h:137 AliFlowAnalysisWithMixedHarmonics.h:138 AliFlowAnalysisWithMixedHarmonics.h:139 AliFlowAnalysisWithMixedHarmonics.h:140 AliFlowAnalysisWithMixedHarmonics.h:141 AliFlowAnalysisWithMixedHarmonics.h:142 AliFlowAnalysisWithMixedHarmonics.h:143 AliFlowAnalysisWithMixedHarmonics.h:144 AliFlowAnalysisWithMixedHarmonics.h:145 AliFlowAnalysisWithMixedHarmonics.h:146 AliFlowAnalysisWithMixedHarmonics.h:147 AliFlowAnalysisWithMixedHarmonics.h:148 AliFlowAnalysisWithMixedHarmonics.h:149 AliFlowAnalysisWithMixedHarmonics.h:150 AliFlowAnalysisWithMixedHarmonics.h:151 AliFlowAnalysisWithMixedHarmonics.h:152 AliFlowAnalysisWithMixedHarmonics.h:153 AliFlowAnalysisWithMixedHarmonics.h:154 AliFlowAnalysisWithMixedHarmonics.h:155 AliFlowAnalysisWithMixedHarmonics.h:156 AliFlowAnalysisWithMixedHarmonics.h:157 AliFlowAnalysisWithMixedHarmonics.h:158 AliFlowAnalysisWithMixedHarmonics.h:159 AliFlowAnalysisWithMixedHarmonics.h:160 AliFlowAnalysisWithMixedHarmonics.h:161 AliFlowAnalysisWithMixedHarmonics.h:162 AliFlowAnalysisWithMixedHarmonics.h:163 AliFlowAnalysisWithMixedHarmonics.h:164 AliFlowAnalysisWithMixedHarmonics.h:165 AliFlowAnalysisWithMixedHarmonics.h:166 AliFlowAnalysisWithMixedHarmonics.h:167 AliFlowAnalysisWithMixedHarmonics.h:168 AliFlowAnalysisWithMixedHarmonics.h:169 AliFlowAnalysisWithMixedHarmonics.h:170 AliFlowAnalysisWithMixedHarmonics.h:171 AliFlowAnalysisWithMixedHarmonics.h:172 AliFlowAnalysisWithMixedHarmonics.h:173 AliFlowAnalysisWithMixedHarmonics.h:174 AliFlowAnalysisWithMixedHarmonics.h:175 AliFlowAnalysisWithMixedHarmonics.h:176 AliFlowAnalysisWithMixedHarmonics.h:177 AliFlowAnalysisWithMixedHarmonics.h:178 AliFlowAnalysisWithMixedHarmonics.h:179 AliFlowAnalysisWithMixedHarmonics.h:180 AliFlowAnalysisWithMixedHarmonics.h:181 AliFlowAnalysisWithMixedHarmonics.h:182 AliFlowAnalysisWithMixedHarmonics.h:183 AliFlowAnalysisWithMixedHarmonics.h:184 AliFlowAnalysisWithMixedHarmonics.h:185 AliFlowAnalysisWithMixedHarmonics.h:186 AliFlowAnalysisWithMixedHarmonics.h:187 AliFlowAnalysisWithMixedHarmonics.h:188 AliFlowAnalysisWithMixedHarmonics.h:189 AliFlowAnalysisWithMixedHarmonics.h:190 AliFlowAnalysisWithMixedHarmonics.h:191 AliFlowAnalysisWithMixedHarmonics.h:192 AliFlowAnalysisWithMixedHarmonics.h:193 AliFlowAnalysisWithMixedHarmonics.h:194 AliFlowAnalysisWithMixedHarmonics.h:195 AliFlowAnalysisWithMixedHarmonics.h:196 AliFlowAnalysisWithMixedHarmonics.h:197 AliFlowAnalysisWithMixedHarmonics.h:198 AliFlowAnalysisWithMixedHarmonics.h:199 AliFlowAnalysisWithMixedHarmonics.h:200 AliFlowAnalysisWithMixedHarmonics.h:201 AliFlowAnalysisWithMixedHarmonics.h:202 AliFlowAnalysisWithMixedHarmonics.h:203 AliFlowAnalysisWithMixedHarmonics.h:204 AliFlowAnalysisWithMixedHarmonics.h:205 AliFlowAnalysisWithMixedHarmonics.h:206 AliFlowAnalysisWithMixedHarmonics.h:207 AliFlowAnalysisWithMixedHarmonics.h:208 AliFlowAnalysisWithMixedHarmonics.h:209 AliFlowAnalysisWithMixedHarmonics.h:210 AliFlowAnalysisWithMixedHarmonics.h:211 AliFlowAnalysisWithMixedHarmonics.h:212 AliFlowAnalysisWithMixedHarmonics.h:213 AliFlowAnalysisWithMixedHarmonics.h:214 AliFlowAnalysisWithMixedHarmonics.h:215 AliFlowAnalysisWithMixedHarmonics.h:216 AliFlowAnalysisWithMixedHarmonics.h:217 AliFlowAnalysisWithMixedHarmonics.h:218 AliFlowAnalysisWithMixedHarmonics.h:219 AliFlowAnalysisWithMixedHarmonics.h:220 AliFlowAnalysisWithMixedHarmonics.h:221 AliFlowAnalysisWithMixedHarmonics.h:222 AliFlowAnalysisWithMixedHarmonics.h:223 AliFlowAnalysisWithMixedHarmonics.h:224 AliFlowAnalysisWithMixedHarmonics.h:225 AliFlowAnalysisWithMixedHarmonics.h:226 AliFlowAnalysisWithMixedHarmonics.h:227 AliFlowAnalysisWithMixedHarmonics.h:228 AliFlowAnalysisWithMixedHarmonics.h:229 AliFlowAnalysisWithMixedHarmonics.h:230 AliFlowAnalysisWithMixedHarmonics.h:231 AliFlowAnalysisWithMixedHarmonics.h:232 AliFlowAnalysisWithMixedHarmonics.h:233 AliFlowAnalysisWithMixedHarmonics.h:234 AliFlowAnalysisWithMixedHarmonics.h:235 AliFlowAnalysisWithMixedHarmonics.h:236 AliFlowAnalysisWithMixedHarmonics.h:237 AliFlowAnalysisWithMixedHarmonics.h:238 AliFlowAnalysisWithMixedHarmonics.h:239 AliFlowAnalysisWithMixedHarmonics.h:240 AliFlowAnalysisWithMixedHarmonics.h:241 AliFlowAnalysisWithMixedHarmonics.h:242 AliFlowAnalysisWithMixedHarmonics.h:243 AliFlowAnalysisWithMixedHarmonics.h:244 AliFlowAnalysisWithMixedHarmonics.h:245 AliFlowAnalysisWithMixedHarmonics.h:246 AliFlowAnalysisWithMixedHarmonics.h:247 AliFlowAnalysisWithMixedHarmonics.h:248 AliFlowAnalysisWithMixedHarmonics.h:249 AliFlowAnalysisWithMixedHarmonics.h:250 AliFlowAnalysisWithMixedHarmonics.h:251 AliFlowAnalysisWithMixedHarmonics.h:252 AliFlowAnalysisWithMixedHarmonics.h:253 AliFlowAnalysisWithMixedHarmonics.h:254 AliFlowAnalysisWithMixedHarmonics.h:255 AliFlowAnalysisWithMixedHarmonics.h:256 AliFlowAnalysisWithMixedHarmonics.h:257 AliFlowAnalysisWithMixedHarmonics.h:258 AliFlowAnalysisWithMixedHarmonics.h:259 AliFlowAnalysisWithMixedHarmonics.h:260 AliFlowAnalysisWithMixedHarmonics.h:261 AliFlowAnalysisWithMixedHarmonics.h:262 AliFlowAnalysisWithMixedHarmonics.h:263 AliFlowAnalysisWithMixedHarmonics.h:264 AliFlowAnalysisWithMixedHarmonics.h:265 AliFlowAnalysisWithMixedHarmonics.h:266 AliFlowAnalysisWithMixedHarmonics.h:267 AliFlowAnalysisWithMixedHarmonics.h:268 AliFlowAnalysisWithMixedHarmonics.h:269 AliFlowAnalysisWithMixedHarmonics.h:270 AliFlowAnalysisWithMixedHarmonics.h:271 AliFlowAnalysisWithMixedHarmonics.h:272 AliFlowAnalysisWithMixedHarmonics.h:273 AliFlowAnalysisWithMixedHarmonics.h:274 AliFlowAnalysisWithMixedHarmonics.h:275 AliFlowAnalysisWithMixedHarmonics.h:276 AliFlowAnalysisWithMixedHarmonics.h:277 AliFlowAnalysisWithMixedHarmonics.h:278 AliFlowAnalysisWithMixedHarmonics.h:279 AliFlowAnalysisWithMixedHarmonics.h:280 AliFlowAnalysisWithMixedHarmonics.h:281 AliFlowAnalysisWithMixedHarmonics.h:282 AliFlowAnalysisWithMixedHarmonics.h:283 AliFlowAnalysisWithMixedHarmonics.h:284 AliFlowAnalysisWithMixedHarmonics.h:285 AliFlowAnalysisWithMixedHarmonics.h:286 AliFlowAnalysisWithMixedHarmonics.h:287 AliFlowAnalysisWithMixedHarmonics.h:288 AliFlowAnalysisWithMixedHarmonics.h:289 AliFlowAnalysisWithMixedHarmonics.h:290 AliFlowAnalysisWithMixedHarmonics.h:291 AliFlowAnalysisWithMixedHarmonics.h:292 AliFlowAnalysisWithMixedHarmonics.h:293 AliFlowAnalysisWithMixedHarmonics.h:294 AliFlowAnalysisWithMixedHarmonics.h:295 AliFlowAnalysisWithMixedHarmonics.h:296 AliFlowAnalysisWithMixedHarmonics.h:297 AliFlowAnalysisWithMixedHarmonics.h:298 AliFlowAnalysisWithMixedHarmonics.h:299 AliFlowAnalysisWithMixedHarmonics.h:300 AliFlowAnalysisWithMixedHarmonics.h:301 AliFlowAnalysisWithMixedHarmonics.h:302 AliFlowAnalysisWithMixedHarmonics.h:303 AliFlowAnalysisWithMixedHarmonics.h:304 AliFlowAnalysisWithMixedHarmonics.h:305 AliFlowAnalysisWithMixedHarmonics.h:306 AliFlowAnalysisWithMixedHarmonics.h:307 AliFlowAnalysisWithMixedHarmonics.h:308 AliFlowAnalysisWithMixedHarmonics.h:309 AliFlowAnalysisWithMixedHarmonics.h:310 AliFlowAnalysisWithMixedHarmonics.h:311 AliFlowAnalysisWithMixedHarmonics.h:312 AliFlowAnalysisWithMixedHarmonics.h:313 AliFlowAnalysisWithMixedHarmonics.h:314 AliFlowAnalysisWithMixedHarmonics.h:315 AliFlowAnalysisWithMixedHarmonics.h:316 AliFlowAnalysisWithMixedHarmonics.h:317 AliFlowAnalysisWithMixedHarmonics.h:318 AliFlowAnalysisWithMixedHarmonics.h:319 AliFlowAnalysisWithMixedHarmonics.h:320 AliFlowAnalysisWithMixedHarmonics.h:321 AliFlowAnalysisWithMixedHarmonics.h:322 AliFlowAnalysisWithMixedHarmonics.h:323 AliFlowAnalysisWithMixedHarmonics.h:324 AliFlowAnalysisWithMixedHarmonics.h:325 AliFlowAnalysisWithMixedHarmonics.h:326 AliFlowAnalysisWithMixedHarmonics.h:327 AliFlowAnalysisWithMixedHarmonics.h:328 AliFlowAnalysisWithMixedHarmonics.h:329 AliFlowAnalysisWithMixedHarmonics.h:330 AliFlowAnalysisWithMixedHarmonics.h:331 AliFlowAnalysisWithMixedHarmonics.h:332 AliFlowAnalysisWithMixedHarmonics.h:333 AliFlowAnalysisWithMixedHarmonics.h:334 AliFlowAnalysisWithMixedHarmonics.h:335 AliFlowAnalysisWithMixedHarmonics.h:336 AliFlowAnalysisWithMixedHarmonics.h:337 AliFlowAnalysisWithMixedHarmonics.h:338 AliFlowAnalysisWithMixedHarmonics.h:339 AliFlowAnalysisWithMixedHarmonics.h:340 AliFlowAnalysisWithMixedHarmonics.h:341 AliFlowAnalysisWithMixedHarmonics.h:342 AliFlowAnalysisWithMixedHarmonics.h:343 AliFlowAnalysisWithMixedHarmonics.h:344 AliFlowAnalysisWithMixedHarmonics.h:345 AliFlowAnalysisWithMixedHarmonics.h:346