]> git.uio.no Git - u/mrichter/AliRoot.git/blob - test/ppbench/recraw/rec.C
Extacting the OCDB in a separate module. The detectors have write permission in the...
[u/mrichter/AliRoot.git] / test / ppbench / recraw / rec.C
1 void rec() {
2
3   AliReconstruction reco;
4
5   reco.SetUniformFieldTracking(kFALSE);
6   reco.SetWriteESDfriend();
7   reco.SetWriteAlignmentData();
8
9   reco.SetInput("raw.root");
10
11   reco.SetNumberOfEventsPerFile(-1); // all events in one single file
12
13   reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
14   reco.SetSpecificStorage("GRP/GRP/Data",
15                           Form("local://%s/..",gSystem->pwd()));
16
17   TStopwatch timer;
18   timer.Start();
19   reco.Run();
20   timer.Stop();
21   timer.Print();
22 }