]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Include TOF hits.
authormtadel <mtadel@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 26 Feb 2007 20:39:46 +0000 (20:39 +0000)
committermtadel <mtadel@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 26 Feb 2007 20:39:46 +0000 (20:39 +0000)
EVE/alice-macros/hits_from_label.C

index f78a5a3d587ddc0acc9d8c3af35616c156a357aa..420c13c54f127c489d6298dd4c47215bbff55c48 100644 (file)
@@ -25,5 +25,10 @@ void hits_from_label(Int_t label=0)
   h = trd_hits("fX:fY:fZ", form);
   if(h) h->SetMarkerSize(1);
 
+  Reve::LoadMacro("tof_hits.C");
+  sprintf(form,"TOF.fTrack==%d", label);
+  h = tof_hits("fX:fY:fZ", form);
+  if(h) h->SetMarkerSize(1);
+
   gReve->Redraw3D();
 }