]> git.uio.no Git - u/mrichter/AliRoot.git/blob - test/merge/signal/rec.C
Using GRP instead of local setters. Check of the created ESDs, production of standard...
[u/mrichter/AliRoot.git] / test / merge / signal / rec.C
1 void rec() {
2   AliReconstruction reco;
3   reco.SetWriteESDfriend();
4   reco.SetWriteAlignmentData();
5
6   // Use the GRP from the backgr
7   reco.SetDefaultStorage("local://$ALICE_ROOT");
8   reco.SetSpecificStorage("GRP/GRP/Data",
9                           Form("local://%s/../backgr",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 }