forked from jeromebaudot/taf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rootlogon.C
32 lines (32 loc) · 1.01 KB
/
rootlogon.C
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
gEnv->SetValue("Rint.History","./taf_hist");
gROOT->SetStyle("Plain");
gStyle->SetPalette(1);
gStyle->SetOptStat(1111111);
// gStyle->SetPadBottomMargin(2);
gStyle->SetPadLeftMargin(0.15);
gStyle->SetPadRightMargin(0.15);
gStyle->SetTitleX(0.5);
gStyle->SetTitleAlign(23);
gStyle->SetTitleSize(0.03,"xyz");
gStyle->SetTitleOffset(0.3,"y");
gStyle->SetLabelSize(0.03,"xyz");
// simply launch root instead of TAF
gSystem->Load("libMinuit.so");
gSystem->Load("libGeom.so");
gSystem->Load("libEG.so");
gSystem->Load("libGui.so");
gSystem->Load("libGed.so");
gSystem->Load("libFoam.so");
gSystem->Load("libTreePlayer.so");
//gSystem->Load("libRooFit.so");
//gSystem->Load("libRooFitCore.so");
gSystem->Load("libPostscript.so");
gSystem->Load("libPhysics.so");
gSystem->Load("libRint.so");
//gSystem->Load("libSpectrum.so");
gSystem->Load("libTMVA.so");
gSystem->Load("bin/lib/libDTools.so");
gSystem->Load("bin/lib/libTAF.so");
// MimosaAnalysis *gTAF = new MimosaAnalysis();
}