]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/alice-macros/its_hits.C
From Pawel Debski: more modes for VizDB.
[u/mrichter/AliRoot.git] / EVE / alice-macros / its_hits.C
index 6fca038a1467a09caa3e667fe29084055f9bcbc6..906b9d970c99ec9723a0bf888dd0bee0a300d567 100644 (file)
@@ -1,41 +1,44 @@
 // $Id$
+// Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
 
-Reve::PointSet*
+/**************************************************************************
+ * 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*
 its_hits(const char *varexp    = "fX:fY:fZ",
         const char *selection = "",
-         Reve::RenderElement* cont = 0)
+         TEveElement* cont = 0)
 {
-  AliRunLoader* rl =  Alieve::Event::AssertRunLoader();
+  AliRunLoader* rl =  AliEveEventManager::AssertRunLoader();
   rl->LoadHits("ITS");
 
   TTree* ht = rl->GetTreeH("ITS", false);
-  
-  //PH The line below is replaced waiting for a fix in Root
-  //PH which permits to use variable siza arguments in CINT
-  //PH on some platforms (alphalinuxgcc, solariscc5, etc.)
-  //PH  Reve::PointSet* points = new Reve::PointSet(Form("ITS Hits '%s'", selection));
-  char form[1000];
-  sprintf(form,"ITS Hits '%s'", selection);
-  Reve::PointSet* points = new Reve::PointSet(form);
-
-  TPointSelector ps(ht, points, varexp, selection);
+
+  TEvePointSet* points = new TEvePointSet(Form("ITS Hits '%s'", selection));
+
+  TEvePointSelector ps(ht, points, varexp, selection);
   // ps.SetSubIdExp("fTrack:fStatus");
   ps.Select();
 
-  if(points->Size() == 0 && gReve->GetKeepEmptyCont() == kFALSE) {
+  if(points->Size() == 0 && gEve->GetKeepEmptyCont() == kFALSE) {
     Warning("its_hits", Form("No hits match '%s'", selection));
     delete points;
     return 0;
   }
 
-  //PH  points->SetTitle(Form("N=%d", points->Size()));
-  sprintf(form,"N=%d", points->Size());
-  points->SetTitle(form);
+  points->SetName(Form("ITS Hits"));
+  const TString viz_tag("SIM Hits ITS");
+  points->ApplyVizTag(viz_tag, "Hits");
+
+  points->SetTitle(Form("N=%d", points->Size()));
   points->SetMarkerSize(.5);
-  points->SetMarkerColor((Color_t)2);
+  points->SetMarkerColor(2);
 
-  gReve->AddRenderElement(points, cont);
-  gReve->Redraw3D();
+  gEve->AddElement(points, cont);
+  gEve->Redraw3D();
 
   return points;
 }