Index: trunk/MagicSoft/Mars/Makefile
===================================================================
--- trunk/MagicSoft/Mars/Makefile	(revision 712)
+++ trunk/MagicSoft/Mars/Makefile	(revision 713)
@@ -62,7 +62,13 @@
 
 # Use $(CXX) -v ... for a more verbose output
-$(PROGRAMS): $(LIBRARIES) mars.so $(HEADERS) MCint.o $(PROGRAMS:=.o) 
+#
+# We could link mars.so instead of all libraries. This would need
+# some MBs less space on the HD. But this means, that the Shared
+# Library Path in your system must be set properly to be able to start
+# 'mars'
+#
+$(PROGRAMS): $(LIBRARIES) $(OBJS) $(HEADERS) MCint.o $(PROGRAMS:=.o) 
 	@echo " Linking $@ ..." 
-	$(CXX) $(CXXFLAGS) $@.o lib/mars.so $(MARS_LIB) MCint.o $(ROOTGLIBS) -o $@
+	$(CXX) $(CXXFLAGS) $@.o $(OBJS) $(MARS_LIB) MCint.o $(ROOTGLIBS) -o $@
 
 $(SOLIB): $(LIBRARIES) $(OBJS) $(HEADERS) MCint.o
Index: trunk/MagicSoft/Mars/manalysis/MHillas.cc
===================================================================
--- trunk/MagicSoft/Mars/manalysis/MHillas.cc	(revision 712)
+++ trunk/MagicSoft/Mars/manalysis/MHillas.cc	(revision 713)
@@ -9,4 +9,6 @@
 /////////////////////////////////////////////////////////////////////////////
 #include "MHillas.h"
+
+#include <math.h>
 
 #include <TEllipse.h>
Index: trunk/MagicSoft/Mars/mhist/MHFadcCam.h
===================================================================
--- trunk/MagicSoft/Mars/mhist/MHFadcCam.h	(revision 712)
+++ trunk/MagicSoft/Mars/mhist/MHFadcCam.h	(revision 713)
@@ -38,13 +38,13 @@
     TH1F *GetHistLo(UInt_t i)  { return (*this)[i]->GetHistLo(); }
 
-    void DrawHi(UInt_t i) { GetHistHi(i)->Draw(); }
-    void DrawLo(UInt_t i) { GetHistLo(i)->Draw(); }
+    //
+    // FIXME! This should be replaced by a Draw(Option_t)-function
+    //
+    void DrawHi(UInt_t i)      { GetHistHi(i)->Draw(); }
+    void DrawLo(UInt_t i)      { GetHistLo(i)->Draw(); }
 
-    void Draw(UInt_t i) { (*this)[i]->Draw(); }
+    void DrawPix(UInt_t i)     { (*this)[i]->Draw(); }
 
-    Int_t GetEntries()
-    {
-        return fArray->GetEntries() ;
-    }
+    Int_t GetEntries()         { return fArray->GetEntries(); }
 
     ClassDef(MHFadcCam, 1) // A list of histograms storing the Fadc spektrum of one pixel
Index: trunk/MagicSoft/Mars/mhist/MHHillas.cc
===================================================================
--- trunk/MagicSoft/Mars/mhist/MHHillas.cc	(revision 712)
+++ trunk/MagicSoft/Mars/mhist/MHHillas.cc	(revision 713)
@@ -8,4 +8,6 @@
 
 #include "MHHillas.h"
+
+#include <math.h>
 
 #include <TH1.h>
