Changeset 17810 for trunk


Ignore:
Timestamp:
05/08/14 17:09:48 (11 years ago)
Author:
tbretz
Message:
Recalculate the image parameters with each redraw to allow to use the lower limit (min) value.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/www/viewer/index.js

    r17808 r17810  
    470470    }
    471471
    472     canv.hillas = Hillas(canv.dataAbs);
    473 
    474472    canv.min = Math.min.apply(Math, canv.dataAbs.filter(function(e){return !isNaN(e)}));
    475473    canv.max = Math.max.apply(Math, canv.dataAbs.filter(function(e){return !isNaN(e)}));
     
    13591357    // ======================= Draw Ellipse ======================
    13601358
    1361     var h = canv.hillas;
    1362     if (h && document.getElementById('image').checked)
    1363     {
    1364         ctx.save();
    1365 
    1366         ctx.translate(h.mean[0], h.mean[1]);
    1367         ctx.rotate(h.phi);
    1368 
    1369         ctx.save();
    1370         ctx.scale(h.axis[0], h.axis[1]);
    1371         ctx.beginPath();
    1372         ctx.arc(0, 0, 1, 0, 2*Math.PI);
    1373         ctx.restore();
    1374 
    1375         ctx.lineWidth = 0.15;
    1376         ctx.strokeStyle = "#444";
    1377         ctx.stroke();
    1378 
    1379         ctx.strokeStyle = "#888";
    1380         ctx.beginPath();
    1381         ctx.moveTo(0, -h.disp);
    1382         ctx.lineTo(0,  h.disp);
    1383         ctx.stroke();
    1384 
    1385         ctx.restore();
     1359    if (document.getElementById('image').checked)
     1360    {
     1361        var h = Hillas(canv.dataAbs, canv.zmin);
     1362        if (h)
     1363        {
     1364            ctx.save();
     1365
     1366            ctx.translate(h.mean[0], h.mean[1]);
     1367            ctx.rotate(h.phi);
     1368
     1369            ctx.save();
     1370            ctx.scale(h.axis[0], h.axis[1]);
     1371            ctx.beginPath();
     1372            ctx.arc(0, 0, 1, 0, 2*Math.PI);
     1373            ctx.restore();
     1374
     1375            ctx.lineWidth = 0.15;
     1376            ctx.strokeStyle = "#555";
     1377            ctx.stroke();
     1378
     1379            ctx.strokeStyle = "#888";
     1380            ctx.beginPath();
     1381            ctx.moveTo(0, -h.disp);
     1382            ctx.lineTo(0,  h.disp);
     1383            ctx.stroke();
     1384
     1385            ctx.restore();
     1386        }
    13861387    }
    13871388
     
    14261427// ===================================================================
    14271428
    1428 function Hillas(data)
     1429function Hillas(data, min)
    14291430{
    14301431    var mx = 0;
     
    14391440    for (var i=0; i<1440; i++)
    14401441    {
    1441         if (data[i]===undefined)
     1442        if (data[i]===undefined || data[i]<min)
    14421443            continue;
    14431444
Note: See TracChangeset for help on using the changeset viewer.