]> git.uio.no Git - u/mrichter/AliRoot.git/blob - macros/TDR_style.C
Changes to the DEtaDPhi corr fun (making 0 in the center of the bin in the histogram...
[u/mrichter/AliRoot.git] / macros / TDR_style.C
1 void TDR_style(){
2
3   //////////////////////////////////////////////////////////////////////
4   //
5   // ROOT style macro for the TRD TDR
6   //
7   //////////////////////////////////////////////////////////////////////
8
9   gStyle->SetOptDate(1);
10   gStyle->SetOptFit(111);
11
12   gStyle->SetCanvasBorderMode(-1);
13   gStyle->SetCanvasBorderSize(1);
14   gStyle->SetCanvasColor(10);
15
16   gStyle->SetFrameFillColor(10);
17   gStyle->SetFrameBorderSize(1);
18   gStyle->SetFrameBorderMode(-1);
19   gStyle->SetFrameLineWidth(1.2);
20
21   gStyle->SetHistFillColor(10);
22
23   gStyle->SetPadColor(10);
24   gStyle->SetPadBorderSize(1);
25   gStyle->SetPadBorderMode(-1);
26
27   gStyle->SetStatColor(10);
28   gStyle->SetTitleColor(10);
29
30   gStyle->SetTitleFont(42);
31   gStyle->SetLabelFont(42,"X");
32   gStyle->SetLabelFont(42,"Y");
33   gStyle->SetStatFont(42);
34
35   gStyle->SetTitleOffset(1.2,"X");
36   gStyle->SetTitleOffset(1.2,"Y");
37
38 }
39