Changeset 4299
- Timestamp:
- 06/17/04 09:53:10 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4296 r4299 18 18 19 19 -*-*- 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 20 30 21 31 2004/06/12: Abelardo Moralejo -
trunk/MagicSoft/Mars/mhist/MHCamera.h
r4280 r4299 80 80 }; 81 81 82 void SetUsed(Int_t idx) { SETBIT(fUsed[idx], kIsUsed); }83 82 void ResetUsed(Int_t idx) { CLRBIT(fUsed[idx], kIsUsed); } 84 83 … … 118 117 119 118 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); } 120 120 121 121 Int_t Fill(Axis_t x, Axis_t y, Stat_t w);
Note:
See TracChangeset
for help on using the changeset viewer.