]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/alice-macros/hits_from_label.C
Merge from EVE-dev to HEAD.
[u/mrichter/AliRoot.git] / EVE / alice-macros / hits_from_label.C
index 739d12b009db08d573e92ae8821b56f7ff9ea2a2..6349395eb18f61759d2b03673b843d92c4b22917 100644 (file)
@@ -5,12 +5,12 @@ void hits_from_label(Int_t label=0)
   Reve::PointSet* h;
   Reve::LoadMacro("its_hits.C");
   h = its_hits("fX:fY:fZ", Form("ITS.fTrack==%d", label));
-  h->SetMarkerSize(5);
+  h->SetMarkerSize(1);
 
   Reve::LoadMacro("tpc_hits.C");
   h = tpc_hits("TPC2.fArray.fR:TPC2.fArray.fFi:TPC2.fArray.fZ",
               Form("TPC2.fArray.fTrackID==%d", label));
-  h->SetMarkerSize(5);
+  h->SetMarkerSize(1);
 
   gReve->Redraw3D();
 }