Changeset 2171 for trunk/MagicSoft/Mars/mgui
- Timestamp:
- 06/12/03 18:21:26 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.