Index: /trunk/FACT++/src/makeplots.cc
===================================================================
--- /trunk/FACT++/src/makeplots.cc	(revision 14881)
+++ /trunk/FACT++/src/makeplots.cc	(revision 14882)
@@ -309,6 +309,9 @@
 
             // Current prediction
-            const double lc = angle*hrzm.alt*pow(disk, 6)/360/360;
-            const double cur = lc>0 ? 7.7+4942*lc : 7.7;
+            const double cang = sin(angle   *M_PI/180);
+            const double calt = sin(hrzm.alt*M_PI/180);
+
+            const double lc = calt>0 ? cang*sqrt(calt)*pow(disk, 3) : -1;
+            const double cur = lc>0 ? 8+104.5*lc : 8;
 
             // Relative  energy threshold prediction
@@ -334,5 +337,5 @@
 
             if (no_limits || (cur<max_current && 90-hrz.alt<max_zd))
-                g3.SetPoint(g3.GetN(), axis, ratio*cur/7.7);
+                g3.SetPoint(g3.GetN(), axis, ratio*cur/8);
 
             if (no_limits || (cur<max_current && 90-hrz.alt<max_zd))
