]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/alice-macros/t0_raw.C
Put all classes in Alieve/ sub-module out of the Alieve namespace and
[u/mrichter/AliRoot.git] / EVE / alice-macros / t0_raw.C
index 1dad3eaae31ec76b0efbc1cc400e8cc103b08ec0..557b1e44e8528d7ce6d30167cf712d91593b0648 100644 (file)
@@ -1,20 +1,27 @@
 // $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.                                                 * 
+ **************************************************************************/
 
 namespace Alieve {
-class Event;
+class AliEveEventManager;
 }
 
 
 
 void t0_raw()
 {
-  AliRunLoader* rl =  Alieve::Event::AssertRunLoader();
-  Int_t ievt = Alieve::gEvent->GetEventId();
+  AliRunLoader* rl =  AliEveEventManager::AssertRunLoader();
+  Int_t ievt = gEvent->GetEventId();
     cout<<ievt<<endl;
 
   gStyle->SetPalette(1, 0);
 
-  Alieve::T0Module::LoadRaw("raw.root",ievt);
+  AliEveT0Module::LoadRaw("raw.root",ievt);
 
 
 }