]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Remove fix for strange phi convention for SPD tracklets.
authormtadel <mtadel@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 3 Feb 2008 20:21:05 +0000 (20:21 +0000)
committermtadel <mtadel@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 3 Feb 2008 20:21:05 +0000 (20:21 +0000)
EVE/alice-macros/esd_spd_tracklets.C

index 1f90a0603be03d4a005bfa01d604290d98c9575a..415c609075de5d56abfa525619901bff165785b1 100644 (file)
@@ -26,13 +26,13 @@ TEveStraightLineSet* esd_spd_tracklets(Float_t rad=8)
   pv->GetXYZ(pvx);
   pv->GetSigmaXYZ(pve);
 
-  TEveStraightLineSet* ls = new TEveStraightLineSet();
+  TEveStraightLineSet* ls = new TEveStraightLineSet("SPD tracklets");
 
   for (Int_t i=0; i<mul->GetNumberOfTracklets(); ++i)
   {
     using namespace TMath;
     Float_t dr[3];
-    Float_t phi = PiOver2() - mul->GetPhi(i); // strange people
+    Float_t phi = mul->GetPhi(i);
     dr[0] = rad*Cos(phi);
     dr[1] = rad*Sin(phi);
     dr[2] = rad/Tan(mul->GetTheta(i));