]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/alice-macros/t0_digits.C
Remove EVE/Reve/ sub-module.
[u/mrichter/AliRoot.git] / EVE / alice-macros / t0_digits.C
1 // $Id$
2
3 namespace Alieve {
4 class Event;
5 }
6
7 void t0_digits()
8 {
9   AliRunLoader* rl =  Alieve::Event::AssertRunLoader();
10
11   rl->LoadDigits("T0");
12   TTree* dt = rl->GetTreeD("T0", false);
13
14   AliT0digit *digits = 0;
15   dt->SetBranchAddress("T0", &digits);
16   dt->GetEntry(0);
17
18   gStyle->SetPalette(1, 0);
19
20   Alieve::T0Module::MakeModules(digits);
21 }
22