Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 2948)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 2949)
@@ -13,5 +13,5 @@
 
    * mcalib/MCalibrate.[h.cc]
-     - corrected Int_t ReInit to Bool_t ReInit
+     - corrected Int_t ReInit() to Bool_t ReInit(MParList *pList)
 
    * mcalib/MCalibrationCalc.[h,cc], mcalib/MCalibrationCam.[h,cc]:
Index: /trunk/MagicSoft/Mars/mcalib/MCalibrate.cc
===================================================================
--- /trunk/MagicSoft/Mars/mcalib/MCalibrate.cc	(revision 2948)
+++ /trunk/MagicSoft/Mars/mcalib/MCalibrate.cc	(revision 2949)
@@ -120,6 +120,7 @@
 // different one in case of need
 //
-Int_t MCalibrate::ReInit()
-{
+Bool_t MCalibrate::ReInit(MParList *pList)
+{
+
   if(fCalibrationMode == kBlindPixel && !fCalibrations->IsBlindPixelMethodValid())
     {
@@ -133,4 +134,5 @@
       fCalibrationMode = kFfactor;
     }
+
   return kTRUE;
 }
Index: /trunk/MagicSoft/Mars/mcalib/MCalibrate.h
===================================================================
--- /trunk/MagicSoft/Mars/mcalib/MCalibrate.h	(revision 2948)
+++ /trunk/MagicSoft/Mars/mcalib/MCalibrate.h	(revision 2949)
@@ -30,6 +30,6 @@
     
     Int_t PreProcess(MParList *pList);
+    Bool_t ReInit(MParList *pList);
     Int_t Process();
-    Int_t ReInit();
 
 public:
