Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 1076)
+++ trunk/MagicSoft/Mars/Changelog	(revision 1077)
@@ -1,5 +1,21 @@
                                                                   -*-*- END -*-*-
- 2001/11/09: Thomas Bretz
-
+ 2001/11/14: Thomas Bretz
+
+   * macros/dohtml.C:
+     - added missing path to mfilter
+   
+   * manalysis/MHillas.cc:
+     - changed the degree symbol back to 'deg', it seems that the code
+       for it isn't common
+   
+   * mhist/MH.cc:
+     - added comment for MakeDefCanvas
+
+   * mhist/MHFadcCam.[h,cc]:
+     - removed old comments (SaveHist)
+
+   * mhist/MHHillas.cc:
+     - changed the Name of fAlpha back. Symbols are nonsens in the name.
+     
    * mbase/MGList.[h,cc], mbase/MGTask.[h,cc], mbase/MGGroupFrame.[h,cc]:
      - added
Index: trunk/MagicSoft/Mars/macros/dohtml.C
===================================================================
--- trunk/MagicSoft/Mars/macros/dohtml.C	(revision 1076)
+++ trunk/MagicSoft/Mars/macros/dohtml.C	(revision 1077)
@@ -36,5 +36,5 @@
 
     html.SetOutputDir("htmldoc");
-    html.SetSourceDir(".:mbase:mraw:mgui:manalysis:mdatacheck:mmain:meventdisp:mmc:mmontecarlo:mhist");
+    html.SetSourceDir(".:mbase:mraw:mgui:manalysis:mdatacheck:mmain:meventdisp:mmc:mmontecarlo:mhist:mfilter");
     html.SetXwho("http://hegra1.mppmu.mpg.de/MAGICWeb/collaborators.html?");
 
Index: trunk/MagicSoft/Mars/manalysis/MHillas.cc
===================================================================
--- trunk/MagicSoft/Mars/manalysis/MHillas.cc	(revision 1076)
+++ trunk/MagicSoft/Mars/manalysis/MHillas.cc	(revision 1077)
@@ -94,6 +94,6 @@
 void MHillas::Print(Option_t *) const
 {
-    *fLog << "Hillas Parameter:" << endl;
-    *fLog << " - Alpha  = " << fabs(fAlpha) << "°"    << endl;
+    *fLog << "Hillas Parameter: " << GetDescriptor() << endl;
+    *fLog << " - Alpha  = " << fabs(fAlpha) << " deg" << endl;
     *fLog << " - Width  = " << fWidth  << " mm"       << endl;
     *fLog << " - Length = " << fLength << " mm"       << endl;
Index: trunk/MagicSoft/Mars/mbase/MParContainer.h
===================================================================
--- trunk/MagicSoft/Mars/mbase/MParContainer.h	(revision 1076)
+++ trunk/MagicSoft/Mars/mbase/MParContainer.h	(revision 1077)
@@ -100,6 +100,4 @@
     virtual ~MParContainer() {}
 
-    virtual const char *GetDescriptor() const { return Form("%s [%s]", GetName(), ClassName()); }
-
     virtual TObject    *Clone(const char *newname="") const;
     virtual Int_t       Compare(const TObject *obj) const;
@@ -107,8 +105,9 @@
     virtual void        FillBuffer(char *&buffer);
 
-    virtual const char *GetName() const    { return fName.Data(); }
-    virtual const char *GetTitle() const   { return fTitle.Data(); }
-    virtual ULong_t     Hash() const       { return fName.Hash(); }
-    virtual Bool_t      IsSortable() const { return kTRUE; }
+    virtual const char *GetDescriptor() const { return Form("%s [%s]", fName.Data(), ClassName()); }
+    virtual const char *GetName() const       { return fName.Data(); }
+    virtual const char *GetTitle() const      { return fTitle.Data(); }
+    virtual ULong_t     Hash() const          { return fName.Hash(); }
+    virtual Bool_t      IsSortable() const    { return kTRUE; }
 
     virtual void        SetName(const char *name); // *MENU*
Index: trunk/MagicSoft/Mars/mhist/MH.cc
===================================================================
--- trunk/MagicSoft/Mars/mhist/MH.cc	(revision 1076)
+++ trunk/MagicSoft/Mars/mhist/MH.cc	(revision 1077)
@@ -58,4 +58,17 @@
 }
 
+// --------------------------------------------------------------------------
+//
+// This is a function which should replace the creation of default
+// canvases like root does. Because this is inconvinient in some aspects.
+// need to change this.
+// You can specify a name for the default canvas and a title. Also
+// width and height can be given.
+// MakeDefCanvas looks for a canvas with the given name. If now name is
+// given the DefCanvasName of root is used. If no such canvas is existing
+// it is created and returned. If such a canvas already exists a new canvas
+// with a name plus anumber is created (the number is calculated by the
+// number of all existing canvases plus one)
+//
 TCanvas *MH::MakeDefCanvas(const char *name, const char *title,
                            const UInt_t w, const UInt_t h)
@@ -78,4 +91,9 @@
 }
 
+// --------------------------------------------------------------------------
+//
+// This function works like MakeDefCanvas(name, title, w, h) but name
+// and title are retrieved from the given TObject.
+//
 TCanvas *MH::MakeDefCanvas(const TObject *obj,
                            const UInt_t w, const UInt_t h)
Index: trunk/MagicSoft/Mars/mhist/MHFadcCam.cc
===================================================================
--- trunk/MagicSoft/Mars/mhist/MHFadcCam.cc	(revision 1076)
+++ trunk/MagicSoft/Mars/mhist/MHFadcCam.cc	(revision 1077)
@@ -112,24 +112,2 @@
 
 }
-/*void MHFadcCam::SaveHist(char *name)
-{
-    //
-    //   save all histogram in this class to a root file
-    //
-
-    //
-    // FIXME: Don't open a file and write to this file!
-    // just Fill the current container (or the two histograms
-    // to an open file. The user must choose a file before.
-    //
-    TFile out( name, "recreate") ;
-
-    //
-    //  loop over all pixels and write the files out
-    //
-
-    fHistLo->Write();
-    fHistHi->Write();
-}
-
-  */
Index: trunk/MagicSoft/Mars/mhist/MHFadcCam.h
===================================================================
--- trunk/MagicSoft/Mars/mhist/MHFadcCam.h	(revision 1076)
+++ trunk/MagicSoft/Mars/mhist/MHFadcCam.h	(revision 1077)
@@ -29,6 +29,4 @@
     ~MHFadcCam();
 
-    //    void SaveHist(char *name);
-
     MHFadcPix *operator[](UInt_t i) { return (MHFadcPix*)(fArray->At(i)); }
 
Index: trunk/MagicSoft/Mars/mhist/MHHillas.cc
===================================================================
--- trunk/MagicSoft/Mars/mhist/MHHillas.cc	(revision 1076)
+++ trunk/MagicSoft/Mars/mhist/MHHillas.cc	(revision 1077)
@@ -36,5 +36,5 @@
     // connect all the histogram with the container fHist
     //
-    fAlpha  = new TH1F("\\alpha [\\circ]", "Alpha of Hillas",   90, 0,  90);
+    fAlpha  = new TH1F("Alpha [deg]", "Alpha of Hillas",   90, 0,  90);
     fWidth  = new TH1F("Width [mm]",  "Width of Hillas",  100, 0, 300);
     fLength = new TH1F("Length [mm]", "Length of Hillas", 100, 0, 300);
