Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 4298)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 4299)
@@ -18,4 +18,14 @@
 
                                                  -*-*- END OF LINE -*-*-
+
+ 2004/06/17: Markus Gaug
+ 
+  * mhist/MHCamera.h
+    - make SetUsed() public. Like this, it is possible to use the 
+      Fill-function together with the SetUsed(idx), when no 
+      SetCamContent(...) is available. 
+      (Default of the Fill-function was always to have all pixels 
+       not-used). 
+
 
  2004/06/12: Abelardo Moralejo
Index: /trunk/MagicSoft/Mars/mhist/MHCamera.h
===================================================================
--- /trunk/MagicSoft/Mars/mhist/MHCamera.h	(revision 4298)
+++ /trunk/MagicSoft/Mars/mhist/MHCamera.h	(revision 4299)
@@ -80,5 +80,4 @@
     };
 
-    void   SetUsed(Int_t idx)      { SETBIT(fUsed[idx], kIsUsed); }
     void   ResetUsed(Int_t idx)    { CLRBIT(fUsed[idx], kIsUsed); }
 
@@ -118,4 +117,5 @@
 
     Bool_t IsUsed(Int_t idx) const { return TESTBIT(const_cast<TArrayC&>(fUsed)[idx], kIsUsed); }
+    void   SetUsed(Int_t idx)      { SETBIT(fUsed[idx], kIsUsed); }
 
     Int_t Fill(Axis_t x, Axis_t y, Stat_t w);
