Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 9593)
+++ trunk/MagicSoft/Mars/Changelog	(revision 9594)
@@ -19,4 +19,20 @@
                                                  -*-*- END OF LINE -*-*-
 
+ 2010/06/24 Thomas Bretz
+
+   * mgeom/MGeomCam.h:
+     - call constructor of base class in copy-constructor
+
+   * mhbase/MH.h:
+     - remove argument name where obsolete
+
+   * mjobs/MJSimulation.cc:
+     - fixed some axis labels
+
+   * msimreflector/MMirrorDisk.cc:
+     - changed interpretation from file from radius to diameter
+
+
+
  2010/06/24 Daniela Dorner
 
Index: trunk/MagicSoft/Mars/mgeom/MGeomCam.h
===================================================================
--- trunk/MagicSoft/Mars/mgeom/MGeomCam.h	(revision 9593)
+++ trunk/MagicSoft/Mars/mgeom/MGeomCam.h	(revision 9594)
@@ -55,5 +55,5 @@
 public:
     MGeomCam(UInt_t npix=0, Float_t dist=1, const char *name=NULL, const char *title=NULL);
-    MGeomCam(const MGeomCam &cam) { cam.Copy(*this); }
+    MGeomCam(const MGeomCam &cam) : MParContainer(cam) { cam.Copy(*this); }
 
     TObject *Clone(const char *name="") const;
Index: trunk/MagicSoft/Mars/mhbase/MH.h
===================================================================
--- trunk/MagicSoft/Mars/mhbase/MH.h	(revision 9593)
+++ trunk/MagicSoft/Mars/mhbase/MH.h	(revision 9594)
@@ -46,6 +46,6 @@
     Bool_t OverwritesDraw(TClass *cls=NULL) const;
 
-    virtual Bool_t SetupFill(const MParList *pList) { return kTRUE; }
-    virtual Bool_t ReInit(MParList *pList) { return kTRUE; }
+    virtual Bool_t SetupFill(const MParList *) { return kTRUE; }
+    virtual Bool_t ReInit(MParList *) { return kTRUE; }
     virtual Int_t  Fill(const MParContainer *par, const Stat_t weight=1);
     virtual Bool_t Finalize() { return kTRUE; }
Index: trunk/MagicSoft/Mars/msimreflector/MMirrorDisk.cc
===================================================================
--- trunk/MagicSoft/Mars/msimreflector/MMirrorDisk.cc	(revision 9593)
+++ trunk/MagicSoft/Mars/msimreflector/MMirrorDisk.cc	(revision 9594)
@@ -157,10 +157,10 @@
         return -1;
 
-    Double_t r = atof(tok[0]->GetName());
+    const Double_t d = atof(tok[0]->GetName());
 
-    if (r<=0)
+    if (d<=0)
         return -1;
 
-    fR = r;
+    fR = d/2;
 
     return 1;
