]> git.uio.no Git - u/mrichter/AliRoot.git/blame - test/QA/rec.C
Removing extra slash and switching off -ffp-contract=fast for icc
[u/mrichter/AliRoot.git] / test / QA / rec.C
CommitLineData
930e6e3e 1 void rec() {
478d5b53 2
3 AliReconstruction reco;
2ded75c3 4
478d5b53 5 reco.SetWriteESDfriend();
6 reco.SetWriteAlignmentData();
162637e4 7 reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
a002cebe 8 reco.SetSpecificStorage("GRP/GRP/Data",
9 Form("local://%s",gSystem->pwd()));
b5688f53 10 reco.SetRunPlaneEff(kTRUE);
a002cebe 11
12 AliTPCReconstructor::SetStreamLevel(1);
cfe7293f 13
cfe7293f 14 reco.SetRunQA("ALL:ALL") ;
ce43afbe 15
f1c1204d 16 reco.SetQARefDefaultStorage("local://$ALICE_ROOT/OCDB") ;
478d5b53 17
930e6e3e 18 for (Int_t det = 0 ; det < AliQA::kNDET ; det++) {
984cda5b 19 reco.SetQACycles(det, 999) ;
937e4a4c 20 reco.SetQAWriteExpert(det) ;
930e6e3e 21 }
22
478d5b53 23 TStopwatch timer;
24 timer.Start();
57acd2d2 25 reco.Run("raw.root");
478d5b53 26 timer.Stop();
27 timer.Print();
28}
29