ce812f4f |
1 | void rec() { |
2 | |
3 | AliReconstruction reco; |
4 | reco.SetWriteESDfriend(); |
5 | reco.SetWriteAlignmentData(); |
6 | |
7 | reco.SetDefaultStorage("alien://Folder=/alice/simulation/2008/v4-15-Release/Ideal/?cacheFold=/tmp/CDBCache?operateDisconnected=kFALSE"); |
8 | |
9 | // No write access to the OCDB => specific storage |
10 | reco.SetSpecificStorage("GRP/GRP/Data", |
11 | Form("local://%s",gSystem->pwd())); |
12 | |
13 | reco.SetRunQA("ALL:ALL"); |
14 | |
15 | TStopwatch timer; |
16 | timer.Start(); |
17 | reco.Run(); |
18 | timer.Stop(); |
19 | timer.Print(); |
20 | } |