]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Missing file
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 14 Jul 2010 15:03:41 +0000 (15:03 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 14 Jul 2010 15:03:41 +0000 (15:03 +0000)
test/generators/herwig/rec.C [new file with mode: 0644]

diff --git a/test/generators/herwig/rec.C b/test/generators/herwig/rec.C
new file mode 100644 (file)
index 0000000..e576eac
--- /dev/null
@@ -0,0 +1,16 @@
+void rec() {
+  AliReconstruction reco;
+
+  reco.SetWriteESDfriend();
+  reco.SetWriteAlignmentData();
+
+  reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
+  reco.SetSpecificStorage("GRP/GRP/Data",
+                         Form("local://%s",gSystem->pwd()));
+
+  TStopwatch timer;
+  timer.Start();
+  reco.Run();
+  timer.Stop();
+  timer.Print();
+}