Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 2124)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 2125)
@@ -23,6 +23,22 @@
      - removed wrong EOL characters
 
-
-     
+   * macros/multidimdist2.C:
+     - made variable names unique
+
+   * macros/star.C:
+     - added sigmabar
+
+   * macros/status.C:
+     - added sigmabar
+     - added MHSigmaTheta
+
+   * manalysis/AnalysisLinkDef.h, manalysis/Makefile:
+     - added MFiltercutsCalc
+
+   * manalysis/MFiltercutsCalc.[h,cc]:
+     - added
+
+
+
  2003/05/19: Thomas Bretz
 
Index: /trunk/MagicSoft/Mars/manalysis/MFiltercutsCalc.cc
===================================================================
--- /trunk/MagicSoft/Mars/manalysis/MFiltercutsCalc.cc	(revision 2124)
+++ /trunk/MagicSoft/Mars/manalysis/MFiltercutsCalc.cc	(revision 2125)
@@ -24,7 +24,14 @@
 
 /////////////////////////////////////////////////////////////////////////////
-//                                                                        
-//   MFiltercutsCalc                                                    
-//                                                                      
+//
+//   MFiltercutsCalc
+//
+// This class sets the hadronness to 0.25 if the evaluttion of the cuts
+// is true, otherwise 0.75.
+//
+// The cuts can be set by AddCut (see there for mor information)
+//
+// All single cuts are linked with a logical and ('&&')
+//
 /////////////////////////////////////////////////////////////////////////////
 #include "MFiltercutsCalc.h"
@@ -43,4 +50,6 @@
 // --------------------------------------------------------------------------
 //
+// Default constructor. Creates the filter list.
+//
 MFiltercutsCalc::MFiltercutsCalc(const char *name, const char *title)
     : fHadronnessName("MHadronness")
@@ -53,4 +62,8 @@
 }
 
+// --------------------------------------------------------------------------
+//
+// Delete the filter list.
+//
 MFiltercutsCalc::~MFiltercutsCalc()
 {
@@ -58,4 +71,8 @@
 }
 
+// --------------------------------------------------------------------------
+//
+// Add the filter to the list. Set the rule as its name.
+//
 void MFiltercutsCalc::AddToList(MFilter *f)
 {
@@ -64,4 +81,8 @@
 }
 
+// --------------------------------------------------------------------------
+//
+// Print the rule of the list.
+//
 void MFiltercutsCalc::Print(Option_t *opt) const
 {
@@ -117,4 +138,7 @@
 // --------------------------------------------------------------------------
 //
+// Search for fHadronnessName [MHadronness] to store the hadronness in
+// there. PreProcess the filter list.
+//
 Bool_t MFiltercutsCalc::PreProcess(MParList *pList)
 {
@@ -129,4 +153,9 @@
 }
 
+// --------------------------------------------------------------------------
+//
+// Evaluate the filter list. if the Expression is true set hadronness to
+// 0.25, otherwise to 0.75.
+//
 Bool_t MFiltercutsCalc::Process()
 {
