]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - test/pileup/rec.C
Corrected library names and paths to macros
[u/mrichter/AliRoot.git] / test / pileup / rec.C
... / ...
CommitLineData
1void rec() {
2 if (!strcmp(gSystem->GetBuildArch(),"win32gcc")) {
3 gSystem->Load("libProof");
4 gSystem->Load("libGui");
5 gROOT->Macro("loadlibsrec.C");
6 new AliRun("gAlice","The ALICE Off-line Simulation Framework");
7 }
8 AliReconstruction reco;
9
10 reco.SetWriteESDfriend();
11 reco.SetWriteAlignmentData();
12
13 reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
14 reco.SetSpecificStorage("GRP/GRP/Data",
15 Form("local://%s",gSystem->pwd()));
16 reco.SetRunPlaneEff(kTRUE);
17
18 TStopwatch timer;
19 timer.Start();
20 reco.Run();
21 timer.Stop();
22 timer.Print();
23}