Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 5573)
+++ trunk/MagicSoft/Mars/Changelog	(revision 5574)
@@ -25,5 +25,5 @@
  * mbadpixels/MBadPixelsTreat.cc:
    - set default in constructor to UseInterpolation, ProcessPedestalEvt
-     and ProcessTimes
+     and ProcessTimes which is the callisto default
    - enhanced comments in output
 
Index: trunk/MagicSoft/Mars/mbadpixels/MBadPixelsTreat.cc
===================================================================
--- trunk/MagicSoft/Mars/mbadpixels/MBadPixelsTreat.cc	(revision 5573)
+++ trunk/MagicSoft/Mars/mbadpixels/MBadPixelsTreat.cc	(revision 5574)
@@ -106,5 +106,7 @@
     fTitle = title ? title : gsDefTitle.Data();
 
-    SetProcessPedestalRun();
+    SetUseInterpolation();
+    SetProcessPedestal();
+    SetProcessTimes();
 }
 
@@ -152,4 +154,6 @@
     {
         *fLog << err << AddSerialNumber("MGeomCam") << " not found - can't use interpolation... abort." << endl;
+        *fLog << " Use MBadPixelsTreat::SetUseInterpolation(kFALSE) to switch interpolation" << endl;
+        *fLog << " off and use unmapping instead." << endl;
         return kFALSE;
     }
@@ -162,4 +166,7 @@
         {
             *fLog << err << AddSerialNumber("MPedPhotCam") << " not found... aborting." << endl;
+            *fLog << " Use  MBadPixelsTreat::SetProcessPedestalRun(kFALSE)  and" << endl;
+            *fLog << " MBadPixelsTreat::SetProcessPedestalEvt(kFALSE) to switch" << endl;
+            *fLog << " Pedestal treatment off." << endl;
             return kFALSE;
         }
@@ -173,4 +180,5 @@
         {
             *fLog << err << AddSerialNumber("MArrivalTime") << " not found... aborting." << endl;
+            *fLog << " Use MBadPixelsTreat::SetProcessTimes(kFALSE) to switch time interpolation off." << endl;
             return kFALSE;
         }
