Changeset 2171 for trunk/MagicSoft/Mars
- Timestamp:
- 06/12/03 18:21:26 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2170 r2171 1 1 -*-*- END OF LINE -*-*- 2 3 2003/06/12: Thomas Bretz 4 5 * mgui/MCamDisplay.h: 6 - added //*MENU* to SetAutoScale, SetMinimum, SetMaximum 7 8 2 9 3 10 2003/06/11: Robert Wagner … … 6 13 - Some bugfixes, e.g. concerning binning of result histograms 7 14 - Improvements in output 15 8 16 9 17 … … 286 294 287 295 288 289 290 291 296 2003/05/22: Wolfgang Wittek 292 297 … … 537 542 * mmain/MStatusDisplay.[h,cc]: 538 543 - implemented UpdatePSHeader 539 540 541 544 542 545 -
trunk/MagicSoft/Mars/mgui/MCamDisplay.h
r2158 r2171 80 80 ~MCamDisplay(); 81 81 82 void SetAutoScale(Bool_t input=kTRUE) { fAutoScale = input; }82 void SetAutoScale(Bool_t input=kTRUE); // *MENU* 83 83 void FillPhotNum(const MCerPhotEvt &event); 84 84 void FillRatio(const MCerPhotEvt &event); … … 109 109 void SetPix(const Int_t pixnum, const Int_t color, Float_t min, Float_t max); // New function added by M.Lopez in 31-01-03 110 110 111 void SetMinimum(Float_t m) { fMinimum = m; }112 void SetMaximum(Float_t m) { fMaximum = m; }111 void SetMinimum(Float_t m); // *MENU* 112 void SetMaximum(Float_t m); // *MENU* 113 113 114 114 ClassDef(MCamDisplay, 0) // Displays the magic camera 115 115 }; 116 116 117 inline void MCamDisplay::SetAutoScale(Bool_t input) 118 { 119 fAutoScale = input; 120 } 121 122 inline void MCamDisplay::SetMinimum(Float_t m) 123 { 124 fMinimum = m; 125 } 126 127 inline void MCamDisplay::SetMaximum(Float_t m) 128 { 129 fMaximum = m; 130 } 131 117 132 #endif
Note:
See TracChangeset
for help on using the changeset viewer.