Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 6894)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 6895)
@@ -110,4 +110,10 @@
    * manalysis/AnalysisLinkDef.h, manalysis/Makefile:
      - MHadronness removed
+
+   * mfilter/MFMagicCuts.[h,cc]:
+     - added
+
+   * mfilter/FilterLinkDef.h, mfilter/Makefile:
+     - added MFMagicCuts
 
 
Index: /trunk/MagicSoft/Mars/manalysis/AnalysisLinkDef.h
===================================================================
--- /trunk/MagicSoft/Mars/manalysis/AnalysisLinkDef.h	(revision 6894)
+++ /trunk/MagicSoft/Mars/manalysis/AnalysisLinkDef.h	(revision 6895)
@@ -8,6 +8,4 @@
 
 #pragma link C++ class MGeomApply+;
-
-#pragma link C++ class MHadronness+;
 
 #pragma link C++ class MCompProbCalc+;
Index: /trunk/MagicSoft/Mars/manalysis/Makefile
===================================================================
--- /trunk/MagicSoft/Mars/manalysis/Makefile	(revision 6894)
+++ /trunk/MagicSoft/Mars/manalysis/Makefile	(revision 6895)
@@ -30,5 +30,4 @@
            MEnergyEst.cc \
            MEnergyEstimate.cc \
-           MHadronness.cc \
            MMatrixLoop.cc \
            MCompProbCalc.cc \
Index: /trunk/MagicSoft/Mars/mfilter/FilterLinkDef.h
===================================================================
--- /trunk/MagicSoft/Mars/mfilter/FilterLinkDef.h	(revision 6894)
+++ /trunk/MagicSoft/Mars/mfilter/FilterLinkDef.h	(revision 6895)
@@ -14,4 +14,5 @@
 #pragma link C++ class MFCosmics+;
 #pragma link C++ class MFSupercuts+;
+#pragma link C++ class MFMagicCuts+;
 
 #pragma link C++ class MFEnergySlope+;
Index: /trunk/MagicSoft/Mars/mfilter/MFMagicCuts.cc
===================================================================
--- /trunk/MagicSoft/Mars/mfilter/MFMagicCuts.cc	(revision 6895)
+++ /trunk/MagicSoft/Mars/mfilter/MFMagicCuts.cc	(revision 6895)
@@ -0,0 +1,51 @@
+/* ======================================================================== *\
+!
+! *
+! * This file is part of MARS, the MAGIC Analysis and Reconstruction
+! * Software. It is distributed to you in the hope that it can be a useful
+! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
+! * It is distributed WITHOUT ANY WARRANTY.
+! *
+! * Permission to use, copy, modify and distribute this software and its
+! * documentation for any purpose is hereby granted without fee,
+! * provided that the above copyright notice appear in all copies and
+! * that both that copyright notice and this permission notice appear
+! * in supporting documentation. It is provided "as is" without express
+! * or implied warranty.
+! *
+!
+!
+!   Author(s): Thomas Bretz, 03/2005 <mailto:tbretz@astro.uni-wuerzburg.de>
+!
+!   Copyright: MAGIC Software Development, 2000-2005
+!
+!
+\* ======================================================================== */
+
+/////////////////////////////////////////////////////////////////////////////
+//
+//   MFMagicCuts
+//
+/////////////////////////////////////////////////////////////////////////////
+#include "MFMagicCuts.h"
+
+ClassImp(MFMagicCuts);
+
+using namespace std;
+
+
+// --------------------------------------------------------------------------
+//
+// constructor
+//
+MFMagicCuts::MFMagicCuts(const char *name, const char *title)
+{
+    fName  = name  ? name  : "MFMagicCuts";
+    fTitle = title ? title : "Class to evaluate the MagicCuts";
+}
+
+// --------------------------------------------------------------------------
+//
+void MFMagicCuts::InitMapping(MHMatrix *mat)
+{
+}
Index: /trunk/MagicSoft/Mars/mfilter/MFMagicCuts.h
===================================================================
--- /trunk/MagicSoft/Mars/mfilter/MFMagicCuts.h	(revision 6895)
+++ /trunk/MagicSoft/Mars/mfilter/MFMagicCuts.h	(revision 6895)
@@ -0,0 +1,21 @@
+#ifndef MARS_MFMagicCuts
+#define MARS_MFMagicCuts
+
+#ifndef MARS_MFilter
+#include "MFilter.h"
+#endif
+
+class MFMagicCuts : public MFilter
+{
+private:
+
+public:
+    MFMagicCuts(const char *name=NULL, const char *title=NULL);
+
+    void InitMapping(MHMatrix *mat) { }
+    void StopMapping() { InitMapping(NULL); }
+
+    ClassDef(MFMagicCuts, 0) // A filter to evaluate the MagicCuts
+};
+
+#endif
Index: /trunk/MagicSoft/Mars/mfilter/Makefile
===================================================================
--- /trunk/MagicSoft/Mars/mfilter/Makefile	(revision 6894)
+++ /trunk/MagicSoft/Mars/mfilter/Makefile	(revision 6895)
@@ -21,4 +21,5 @@
 	   MFTriggerLvl2.cc \
            MFSupercuts.cc \
+           MFMagicCuts.cc \
 	   MFGeomag.cc \
            MFDeltaT.cc \
