Changeset 4299


Ignore:
Timestamp:
06/17/04 09:53:10 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r4296 r4299  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20
     21 2004/06/17: Markus Gaug
     22 
     23  * mhist/MHCamera.h
     24    - make SetUsed() public. Like this, it is possible to use the
     25      Fill-function together with the SetUsed(idx), when no
     26      SetCamContent(...) is available.
     27      (Default of the Fill-function was always to have all pixels
     28       not-used).
     29
    2030
    2131 2004/06/12: Abelardo Moralejo
  • trunk/MagicSoft/Mars/mhist/MHCamera.h

    r4280 r4299  
    8080    };
    8181
    82     void   SetUsed(Int_t idx)      { SETBIT(fUsed[idx], kIsUsed); }
    8382    void   ResetUsed(Int_t idx)    { CLRBIT(fUsed[idx], kIsUsed); }
    8483
     
    118117
    119118    Bool_t IsUsed(Int_t idx) const { return TESTBIT(const_cast<TArrayC&>(fUsed)[idx], kIsUsed); }
     119    void   SetUsed(Int_t idx)      { SETBIT(fUsed[idx], kIsUsed); }
    120120
    121121    Int_t Fill(Axis_t x, Axis_t y, Stat_t w);
Note: See TracChangeset for help on using the changeset viewer.