]> git.uio.no Git - u/mrichter/AliRoot.git/blob - test/PbPbbench/rec.C
9a7ccc807665e4892ed2fbadd4d7cd74f0aa5bc1
[u/mrichter/AliRoot.git] / test / PbPbbench / rec.C
1 void rec() {
2   AliReconstruction reco;
3
4   reco.SetWriteESDfriend();
5   reco.SetWriteAlignmentData();
6
7   reco.SetDefaultStorage("local://$ALICE_ROOT");
8   reco.SetSpecificStorage("GRP/GRP/Data",
9                           Form("local://%s",gSystem->pwd()));
10   reco.SetRecoParam("ITS",AliITSRecoParam::GetHighFluxParam()); // to change the default vertexer
11
12   TStopwatch timer;
13   timer.Start();
14   reco.Run();
15   timer.Stop();
16   timer.Print();
17 }