Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 4204)
+++ trunk/MagicSoft/Mars/Changelog	(revision 4205)
@@ -52,4 +52,8 @@
      - set extracted signal from UInt_t to Int_t (sometimes, less than
        0)
+
+   * mcalib/MCalibrationCam.h
+   * mcalib/MHCalibrationCam.h
+     - make destructors virtual. 
 
 
Index: trunk/MagicSoft/Mars/mcalib/MCalibrationCam.h
===================================================================
--- trunk/MagicSoft/Mars/mcalib/MCalibrationCam.h	(revision 4204)
+++ trunk/MagicSoft/Mars/mcalib/MCalibrationCam.h	(revision 4205)
@@ -44,5 +44,5 @@
 
   MCalibrationCam(const char *name=NULL, const char *title=NULL);
-  ~MCalibrationCam();
+  virtual ~MCalibrationCam();
   
   virtual void Clear           ( Option_t *o="");
Index: trunk/MagicSoft/Mars/mcalib/MCalibrationQECam.cc
===================================================================
--- trunk/MagicSoft/Mars/mcalib/MCalibrationQECam.cc	(revision 4204)
+++ trunk/MagicSoft/Mars/mcalib/MCalibrationQECam.cc	(revision 4205)
@@ -106,5 +106,4 @@
 //
 MCalibrationQECam::MCalibrationQECam(const char *name, const char *title)
-    : fFlags(MCalibrationCam::gkNumPulserColors)
 {
     fName  = name  ? name  : "MCalibrationQECam";
@@ -114,4 +113,6 @@
     fAverageAreas     = new TClonesArray("MCalibrationQEPix",1);
     fAverageSectors   = new TClonesArray("MCalibrationQEPix",1);
+
+    fFlags.Set(MCalibrationCam::gkNumPulserColors);
 
     Clear();
Index: trunk/MagicSoft/Mars/mcalib/MHCalibrationCam.h
===================================================================
--- trunk/MagicSoft/Mars/mcalib/MHCalibrationCam.h	(revision 4204)
+++ trunk/MagicSoft/Mars/mcalib/MHCalibrationCam.h	(revision 4205)
@@ -109,5 +109,5 @@
 
   MHCalibrationCam(const char *name=NULL, const char *title=NULL);
-  ~MHCalibrationCam();
+  virtual ~MHCalibrationCam();
 
   virtual Bool_t SetupFill(const MParList *pList);
