Index: /trunk/Mars/Changelog
===================================================================
--- /trunk/Mars/Changelog	(revision 10091)
+++ /trunk/Mars/Changelog	(revision 10092)
@@ -52,2 +52,4 @@
      - updated comments
 
+   * msimcamera/MSimRandomPhotons.cc:
+     - fixed a mistake in the log-output
Index: /trunk/Mars/msimcamera/MSimRandomPhotons.cc
===================================================================
--- /trunk/Mars/msimcamera/MSimRandomPhotons.cc	(revision 10091)
+++ /trunk/Mars/msimcamera/MSimRandomPhotons.cc	(revision 10092)
@@ -238,5 +238,5 @@
     }
 
-    // If the simulated wavelenth range exists and is smaller reduce the
+    // If the simulated wavelength range exists and is smaller, reduce the
     // range to it. Later it is checked that at both edges the transmission
     // is 0. This must be true in both cases: The simulated wavelength range
@@ -338,10 +338,10 @@
     {
         *fLog << warn << "WARNING - Total transmission efficiency at ";
-        *fLog << min << "nm is not zero, but " << nsb.GetSpline()->Eval(min) << "... abort." << endl;
+        *fLog << min << "nm is not zero, but " << eff.GetSpline()->Eval(min) << "... abort." << endl;
     }
     if (eff.GetSpline()->Eval(max)>1e-5)
     {
         *fLog << warn << "WARNING - Total transmission efficiency at ";
-        *fLog << max << "nm is not zero, but " << nsb.GetSpline()->Eval(max) << "... abort." << endl;
+        *fLog << max << "nm is not zero, but " << eff.GetSpline()->Eval(max) << "... abort." << endl;
     }
 
