Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 7405)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 7406)
@@ -18,5 +18,12 @@
 
                                                  -*-*- END OF LINE -*-*-
- 2005/11/15 Daniela Dorner
+ 2005/11/16 Thomas Bretz
+
+   * datacenter/macros/plotdb.C:
+     - added new plot for camera inhomgeneity
+
+
+
+ 2005/11/16 Daniela Dorner
 
    * datacenter/macros/fillstar.C, setupdb.C:
@@ -38,4 +45,7 @@
      - implemented long awaiting E^2dN/dE plot
      - updated displaying result (formula)
+
+   * msql/MSQLServer.[h,cc]:
+     - added output of database name to GetName
 
 
@@ -113,7 +123,4 @@
    * mreport/MReportTrigger.cc:
      - fixed a typo of the indentation (two commands in one line)
-
-   * msql/MSQLServer.[h,cc]:
-     - added output of database name to GetName
 
    * mjobs/MDataSet.cc:
Index: /trunk/MagicSoft/Mars/datacenter/macros/plotdb.C
===================================================================
--- /trunk/MagicSoft/Mars/datacenter/macros/plotdb.C	(revision 7405)
+++ /trunk/MagicSoft/Mars/datacenter/macros/plotdb.C	(revision 7406)
@@ -297,4 +297,8 @@
     plot.SetDescription("Mean Signal inner Camera;S_{I} [phe]", "SignalI");
     plot.Plot("Calibration.fMeanSignalInner",  0, 7.0, 0.05);
+    plot.SetDescription("Mean PulsePos;T", "PulPos");
+    plot.Plot("Calibration.fPulsePosMean", 1, 15.0, 0.1);
+    plot.SetDescription("Rms PulsePos;T", "PulRms");
+    plot.Plot("Calibration.fPulsePosRms", 0, 2.0, 0.1);
     //from star*.root
     //muon
@@ -305,4 +309,7 @@
     plot.SetDescription("Muon Rate after Muon Cuts;R [Hz]");
     plot.Plot("Star.fMuonRate",                0, 2.0, 0.05);
+    //quality
+    plot.SetDescription("Camera Inhomogeneity;\\sigma [%]", "Inhom");
+    plot.Plot("Star.fInhomogeneity",           0, 100, 1);
     //imgpar
     plot.SetDescription("Mean Number of Islands after cleaning;N [#]", "NumIsl");
@@ -350,4 +357,6 @@
 
     MStatusDisplay *d = new MStatusDisplay;
+    d->SetWindowName(serv.GetName());
+    d->SetTitle(serv.GetName());
 
     MPlot plot(serv);
@@ -355,5 +364,6 @@
     plot.SetRequestRange(from, to);
     plotall(plot);
-    //d->SaveAsPS("plotdb.ps");
+    d->SaveAsRoot("plotdb.root");
+    d->SaveAsPS("plotdb.ps");
 }
 
@@ -376,8 +386,12 @@
 
     MStatusDisplay *d = new MStatusDisplay;
+    d->SetWindowName(serv.GetName());
+    d->SetTitle(serv.GetName());
+
     MPlot plot(serv);
     plot.SetDisplay(d);
     plot.SetRequestPeriod(period);
     plotall(plot);
-    //d->SaveAsPS("plotdb.ps");
+    d->SaveAsRoot("plotdb.root");
+    d->SaveAsPS("plotdb.ps");
 }
