Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 7021)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 7022)
@@ -47,5 +47,23 @@
 
 
+ 2005/05/12 Thomas Bretz
+
+   * mcalib/MCalibrationChargeCam.cc:
+     - fixed a bug in FinalizeArrivalTime which caused Form() to hang
+
+   * mmuon/MHMounPar.[h,cc]
+     - added a line showing a reference shape
+
+   * star.rc:
+     - added setup strings for software trigger
+
+
+
  2005/05/12 Markus Meyer
+
+   * mmuon/MHMounPar.[h,cc]
+     - added function Paint. This function integrates the TProfile
+       ArcWidth/Radius Vs. Radius between certain values and shows
+       the result in the Status Display
 
    * mmjobs/MJStar.cc
@@ -54,20 +72,4 @@
    * star.rc
      - changed the default values for the final muon cuts
-
-
-
- 2005/05/12 Thomas Bretz
-
-   * mcalib/MCalibrationChargeCam.cc:
-     - fixed a bug in FinalizeArrivalTime which caused Form() to hang
-
-
-
- 2005/05/12 Markus Meyer
-
-   * mmuon/MHMounPar.[h,cc]
-     - added function Paint. This function integrates the TProfile
-       ArcWidth/Radius Vs. Radius between certain values and shows
-       the result in the Status Display
 
 
Index: /trunk/MagicSoft/Mars/NEWS
===================================================================
--- /trunk/MagicSoft/Mars/NEWS	(revision 7021)
+++ /trunk/MagicSoft/Mars/NEWS	(revision 7022)
@@ -1,4 +1,11 @@
                                                                -*-*- END -*-*-
  *** Version <cvs>
+
+   - added muon support to star. A new tab "MHMuonPar" is displayed.
+     The lower right plot is an estimate of the point spread
+     function. A reference value is displayed. To get the real PSF
+     you must compare with MC. The setup for the muon analysis
+     is done in star.rc. More informations can be found in
+     MHSingleMuon and MHCalibParCalc
 
    - added a full featured spectrum program (sponde) which reads
@@ -37,6 +44,4 @@
    - support for MRunIter has been removed from the job classes (use
      the setter functions of MSeqeunce instead)
-
-   - added muon support to star
 
    - fixed a bug in MExtractTimeAndchargeSpline which could cause
Index: /trunk/MagicSoft/Mars/mmuon/MHMuonPar.cc
===================================================================
--- /trunk/MagicSoft/Mars/mmuon/MHMuonPar.cc	(revision 7021)
+++ /trunk/MagicSoft/Mars/mmuon/MHMuonPar.cc	(revision 7022)
@@ -45,4 +45,5 @@
 
 #include <TH1.h>
+#include <TF1.h>
 #include <TPad.h>
 #include <TLatex.h>
@@ -207,4 +208,10 @@
     fHistBroad.Draw();
 
+    TF1 ref("RefShape", "0.112*x*x - 0.413*x + 0.404", 0.7, 1.2);
+    ref.SetLineColor(kBlue);
+    ref.SetLineWidth(1);
+    ref.SetLineStyle(kDashed);
+    ref.DrawCopy("same");
+
     AppendPad("pad4");
 }
Index: /trunk/MagicSoft/Mars/star.rc
===================================================================
--- /trunk/MagicSoft/Mars/star.rc	(revision 7021)
+++ /trunk/MagicSoft/Mars/star.rc	(revision 7022)
@@ -45,4 +45,12 @@
 
 # -------------------------------------------------------------------------
+# Use this if you want to change the parameters of the software trigger
+# -------------------------------------------------------------------------
+
+#FilterSwTrigger.Threshold:    5
+#FilterSwTrigger.NumNeighbors: 4
+#FilterSwTrigger.TimeWindow:   0.5
+
+# -------------------------------------------------------------------------
 # Setup or switch off the muon analysis here
 # -------------------------------------------------------------------------
@@ -73,4 +81,4 @@
 # -------------------------------------------------------------------------
 # -------------------------------------------------------------------------
-#MJStar.MHillasCalc.IdxIsland: 0
+#MHillasCalc.IdxIsland: 0
 
