2 // Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
4 /**************************************************************************
5 * Copyright(c) 1998-2008, ALICE Experiment at CERN, all rights reserved. *
6 * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for *
7 * full copyright notice. *
8 **************************************************************************/
10 #if !defined(__CINT__) || defined(__MAKECINT__)
12 #include <TEvePointSet.h>
13 #include <TEveElement.h>
14 #include <TEveManager.h>
15 #include <TEveTreeTools.h>
17 #include <AliRunLoader.h>
18 #include <AliEveEventManager.h>
22 its_hits(const char *varexp = "fX:fY:fZ",
23 const char *selection = "",
24 TEveElement* cont = 0)
26 AliRunLoader* rl = AliEveEventManager::AssertRunLoader();
29 TTree* ht = rl->GetTreeH("ITS", false);
31 TEvePointSet* points = new TEvePointSet(Form("ITS Hits '%s'", selection));
33 TEvePointSelector ps(ht, points, varexp, selection);
34 // ps.SetSubIdExp("fTrack:fStatus");
37 if(points->Size() == 0 && gEve->GetKeepEmptyCont() == kFALSE) {
38 Warning("its_hits", "No hits match '%s'", selection);
43 points->SetName(Form("ITS Hits"));
44 points->SetTitle(Form("N=%d", points->Size()));
46 points->ApplyVizTag("SIM Hits ITS", "Hits");
48 gEve->AddElement(points, cont);