]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG1/TPC/AliPerformancePtCalib.h
Fix missing variable
[u/mrichter/AliRoot.git] / PWG1 / TPC / AliPerformancePtCalib.h
CommitLineData
ba06aaec 1
acb9d358 2#ifndef ALIPERFORMANCEPTCALIB_H
3#define ALIPERFORMANCEPTCALIB_H
ba06aaec 4//----------------------------------------------------------------------------------------------------
5// Class to study systematic shifts in pt and charge/pt respectively.Furthermore a comparison between
6// ESD and TPC track momenta is included.
4060dd2d 7// Track cuts and a user defined shift in charge/pt can be switched on and off by user.
ba06aaec 8//
9// Analysis with class AliPerfAnalyzeInvPt via AliPerformancePtCalib::Analyse(). :
10// Projection of charge/pt vs theta and vs phi resp. Histograms will be fitted with either
11// polynomial or gaussian fit function to extract minimum position of 1/pt.
12// Fit options and theta, phi bins can be set by user.
13// Attention: use the Set* functions of AliPerformancePtCalib when running AliPerformancePtCalib::Analyse().
14//
15// Author: S. Schuchmann 11/13/2009
16//----------------------------------------------------------------------------------------------------
acb9d358 17
18class TString;
19class TNamed;
20class TCanvas;
21class TH1F;
22class TH2F;
23class TList;
24
25class AliESDVertex;
26class AliESDtrack;
27class AliMCEvent;
28class AliStack;
29class AliTrackReference;
30class AliESDEvent;
31class AliESDfriend;
32class AliESDfriendTrack;
acb9d358 33class AliMCInfoCuts;
34class AliRecInfoCuts;
ba06aaec 35class AliESDtrackCuts;
4060dd2d 36
ba06aaec 37
4060dd2d 38#include "THnSparse.h"
acb9d358 39#include "AliPerformanceObject.h"
40
41class AliPerformancePtCalib : public AliPerformanceObject {
ba06aaec 42public:
43 AliPerformancePtCalib();
44 AliPerformancePtCalib(Char_t* name, Char_t* title);//, Int_t analysisMode, Bool_t hptGenerator);
45 virtual ~AliPerformancePtCalib();
acb9d358 46
ba06aaec 47 // Init data members
48 virtual void Init();
acb9d358 49
ba06aaec 50 // Execute analysis
51 virtual void Exec(AliMCEvent* const mcEvent, AliESDEvent *const esdEvent, AliESDfriend *const esdFriend, const Bool_t bUseMC, const Bool_t bUseESDfriend);
acb9d358 52
ba06aaec 53 // Merge output objects (needed by PROOF)
54 virtual Long64_t Merge(TCollection* const list);
acb9d358 55
ba06aaec 56 // Analyse output histograms
57 virtual void Analyse();
acb9d358 58
ba06aaec 59 // Get analysis folder
60 virtual TFolder* GetAnalysisFolder() const {return fAnalysisFolder;}
acb9d358 61
ba06aaec 62 void SetReadTPCTracks(const Bool_t readTPC) {fOptTPC = readTPC;}//read only ESD tracks
ba06aaec 63 void SetEtaRange(const Double_t eta) {fEtaAcceptance = eta ;}//sets eta window
4060dd2d 64
aa4776c7 65 void SetAliESDtrackCuts( AliESDtrackCuts* esdTrackCuts) { fESDTrackCuts = esdTrackCuts;fESDcuts=kTRUE;}//esd track cuts
41fefc69 66
4060dd2d 67
ba06aaec 68 void SetPtShift(const Double_t shiftVal); // set user defined shift in charge/pt
4060dd2d 69
70 // setters for analysis with AliPerformancePtCalib::Analyse()
71 void SetProjBinsPhi(const Double_t *pBins,const Int_t sizep,const Double_t minTheta, const Double_t maxTheta);// set phi bins for projection and theta range selection (rad)
72 void SetProjBinsTheta(const Double_t *tBins, const Int_t sizet,const Double_t minPhi, const Double_t maxPhi);// set theta bins for projection and phi range selection (rad)
ba06aaec 73 void SetMakeFitOption(const Bool_t setGausFit, const Double_t exclusionR,const Double_t fitR );//set fit options
6bcacaf1 74 void SetDoRebin(const Int_t rebin){if(rebin) {fDoRebin = kTRUE; fRebin = rebin;}}
ba06aaec 75 const TList *GetHistoList() {return fList;}// get list of histograms for analysis
4060dd2d 76
ba06aaec 77 // Create folder for analysed histograms
78 TFolder *CreateFolder(TString folder = "folderPtCalib",TString title = "Analysed PtCalib histograms");
acb9d358 79
ba06aaec 80 // Export objects to folder
81 TFolder *ExportToFolder(TObjArray * array=0);
acb9d358 82
ba06aaec 83 // Selection cuts
84 void SetAliRecInfoCuts(AliRecInfoCuts* const cuts=0) {fCutsRC = cuts;}
85 void SetAliMCInfoCuts(AliMCInfoCuts* const cuts=0) {fCutsMC = cuts;}
4060dd2d 86
ba06aaec 87 AliRecInfoCuts* GetAliRecInfoCuts() const {return fCutsRC;}
88 AliMCInfoCuts* GetAliMCInfoCuts() const {return fCutsMC;}
acb9d358 89
90protected:
4060dd2d 91 // variables for fitting in Analyse() function
ba06aaec 92 Double_t fThetaBins[100];// array of theta bins for projection of 1/pt vs theta
93 Double_t fPhiBins[100]; // array of phi bins for projection of 1/pt vs theta
4060dd2d 94
ba06aaec 95 Int_t fNThetaBins;// sets number of theta bins
96 Int_t fNPhiBins ;// sets number of phi bins
4060dd2d 97 Double_t fMaxPhi;// max phi for 2D projection on theta and charge/pt axis
98 Double_t fMinPhi;// min phi for 2D projection on theta and charge/pt axis
99 Double_t fMaxTheta;// max theta for 2D projection on phi and charge/pt axis
100 Double_t fMinTheta;// min theta for 2D projection on phi and charge/pt axis
ba06aaec 101 Double_t fRange;// sets fit range
102 Double_t fExclRange ;// sets range of rejection of points around 0
103 Bool_t fFitGaus ;// flag for usage of gaussian fit function
4060dd2d 104 Bool_t fDoRebin;// flag for rebin 1D histos before fitting
105 Int_t fRebin;// number of bins for rebin
106
ba06aaec 107private:
4060dd2d 108 // option for user defined shift in charge/pt
ba06aaec 109 Bool_t fShift;//flag for shift in charge/pt
110 Double_t fDeltaInvP;// shift value of charge/pt
acb9d358 111
ba06aaec 112 //options for cuts
113 Bool_t fOptTPC;// flag for reading of TPC tracks in Exec
114 Bool_t fESDcuts;//flag for usage of esd track cuts
41fefc69 115
4060dd2d 116 //ESD track cut values
ba06aaec 117 Double_t fEtaAcceptance;//sets value of eta window
ba06aaec 118
ba06aaec 119 AliRecInfoCuts* fCutsRC; // selection cuts for reconstructed tracks
120 AliMCInfoCuts* fCutsMC; // selection cuts for MC tracks
4060dd2d 121
ba06aaec 122
123
124 TList *fList;// list of histograms
4060dd2d 125
126 //histograms and THnSparse
127 THnSparseF *fHistInvPtPtThetaPhi;// is filled with charge/pt, pt, theta, phi for ESD or TPC
ba06aaec 128
4060dd2d 129 TH1F *fHistPtShift0;//if shift in charge/pt is set by user, this histogram shows pt wihtout shift
ba06aaec 130 TH1F *fHistPrimaryVertexPosX;// primary vertex position x
131 TH1F *fHistPrimaryVertexPosY;// primary vertex position y
132 TH1F *fHistPrimaryVertexPosZ;// primary vertex position z
133 TH1F *fHistTrackMultiplicity; // track multiplicity
134 TH1F *fHistTrackMultiplicityCuts;//track multiplicity after all cuts are applied
135
136 TH2F *fHistTPCMomentaPosP;//TPC p vs global esd track p for positive tracks
137 TH2F *fHistTPCMomentaNegP;//TPC p vs global esd track p for negative tracks
138 TH2F *fHistTPCMomentaPosPt;//TPC pt vs global esd track p positive tracks
139 TH2F *fHistTPCMomentaNegPt;//TPC pt vs global esd track p for negative tracks
140
141
142 TH1F *fHistUserPtShift;// shows the shift value if set by user
acb9d358 143
ba06aaec 144 AliESDtrackCuts* fESDTrackCuts;// esd track cuts
ba06aaec 145 // analysis folder
146 TFolder *fAnalysisFolder; // folder for analysed histograms
acb9d358 147
ba06aaec 148 AliPerformancePtCalib(const AliPerformancePtCalib&); // not implemented
149 AliPerformancePtCalib& operator=(const AliPerformancePtCalib&); // not implemented
acb9d358 150
ba06aaec 151 ClassDef(AliPerformancePtCalib, 1);
acb9d358 152};
153
154#endif