]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGLF/FORWARD/analysis2/corrs/Browse.C
Important bug fixes for the PWGLF/FORWARD directory
[u/mrichter/AliRoot.git] / PWGLF / FORWARD / analysis2 / corrs / Browse.C
CommitLineData
0ccdab7b 1 TObject* Browse()
2{
3 const char* fwd = "/opt/alice/aliroot/trunk-inst/PWGLF/FORWARD/analysis2";
4 if (!gROOT->GetClass("AliOADBForward"))
5 gROOT->Macro(Form("%s/scripts/LoadLibs.C", fwd));
6 gSystem->AddIncludePath(Form("-I%s -I$ALICE_ROOT/include", fwd));
7 gROOT->LoadMacro(Form("%s/corrs/ForwardOADBGui.C", fwd));
8
9 AliOADBForward* db = new AliOADBForward;
10 db->Open("fmd_corrections.root", "*");
11
12 ForwardOADBGui(db);
13
14 return db;
15}