]>
Commit | Line | Data |
---|---|---|
1 | void rec() {\r | |
2 | \r | |
3 | AliReconstruction reco;\r | |
4 | \r | |
5 | reco.SetWriteESDfriend();\r | |
6 | reco.SetWriteAlignmentData();\r | |
7 | \r | |
8 | reco.SetDefaultStorage("alien://Folder=/alice/simulation/2008/v4-15-Release/Residual/");\r | |
9 | // reco.SetSpecificStorage("GRP/GRP/Data",\r | |
10 | // Form("local://%s",gSystem->pwd()));\r | |
11 | // We store the object in AliEn during the simulation\r | |
12 | reco.SetSpecificStorage("GRP/GRP/Data",\r | |
13 | "alien://Folder=/alice/simulation/2008/v4-15-Release/Ideal/");\r | |
14 | \r | |
15 | TStopwatch timer;\r | |
16 | timer.Start();\r | |
17 | reco.Run();\r | |
18 | timer.Stop();\r | |
19 | timer.Print();\r | |
20 | }\r |