]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGCF/FLOW/papers/PRL105_252302/setFlowStyle.C
Moving/split PWG2/FLOW to PWGCF/FLOW, PWG/FLOW/Base, PWG/FLOW/Tasks, PWG/Glauber
[u/mrichter/AliRoot.git] / PWGCF / FLOW / papers / PRL105_252302 / setFlowStyle.C
1 ////////////////////////////////////////////////////////////
2 //
3 //  Set Style for Flow papers plots
4 //
5 ////////////////////////////////////////////////////////////
6 void setFlowStyle()
7 {
8   gStyle->Reset();
9   //  gStyle->SetOptTitle(0);
10   //  gStyle->SetOptStat(0);
11   // gStyle->SetOptDate(1);
12   //  gStyle->SetPalette(8,0);  // (1,0)
13
14   gStyle->SetPalette(1);  // (1,0)
15   gStyle->SetDrawBorder(0);
16
17   //  gStyle->SetFillColor(0);  // kills palette ???
18   gStyle->SetCanvasColor(0);
19   gStyle->SetPadColor(0);
20   //  gStyle->SetFillColor(0);  othewize it affects Fill colors later
21   gStyle->SetFrameFillColor(0);
22   gStyle->SetCanvasBorderMode(0);
23   gStyle->SetFrameLineWidth(2);
24   //  gStyle->SetFrameFillStyle(4000);
25   gStyle->SetPadBorderMode(0);
26   gStyle->SetPadTickX(1);
27   gStyle->SetPadTickY(1);
28   gStyle->SetPadBottomMargin(0.15);
29   gStyle->SetPadLeftMargin(0.15);
30   gStyle->SetHistLineWidth(2);
31   gStyle->SetFuncWidth(2);
32   gStyle->SetLineWidth(2);
33   gStyle->SetLabelSize(0.05,"xyz");
34   gStyle->SetLabelOffset(0.01,"y");
35   gStyle->SetLabelColor(kBlack,"xyz");
36   gStyle->SetTitleSize(0.06,"xyz");
37   gStyle->SetTitleOffset(1.3,"y");
38   gStyle->SetTitleFillColor(0);
39   gStyle->SetLineWidth(2);
40   
41   gStyle->SetHistLineColor(1);
42   gStyle->SetTextColor(1);
43   gStyle->SetTitleTextColor(1);
44   TGaxis::SetMaxDigits(4);
45
46   gROOT->ForceStyle();
47
48 }
49