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