Ignore:
Timestamp:
04/25/03 09:55:58 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mgui/MCamDisplay.cc

    r1966 r2010  
    486486        max = event.GetNumPhotonsMax(fGeomCam);
    487487
    488         if (max < 1.)
    489             max = 1.;
     488        if (max==min)
     489            max = min +1;
    490490
    491491        UpdateLegend(min, max);
     
    531531        max = event.GetMeanMax(fGeomCam);
    532532
    533         if (max < 20.)
    534             max = 20.;
     533        if (max==min)
     534            max = min +1;
    535535
    536536        UpdateLegend(min, max);
     
    569569        max = event.GetErrorPhotMax(fGeomCam);
    570570
    571         if (max < 20.)
    572             max = 20.;
     571        if (max==min)
     572            max = min +1;
    573573
    574574        UpdateLegend(min, max);
Note: See TracChangeset for help on using the changeset viewer.