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