Index: trunk/MagicSoft/Mars/macros/dohtml.C
===================================================================
--- trunk/MagicSoft/Mars/macros/dohtml.C	(revision 2008)
+++ trunk/MagicSoft/Mars/macros/dohtml.C	(revision 2009)
@@ -46,4 +46,6 @@
     sourcedir += "mgui:";
     sourcedir += "mhist:";
+    sourcedir += "mhistmc:";
+    sourcedir += "mimage:";
     sourcedir += "mmain:";
     sourcedir += "mmc:";
@@ -80,4 +82,5 @@
     html.Convert("starplot.C",      "MARS - Plots data from a STAR-file into a mars histogram");
     html.Convert("testenv.C",       "MARS - Example to use TEnv and Mars Eventloops");
-    html.Convert("triglvl2.C",       "MARS - Example to use MMcTriggerLvl2 class, using filters and creating histograms");
+    html.Convert("triglvl2.C",      "MARS - Example to use MMcTriggerLvl2 class, using filters and creating histograms");
+    html.Convert("status.C",        "MARS - Example to use the online display");
 }
Index: trunk/MagicSoft/Mars/macros/rootlogon.C
===================================================================
--- trunk/MagicSoft/Mars/macros/rootlogon.C	(revision 2008)
+++ trunk/MagicSoft/Mars/macros/rootlogon.C	(revision 2009)
@@ -100,4 +100,5 @@
     gInterpreter->AddIncludePath(dir+"mhist");
     gInterpreter->AddIncludePath(dir+"mhistmc");
+    gInterpreter->AddIncludePath(dir+"mimage");
     gInterpreter->AddIncludePath(dir+"mmain");
     gInterpreter->AddIncludePath(dir+"mmc");
Index: trunk/MagicSoft/Mars/mbase/MEvtLoop.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MEvtLoop.cc	(revision 2008)
+++ trunk/MagicSoft/Mars/mbase/MEvtLoop.cc	(revision 2009)
@@ -368,5 +368,5 @@
         gSystem->ProcessEvents();
 #else
-        gClient->ProcessEventsFor(fDisplay ? fDisplay : fProgress);
+        gClient->ProcessEventsFor(fDisplay ? fDisplay->GetBar() : fProgress);
 #endif
     }
Index: trunk/MagicSoft/Mars/mfilter/MFEnergySlope.h
===================================================================
--- trunk/MagicSoft/Mars/mfilter/MFEnergySlope.h	(revision 2008)
+++ trunk/MagicSoft/Mars/mfilter/MFEnergySlope.h	(revision 2009)
@@ -4,7 +4,4 @@
 //                                                                         //
 // MFEnergySlope                                                           //
-//                                                                         //
-// auth. A.stamerra                                                        //
-// created 30.01.03                                                        //
 //                                                                         //
 /////////////////////////////////////////////////////////////////////////////
@@ -21,31 +18,21 @@
 {
 private:
+    Int_t fNumSelectedEvts; // counter for number of selected events
 
-  Int_t fNumSelectedEvts;
-  Int_t fErrors[2];
+    MMcEvt *fEvt;           // Events used to determin energy slope
 
-    MMcEvt *fEvt;
-    //    MMcCorsikaRunHeader *fMcRunHeader;
+    Bool_t fResult;         // Result returned by IsExpressionTrue
+    Float_t fNewSlope;      // New slope set by user
 
-    Bool_t fResult;        
-    Float_t fNewSlope;     // New slope set by user 
+    Float_t fMcSlope;       // Original energy slope from MC data
+    Float_t fMcMinEnergy;   // Starting energy of MC data
+    Float_t fMcMaxEnergy;   // Ending energy of MC data
 
-    Float_t fMcSlope;     // Original energy slope from MC data
-    Float_t fMcMinEnergy; // Starting energy of MC data
-    Float_t fMcMaxEnergy; // Ending energy of MC data
-
-    Float_t fN0; // Normalization factor
-
-    //    void Init(const Float_t val,
-    //          const char *name, const char *title);
+    Float_t fN0;            // Normalization factor
 
     Bool_t PreProcess(MParList *pList);
     Bool_t Process();
-    Bool_t PostProcess();
 
 public:
-
-    //    MFEnergySlope(const char *name=NULL, const char *title=NULL);
-    //    MFEnergySlope();
     MFEnergySlope(const char *name=NULL, const char *title=NULL);
 
Index: trunk/MagicSoft/Mars/mhist/MHThetabarTime.cc
===================================================================
--- trunk/MagicSoft/Mars/mhist/MHThetabarTime.cc	(revision 2008)
+++ trunk/MagicSoft/Mars/mhist/MHThetabarTime.cc	(revision 2009)
@@ -119,5 +119,5 @@
 // Fill the histogram
 //
-Bool_t MHThetabarTime::Fill(const MParContainer *par)
+Bool_t MHThetabarTime::Fill(const MParContainer *par, Double_t w)
 {
     const Int_t time = fTime->GetTimeLo();
