Changeset 2484 for trunk/MagicSoft/Mars/mhist
- Timestamp:
- 11/07/03 14:50:27 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mhist
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhist/MHCamera.cc
r2476 r2484 399 399 // Maintain aspect ratio 400 400 // 401 const float ratio = 1.15;401 const float ratio = TestBit(kNoLegend) ? 1 : 1.15; 402 402 403 403 // … … 447 447 max += 1; 448 448 449 UpdateLegend(min, max, islog); 449 if (!TestBit(kNoLegend)) 450 UpdateLegend(min, max, islog); 450 451 451 452 MHexagon hex; … … 532 533 return; 533 534 } 535 536 gPad->Clear(); 534 537 535 538 // Maintain aspect ratio -
trunk/MagicSoft/Mars/mhist/MHCamera.h
r2421 r2484 30 30 public: 31 31 enum { 32 kProfile = BIT(18), 33 kFreezed = BIT(19) 32 kProfile = BIT(18), 33 kFreezed = BIT(19), 34 kNoLegend = BIT(20) 34 35 }; 35 36 private:
Note:
See TracChangeset
for help on using the changeset viewer.