Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 7109)
+++ trunk/MagicSoft/Mars/Changelog	(revision 7110)
@@ -22,8 +22,37 @@
                                                  -*-*- END OF LINE -*-*-
 
+
  2005/05/30 Thomas Bretz
 
    * msql/MSQLServer.cc:
      - added possibility to setup SelectDatabase from resource file
+
+   * mbadpixels/MBadPixelsCalc.[h,cc]:
+     - implemented the possibility to use the check routine
+       from outside
+     - check now returns kFALSE if more than 50% of all
+       pixels are marked as unsuitable
+
+   * mhflux/FluxLinkDef.h, mhflux/Makefile:
+     - added MHDisp
+     - added MMcSpectrumWeight
+
+   * mhflux/MHFalseSource.[h,cc]:
+     - allow finding of Off-plot for derived classes  - like in MHAlpha
+     - get source position from MSourcePos if existing
+     - changed some data members from private to protected
+
+   * mhflux/MHDisp.[h,cc]:
+     - added
+
+   * mjobs/MJCut.[h,cc]:
+     - implemented new option (HistNameFS) to allow using a different
+       False Source Plot
+
+   * mpedestal/MPedPhotCam.[h,cc]:
+     - added a copy constructor to allow conversion from MPedestalCam
+
+   * mpointing/MSrcPosCam.[h,cc]:
+     - added copy constructor
 
 
Index: trunk/MagicSoft/Mars/mhflux/MHDisp.cc
===================================================================
--- trunk/MagicSoft/Mars/mhflux/MHDisp.cc	(revision 7109)
+++ trunk/MagicSoft/Mars/mhflux/MHDisp.cc	(revision 7110)
@@ -29,4 +29,7 @@
 // Create a false source plot using disp.
 //
+// Currently the use of this class requires to be after MFMagicCuts
+// in the tasklist. Switching of the M3L cut in MFMagicCuts is recommended.
+//
 //////////////////////////////////////////////////////////////////////////////
 #include "MHDisp.h"
Index: trunk/MagicSoft/Mars/mhflux/MHDisp.h
===================================================================
--- trunk/MagicSoft/Mars/mhflux/MHDisp.h	(revision 7110)
+++ trunk/MagicSoft/Mars/mhflux/MHDisp.h	(revision 7110)
@@ -0,0 +1,35 @@
+#ifndef MARS_MHDisp
+#define MARS_MHDisp
+
+#ifndef MARS_MHFalseSource
+#include "MHFalseSource.h"
+#endif
+
+class MParList;
+class MHillasExt;
+class MParameterD;
+
+class MHDisp : public MHFalseSource
+{
+private:
+    MHillasExt  *fHilExt;
+    MParameterD *fDisp;
+
+    Double_t fM3lCut;
+    Double_t fXi;
+    Double_t fXiTheta;
+
+public:
+    MHDisp(const char *name=NULL, const char *title=NULL);
+
+    // MH
+    Bool_t SetupFill(const MParList *pList);
+    Bool_t Fill(const MParContainer *par, const Stat_t w=1);
+
+    void Paint(Option_t *o="");
+    void Draw(Option_t *o="");
+
+    ClassDef(MHDisp, 1) //3D-histogram in alpha, x and y
+};
+
+#endif
Index: trunk/MagicSoft/Mars/mhflux/Makefile
===================================================================
--- trunk/MagicSoft/Mars/mhflux/Makefile	(revision 7109)
+++ trunk/MagicSoft/Mars/mhflux/Makefile	(revision 7110)
@@ -31,5 +31,7 @@
 	   MHEffectiveOnTime.cc \
            MHCollectionArea.cc \
-           MHFalseSource.cc
+           MHFalseSource.cc \
+           MHDisp.cc \
+           MMcSpectrumWeight.cc
 
 ############################################################
