]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/CALO/macros/rec.C
- adding a macro with the full CALO chain + tracking from TPC
[u/mrichter/AliRoot.git] / HLT / CALO / macros / rec.C
CommitLineData
c978af47 1void rec() {
2 AliReconstruction reco;
3
4 reco.SetWriteESDfriend();
5 reco.SetWriteAlignmentData();
6
7 reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
8 reco.SetSpecificStorage("GRP/GRP/Data",
9 Form("local://%s",gSystem->pwd()));
10
11 reco.SetRunQA("ALL:ALL") ;
12
13 reco.SetQARefDefaultStorage("local://$ALICE_ROOT/QAref") ;
14
15 for (Int_t det = 0 ; det < AliQA::kNDET ; det++) {
16 reco.SetQACycles(det, 999) ;
17 reco.SetQAWriteExpert(det) ;
18 }
19
20 TStopwatch timer;
21 timer.Start();
22 reco.Run();
23 timer.Stop();
24 timer.Print();
25}