]> git.uio.no Git - u/mrichter/AliRoot.git/blob - test/pileup/rec.C
Changes for #89427: Porting modification for material budget issues to the Release...
[u/mrichter/AliRoot.git] / test / pileup / rec.C
1 void 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 }