CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
tdrstyle.cc
Go to the documentation of this file.
1 #include <TStyle.h>
2 namespace utils { void tdrStyle(); }
3 
5  gStyle->SetPadTopMargin(0.05);
6  gStyle->SetPadBottomMargin(0.13);
7  gStyle->SetPadLeftMargin(0.16);
8  gStyle->SetPadRightMargin(0.04);
9  gStyle->SetPalette(1);
10  gStyle->SetHistMinimumZero(1);
11  gStyle->SetCanvasBorderMode(0);
12  gStyle->SetCanvasColor(kWhite);
13  gStyle->SetPadBorderMode(0);
14  gStyle->SetPadColor(kWhite);
15  gStyle->SetFrameBorderMode(0);
16  gStyle->SetFrameBorderSize(1);
17  gStyle->SetFrameFillColor(0);
18  gStyle->SetStatColor(kWhite);
19  gStyle->SetTitleColor(1);
20  gStyle->SetTitleFillColor(10);
21 
22  gStyle->SetOptTitle(0);
23 
24  gStyle->SetStatFont(42);
25  gStyle->SetStatFontSize(0.04);
26  gStyle->SetTitleColor(1, "XYZ");
27  gStyle->SetTitleFont(42, "XYZ");
28  gStyle->SetTitleSize(0.06, "XYZ");
29  // gStyle->SetTitleXSize(Float_t size = 0.02); // Another way to set the size?
30  // gStyle->SetTitleYSize(Float_t size = 0.02);
31  gStyle->SetTitleXOffset(0.9);
32  gStyle->SetTitleYOffset(1.25);
33  // gStyle->SetTitleOffset(1.1, "Y"); // Another way to set the Offset
34 
35  // For the axis labels:
36 
37  gStyle->SetLabelColor(1, "XYZ");
38  gStyle->SetLabelFont(42, "XYZ");
39  gStyle->SetLabelOffset(0.007, "XYZ");
40  gStyle->SetLabelSize(0.05, "XYZ");
41 
42  // For the axis:
43  gStyle->SetAxisColor(1, "XYZ");
44  gStyle->SetStripDecimals(kTRUE);
45  gStyle->SetTickLength(0.03, "XYZ");
46  gStyle->SetNdivisions(510, "XYZ");
47  gStyle->SetPadTickX(1); // To get tick marks on the opposite side of the frame
48  gStyle->SetPadTickY(1);
49 }
void tdrStyle()
set style for plots
Definition: tdrstyle.cc:4