]> git.uio.no Git - u/mrichter/AliRoot.git/blame - test/PbPbbench/recraw.C
recraw.C removed, using recraw/rec.C instead. Restoring the original test layout
[u/mrichter/AliRoot.git] / test / PbPbbench / recraw.C
CommitLineData
973f4bb2 1void rec() {
2 AliReconstruction reco;
3
4 reco.SetWriteESDfriend();
5 reco.SetWriteAlignmentData();
6 reco.SetInput("raw.root");
7 reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
8 reco.SetSpecificStorage("GRP/GRP/Data",
9 Form("local://%s",gSystem->pwd()));
10 reco.SetRunQA("ALL:ALL") ;
11
12 AliQA::SetQARefStorage("local://$ALICE_ROOT/QAref") ;
13
14 for (Int_t det = 0 ; det < AliQA::kNDET ; det++) {
15 reco.SetQACycles(det, 999) ;
16 reco.SetQAWriteExpert(det) ;
17 }
18
19 TStopwatch timer;
20 timer.Start();
21 reco.Run();
22 timer.Stop();
23 timer.Print();
24}