GRSISort "v4.0.0.5"
An extension of the ROOT analysis Framework
Loading...
Searching...
No Matches
grsi_logon.C
Go to the documentation of this file.
1#include <iostream>
2#include "TStyle.h"
3
5{
6 std::cout << "setting GRSISort environment ... " << std::flush;
7
8 gStyle->Reset();
9 //gStyle->SetFillColor(kWhite);
10 gStyle->SetPalette(55);
11 gStyle->SetPadColor(kWhite);
12 gStyle->SetCanvasColor(kWhite);
13 gStyle->SetStatColor(kWhite);
14 gStyle->SetTitleColor(kWhite, "T");
15 gStyle->SetTitleBorderSize(1);
16 gStyle->SetTitleAlign(23); // reference of title, default is 13 = left top, 23 = middle top?
17 gStyle->SetTitleX(0.5); //centered title
18 gStyle->SetStatBorderSize(1);
19 gStyle->SetFrameFillStyle(4000);
20 gStyle->SetHistFillStyle(4000);
21 //to turn off highlighting of active pad/frame/canvas
22 //gStyle->SetPadBorderMode(0);
23 //gStyle->SetFrameBorderMode(0);
24 //gStyle->SetCanvasBorderMode(0);
25 gStyle->SetOptStat("neuoi");
26
27 std::cout << "done" << std::endl;
28}
void grsi_logon()
Definition grsi_logon.C:4