]>
Commit | Line | Data |
---|---|---|
3928b038 | 1 | void rec() { |
9b5a9d72 | 2 | new AliRun("gAlice","The ALICE Off-line Simulation Framework"); |
7fb59432 | 3 | |
3928b038 | 4 | AliReconstruction reco; |
2ded75c3 | 5 | |
3171e607 | 6 | reco.SetRunReconstruction("ALL"); |
7 | ||
3928b038 | 8 | reco.SetWriteESDfriend(); |
9 | reco.SetWriteAlignmentData(); | |
16b2f4a1 | 10 | |
162637e4 | 11 | reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB"); |
16b2f4a1 | 12 | reco.SetSpecificStorage("GRP/GRP/Data", |
13 | Form("local://%s",gSystem->pwd())); | |
b5688f53 | 14 | reco.SetRunPlaneEff(kTRUE); |
2ded75c3 | 15 | |
3928b038 | 16 | TStopwatch timer; |
17 | timer.Start(); | |
18 | reco.Run(); | |
19 | timer.Stop(); | |
20 | timer.Print(); | |
21 | } |