Ignore:
Timestamp:
11/07/03 14:50:27 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mhist
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhist/MHCamera.cc

    r2476 r2484  
    399399    // Maintain aspect ratio
    400400    //
    401     const float ratio = 1.15;
     401    const float ratio = TestBit(kNoLegend) ? 1 : 1.15;
    402402
    403403    //
     
    447447        max += 1;
    448448
    449     UpdateLegend(min, max, islog);
     449    if (!TestBit(kNoLegend))
     450        UpdateLegend(min, max, islog);
    450451
    451452    MHexagon hex;
     
    532533        return;
    533534    }
     535
     536    gPad->Clear();
    534537
    535538    // Maintain aspect ratio
  • trunk/MagicSoft/Mars/mhist/MHCamera.h

    r2421 r2484  
    3030public:
    3131    enum {
    32         kProfile = BIT(18),
    33         kFreezed = BIT(19)
     32        kProfile  = BIT(18),
     33        kFreezed  = BIT(19),
     34        kNoLegend = BIT(20)
    3435    };
    3536private:
Note: See TracChangeset for help on using the changeset viewer.