]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGCF/Correlations/DPhi/FourierDecomposition/lrc/rootlogon.C
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / PWGCF / Correlations / DPhi / FourierDecomposition / lrc / rootlogon.C
CommitLineData
48a61f36 1{
2 cout << "Loading " << gSystem->Getenv("PWD")
3 << "/rootlogon.C" << endl;
4 cout << "Using ROOT version "
5 << gROOT->GetVersion() << endl;
6
7 gROOT->SetStyle("Plain");
8 gStyle->SetPalette(1);
9
4070f709 10 gSystem->Load("libTree");
48a61f36 11 if (gSystem->Getenv("TMPDIR"))
12 gSystem->SetBuildDir(gSystem->Getenv("TMPDIR"));
13 if (1) {
14 delete gRandom;
15 gRandom = new TRandom3(0);
16 }
17
18 // Include directories
19 // gSystem->AddIncludePath("-I\"common\" ");
20 // gROOT->LoadMacro("common/Utils.C+g");
48a61f36 21}