]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/alice-macros/event_goto.C
Put all classes in Alieve/ sub-module out of the Alieve namespace and
[u/mrichter/AliRoot.git] / EVE / alice-macros / event_goto.C
index 2027c8f0e2bc655d322f2fcb7ff072005b5002dd..fa522e95bad0ab1779acc4a9010b3a231fd3924d 100644 (file)
@@ -1,8 +1,16 @@
+// $Id$
+// Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
+
+/**************************************************************************
+ * Copyright(c) 1998-2008, ALICE Experiment at CERN, all rights reserved. *
+ * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for          *
+ * full copyright notice.                                                 * 
+ **************************************************************************/
 void event_goto(Int_t event=0)
 {
-  if(Alieve::gEvent == 0) {
-    printf("Event not set!\n");
+  if(gEvent == 0) {
+    printf("AliEveEventManager not set!\n");
     return;
   }
-  Alieve::gEvent->GotoEvent(event);
+  gEvent->GotoEvent(event);
 }