Changeset 2171


Ignore:
Timestamp:
06/12/03 18:21:26 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2170 r2171  
    11                                                 -*-*- END OF LINE -*-*-
     2
     3 2003/06/12: Thomas Bretz
     4
     5   * mgui/MCamDisplay.h:
     6     - added //*MENU* to SetAutoScale, SetMinimum, SetMaximum
     7
     8
    29
    310 2003/06/11: Robert Wagner
     
    613     - Some bugfixes, e.g. concerning binning of result histograms
    714     - Improvements in output
     15
    816
    917
     
    286294
    287295
    288 
    289 
    290 
    291296 2003/05/22: Wolfgang Wittek
    292297
     
    537542   * mmain/MStatusDisplay.[h,cc]:
    538543     - implemented UpdatePSHeader
    539 
    540 
    541544
    542545
  • trunk/MagicSoft/Mars/mgui/MCamDisplay.h

    r2158 r2171  
    8080    ~MCamDisplay();
    8181
    82     void  SetAutoScale(Bool_t input=kTRUE) { fAutoScale = input; }
     82    void  SetAutoScale(Bool_t input=kTRUE); // *MENU*
    8383    void  FillPhotNum(const MCerPhotEvt &event);
    8484    void  FillRatio(const MCerPhotEvt &event);
     
    109109    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
    110110
    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*
    113113
    114114    ClassDef(MCamDisplay, 0) // Displays the magic camera
    115115};
    116116
     117inline void MCamDisplay::SetAutoScale(Bool_t input)
     118{
     119    fAutoScale = input;
     120}
     121
     122inline void MCamDisplay::SetMinimum(Float_t m)
     123{
     124    fMinimum = m;
     125}
     126
     127inline void MCamDisplay::SetMaximum(Float_t m)
     128{
     129    fMaximum = m;
     130}
     131
    117132#endif
Note: See TracChangeset for help on using the changeset viewer.