]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGLF/FORWARD/analysis2/corrs/DrawCorrAcc.C
Fixed references from PWG2 -> PWGLF - very efficiently done using ETags.
[u/mrichter/AliRoot.git] / PWGLF / FORWARD / analysis2 / corrs / DrawCorrAcc.C
CommitLineData
b0e36b4a 1/**
2 * @file
3 *
4 * Scripts to draw energy loss fits from correction object file
5 *
bd6f5206 6 * @ingroup pwglf_forward_scripts_corr
b0e36b4a 7 */
8/**
9 * Clear canvas
10 *
11 * @param c Canvas to clear
12 *
bd6f5206 13 * @ingroup pwglf_forward_scripts_corr
b0e36b4a 14 */
15void
16ClearCanvas(TCanvas* c)
17{
18 c->SetLeftMargin(.1);
19 c->SetRightMargin(.05);
20 c->SetBottomMargin(.1);
21 c->SetTopMargin(.05);
22 c->Clear();
23}
24
25/**
26 * Draw energy loss fits to a multi-page PDF.
27 *
28 * @par Input:
29 * The input file is expected to contain a AliFMDCorrELossFit object
970b1a8a 30 * named @c elossfits in the top level directory.
b0e36b4a 31 *
970b1a8a 32 * @par Output:
b0e36b4a 33 * A multi-page PDF. Note, that the PDF generated by ROOT in this way
34 * is broken (cannot be read by Acrobat Reader on Windows and MacOSX)
35 * and one should pass it through a filter to correct these problems.
36 *
37 * @param fname File name
38 * @param option Drawing options
39 *
bd6f5206 40 * @ingroup pwglf_forward_scripts_corr
b0e36b4a 41 */
42void
43DrawCorrAcc(const char* fname, const char* option="colz")
44{
45 //__________________________________________________________________
46 // Load libraries and object
bd6f5206 47 gROOT->Macro("$ALICE_ROOT/PWGLF/FORWARD/analysis2/scripts/LoadLibs.C");
b0e36b4a 48
49 TFile* file = TFile::Open(fname, "READ");
50 if (!file) {
51 Error("DrawCorrAcc", "Failed to open %s", fname);
52 return;
53 }
54 TString pname(fname);
55 pname.ReplaceAll(".root", ".pdf");
56
57 const char* objName =
58 AliForwardCorrectionManager::Instance()
59 .GetObjectName(AliForwardCorrectionManager::kAcceptance);
60 AliFMDCorrAcceptance* corr =
61 static_cast<AliFMDCorrAcceptance*>(file->Get(objName));
62 if (!corr) {
63 Error("DrawCorrAcc", "Object '%s' not found in %s", objName, fname);
64 return;
65 }
66
67 //__________________________________________________________________
68 // Create a canvas
69 TCanvas* c = new TCanvas("c", "c", 800 / TMath::Sqrt(2), 800);
70 c->SetFillColor(0);
71 c->SetBorderSize(0);
72 c->SetBorderMode(0);
73 c->Print(Form("%s[", pname.Data()));
74
75 gStyle->SetOptStat(0);
76 gStyle->SetTitleColor(0);
77 gStyle->SetTitleStyle(0);
78 gStyle->SetTitleBorderSize(0);
79 gStyle->SetTitleX(.1);
80 gStyle->SetTitleY(1);
81 gStyle->SetTitleW(.8);
82 gStyle->SetTitleH(.09);
83 gStyle->SetFrameFillColor(kWhite);
84 gStyle->SetFrameBorderSize(1);
85 gStyle->SetFrameBorderMode(1);
86 gStyle->SetPalette(1);
87
88 ClearCanvas(c);
89 //__________________________________________________________________
90 // Create a title page
91 TLatex* ll = new TLatex(.5,.8, fname);
92 ll->SetTextAlign(22);
93 ll->SetTextSize(0.03);
94 ll->SetNDC();
95 ll->Draw();
96
97 TLatex* l = new TLatex(.5,.8, fname);
98 l->SetNDC();
99 l->SetTextSize(0.03);
100 l->SetTextFont(132);
101 l->SetTextAlign(12);
102 l->DrawLatex(0.2, 0.70, "Acceptance due to dead channels");
103 l->SetTextAlign(22);
104 l->DrawLatex(0.5, 0.60, "c_{v,r}(#eta,#phi)=#frac{"
105 "#sum active strips#in(#eta,#phi)}{"
106 "#sum strips#in(#eta,#phi)}");
107
108 c->Print(pname.Data(), "Title:Title page");
109
110 ClearCanvas(c);
111
112 //__________________________________________________________________
113 // Draw all corrections
114 const TAxis& vtxAxis = corr->GetVertexAxis();
115 Int_t nVtx = vtxAxis.GetNbins();
116 for (UShort_t d = 1; d <= 3; d++) {
117 UShort_t nQ = (d == 1 ? 1 : 2);
118 for (UShort_t q = 0; q < nQ; q++) {
119 Char_t r = (q == 0 ? 'I' : 'O');
120
121 ClearCanvas(c);
122 c->Divide(2, (nVtx+1)/2);
123 for (UShort_t v=1; v <= nVtx; v++) {
124 TVirtualPad* p = c->cd(v);
125
126
127 TH2* h1 = corr->GetCorrection(d, r, v);
128 if (!h1) {
129 Warning("DrawCorrAcc", "No correction for r=%c, v=%d", r, v);
130 continue;
131 }
132 h1->Draw(option);
133 }
134 c->Print(pname.Data(), Form("Title:FMD%d%c", d, r));
135 }
136 }
137
138 //__________________________________________________________________
139 // Close output file
140 c->Print(Form("%s]", pname.Data()));
141}
142//
143// EOF
144//