]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/alice-macros/t0_digits.C
Added support to display the HLT ESD Tree. See the comment in visscan_local.C for How
[u/mrichter/AliRoot.git] / EVE / alice-macros / t0_digits.C
index 55fdc7e9a4de8162337c99d011b249e31741401b..c4a3db60acf61b0439132032c6c8ba38e2628ec5 100644 (file)
@@ -1,12 +1,26 @@
 // $Id$
+// Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
 
-namespace Alieve {
-class Event;
-}
+/**************************************************************************
+ * Copyright(c) 1998-2008, ALICE Experiment at CERN, all rights reserved. *
+ * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for          *
+ * full copyright notice.                                                 *
+ **************************************************************************/
+
+#if !defined(__CINT__) || defined(__MAKECINT__)
+#include <TTree.h>
+#include <TStyle.h>
+
+#include <AliRunLoader.h>
+#include <AliT0digit.h>
+#include <AliEveEventManager.h>
+#include <AliEveITSDigitsInfo.h>
+#include <AliEveT0Module.h>
+#endif
 
 void t0_digits()
 {
-  AliRunLoader* rl =  Alieve::Event::AssertRunLoader();
+  AliRunLoader* rl = AliEveEventManager::AssertRunLoader();
 
   rl->LoadDigits("T0");
   TTree* dt = rl->GetTreeD("T0", false);
@@ -17,6 +31,6 @@ void t0_digits()
 
   gStyle->SetPalette(1, 0);
 
-  Alieve::T0Module::MakeModules(digits);
+  AliEveT0Module::MakeModules(digits);
 }