// $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. * **************************************************************************/ TEvePointSet* emcal_hits(const char *varexp = "fX:fY:fZ", const char *selection = "", TEveElement* cont = 0) { AliRunLoader* rl = AliEveEventManager::AssertRunLoader(); rl->LoadHits("EMCAL"); TTree* ht = rl->GetTreeH("EMCAL", false); TEvePointSet* points = new TEvePointSet(Form("EMCAL Hits '%s'", selection)); TEvePointSelector ps(ht, points, varexp, selection); ps.Select(); if (points->Size() == 0 && gEve->GetKeepEmptyCont() == kFALSE) { Warning("emcal_hits", Form("No hits match '%s'", selection)); delete points; return 0; } points->SetName(Form("EMCAL Hits")); const TString viz_tag("SIM Hits EMCAL"); points->ApplyVizTag(viz_tag, "Hits"); points->SetTitle(Form("N=%d", points->Size())); points->SetMarkerSize(.5); points->SetMarkerColor(2); gEve->AddElement(points, cont); gEve->Redraw3D(); return points; }