]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG1/AliComparisonRes.h
New branches with run number and OCDB file ITS/Align/Data in spTree
[u/mrichter/AliRoot.git] / PWG1 / AliComparisonRes.h
CommitLineData
3baa4bfd 1#ifndef ALICOMPARISONRES_H
2#define ALICOMPARISONRES_H
3
4//------------------------------------------------------------------------------
5// Class to keep information from comparison of
6// reconstructed and MC particle tracks (TPC resolution).
7//
8// Author: J.Otwinowski 04/02/2008
9//------------------------------------------------------------------------------
10
7b392278 11class TString;
12class TNamed;
13class TCanvas;
14class TH1F;
15class TH2F;
16
71a14197 17class AliESDVertex;
18class AliESDtrack;
3baa4bfd 19class AliMCInfo;
20class AliESDRecInfo;
21class AliESDEvent;
3baa4bfd 22class AliMCInfoCuts;
23class AliRecInfoCuts;
3baa4bfd 24
71a14197 25#include "THnSparse.h"
3baa4bfd 26#include "AliComparisonObject.h"
27
28class AliComparisonRes : public AliComparisonObject {
29public :
30 AliComparisonRes();
71a14197 31 AliComparisonRes(Char_t* name, Char_t* title, Int_t analysisMode, Bool_t hptGenerator);
3baa4bfd 32 virtual ~AliComparisonRes();
33
34 // Init data members
71a14197 35 virtual void Init();
3baa4bfd 36
37 // Execute analysis
71a14197 38 virtual void Exec(AliMCInfo* const infoMC, AliESDRecInfo *const infoRC);
3baa4bfd 39
40 // Merge output objects (needed by PROOF)
71a14197 41 virtual Long64_t Merge(TCollection* const list);
3baa4bfd 42
43 // Analyse output histograms
44 virtual void Analyse();
45
46 // Get analysis folder
71a14197 47 virtual TFolder* GetAnalysisFolder() const {return fAnalysisFolder;}
3baa4bfd 48
49 // Process events
71a14197 50 void ProcessConstrained(AliMCInfo* const infoMC, AliESDRecInfo* const infoRC);
51 void ProcessTPC(AliMCInfo* const infoMC, AliESDRecInfo* const infoRC);
52 void ProcessTPCITS(AliMCInfo* const infoMC, AliESDRecInfo* const infoRC);
3baa4bfd 53
54 // Create folder for analysed histograms
55 TFolder *CreateFolder(TString folder = "folderRes",TString title = "Analysed Resolution histograms");
56
b4126c69 57 // Export objects to folder
58 TFolder *ExportToFolder(TObjArray * array=0);
59
3baa4bfd 60 // Selection cuts
71a14197 61 void SetAliRecInfoCuts(AliRecInfoCuts* const cuts=0) {fCutsRC = cuts;}
62 void SetAliMCInfoCuts(AliMCInfoCuts* const cuts=0) {fCutsMC = cuts;}
3baa4bfd 63
64 AliRecInfoCuts* GetAliRecInfoCuts() const {return fCutsRC;}
65 AliMCInfoCuts* GetAliMCInfoCuts() const {return fCutsMC;}
66
71a14197 67 static TH1F* MakeResol(TH2F * his, Int_t integ, Bool_t type);
3baa4bfd 68
35771050 69 // getters
35771050 70 //
71a14197 71 THnSparse *GetResolHisto() const { return fResolHisto; }
72 THnSparse *GetPullHisto() const { return fPullHisto; }
3baa4bfd 73
74private:
75 //
76 // Control histograms
71a14197 77 // 5 track parameters (details in STEER/AliExternalTrackParam.h)
3baa4bfd 78 //
35771050 79
71a14197 80 // resolution histogram
81 THnSparseF *fResolHisto; //-> res_y:res_z:res_phi:res_lambda:res_1pt:y:z:eta:phi:pt
3baa4bfd 82
71a14197 83 // pull histogram
84 THnSparseF *fPullHisto; //-> pull_y:pull_z:pull_phi:pull_lambda:pull_1pt:y:z:eta:phi:pt
3baa4bfd 85
3baa4bfd 86 // Global cuts objects
87 AliRecInfoCuts* fCutsRC; // selection cuts for reconstructed tracks
88 AliMCInfoCuts* fCutsMC; // selection cuts for MC tracks
89
90 // analysis folder
91 TFolder *fAnalysisFolder; // folder for analysed histograms
92
93 AliComparisonRes(const AliComparisonRes&); // not implemented
94 AliComparisonRes& operator=(const AliComparisonRes&); // not implemented
95
96 ClassDef(AliComparisonRes,1);
97};
98
99#endif