Index: /trunk/Mars/Changelog
===================================================================
--- /trunk/Mars/Changelog	(revision 9929)
+++ /trunk/Mars/Changelog	(revision 9930)
@@ -23,4 +23,9 @@
    * mjobs/MJSimulation.cc:
      - correctly propagated run-number to the file-name
+     - fixed a problem with the tab-title in the ps-files
+     - fixed the histogram size for the camera (should be 5 instead
+       of 3,  I hope)
+     - fixed the tab-title for the MedDev tab
+     - do not write image-files in dev-null mode
 
 
Index: /trunk/Mars/mjobs/MJSimulation.cc
===================================================================
--- /trunk/Mars/mjobs/MJSimulation.cc	(revision 9929)
+++ /trunk/Mars/mjobs/MJSimulation.cc	(revision 9930)
@@ -473,5 +473,5 @@
     filltp.SetNameTab("TrigPos",    "TriggerPosition w.r.t the first photon");
     fillew.SetNameTab("EvtWidth",   "Time between first and last photon hitting a detector");
-    filled.SetNameTab("MedDev",     "Time between first and last photon hitting a detector");
+    filled.SetNameTab("MedDev",     "Median deviation of arrival time of photons hitting a detector");
 
     MHPhotonEvent planeG(1, "HPhotonEventGround");     // Get from MaxImpact
@@ -481,6 +481,6 @@
     MHPhotonEvent plane3(2, "HMirrorPlane3");
     MHPhotonEvent plane4(2, "HMirrorPlane4");
-    MHPhotonEvent planeF1(3, "HPhotonEventCamera");   // Get from MGeomCam
-    MHPhotonEvent planeF2(header.IsPointRun()?4:3, "HPhotonEventCones"); // Get from MGeomCam
+    MHPhotonEvent planeF1(5, "HPhotonEventCamera");   // Get from MGeomCam
+    MHPhotonEvent planeF2(header.IsPointRun()?4:5, "HPhotonEventCones"); // Get from MGeomCam
 
     plist.AddToList(&planeG);
@@ -507,5 +507,5 @@
     fill0.SetNameTab("Reflector",  "Photon distribution at reflector plane w/o camera shadow");
     //fill1.SetNameTab("CamShadow",  "Photon distribution at reflector plane w/ camera shadow");
-    fill2.SetNameTab("Candidates", "'Can hit' photon distribution at reflector plane w/ camera shadow");
+    fill2.SetNameTab("Candidates", "*Can hit* photon distribution at reflector plane w/ camera shadow");
     fill3.SetNameTab("Reflected",  "Photon distribution after reflector projected to reflector plane");
     fill4.SetNameTab("Focal",      "Photon distribution at focal plane");
@@ -768,5 +768,6 @@
         tasks.AddToList(&fillx3);
         tasks.AddToList(&fillx4);
-        tasks.AddToList(&write4a);
+        if (!HasNullOut())
+            tasks.AddToList(&write4a);
         //tasks.AddToList(&fillx5);
 
