]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/alice-macros/lego.C
minor fixes
[u/mrichter/AliRoot.git] / EVE / alice-macros / lego.C
CommitLineData
3d94b490 1// Author: Stefano Carrazza 2010
2
3/**************************************************************************
4 * Copyright(c) 1998-2009, ALICE Experiment at CERN, all rights reserved. *
5 * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for *
6 * full copyright notice. *
7 **************************************************************************/
8
9AliEveLego* lego(){
10
11 AliEveEventManager *mng = AliEveEventManager::GetMaster();
12 AliEveLego *lego = mng->FindGlobal("LegoHisto2D");
13
14 if ( lego == 0) {
15 lego = new AliEveLego();
16 mng->InsertGlobal("LegoHisto2D",lego);
17 } else {
18 lego->Update();
19 }
20
21 return lego;
22}