Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 5984)
+++ trunk/MagicSoft/Mars/Changelog	(revision 5985)
@@ -21,4 +21,12 @@
                                                  -*-*- END OF LINE -*-*-
 
+ 2005/01/25 Thomas Bretz
+
+   * mcalib/MCalibrationIntensityChargeCam.cc:
+     - fixed a lot of 'default argument'-warnings to make to code
+       compile
+
+
+
  2005/01/25 Markus Gaug
 
@@ -30,4 +38,6 @@
    * mcalib/MCalibrationChargeCalc.cc
      - ensure to set the color correctly in MCalibrationBlindCam
+
+
 
  2005/01/24 Abelardo Moralejo
@@ -38,4 +48,6 @@
        this, for the last week you may have found trouble running 
        starmc.C and mccalibrate.C.
+
+
 
  2005/01/24 Thomas Bretz
Index: trunk/MagicSoft/Mars/mcalib/MCalibrationIntensityChargeCam.cc
===================================================================
--- trunk/MagicSoft/Mars/mcalib/MCalibrationIntensityChargeCam.cc	(revision 5984)
+++ trunk/MagicSoft/Mars/mcalib/MCalibrationIntensityChargeCam.cc	(revision 5985)
@@ -1078,20 +1078,20 @@
 
 }
-void MCalibrationIntensityChargeCam::DrawPheVsCharge( const UInt_t pixid, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE)
+void MCalibrationIntensityChargeCam::DrawPheVsCharge( const UInt_t pixid, const MCalibrationCam::PulserColor_t col)
 {
   TGraphErrors *gr = GetPheVsCharge(pixid,col);
   gr->Draw("A*");
 }
-void MCalibrationIntensityChargeCam::DrawPhePerCharge( const UInt_t pixid, const MGeomCam &geom, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE)
+void MCalibrationIntensityChargeCam::DrawPhePerCharge( const UInt_t pixid, const MGeomCam &geom, const MCalibrationCam::PulserColor_t col)
 {
   TGraphErrors *gr = GetPhePerCharge(pixid,geom,col); 
   gr->Draw("A*");
 }
-void MCalibrationIntensityChargeCam::DrawPhePerChargePerArea( const Int_t aidx, const MGeomCam &geom, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE)
+void MCalibrationIntensityChargeCam::DrawPhePerChargePerArea( const Int_t aidx, const MGeomCam &geom, const MCalibrationCam::PulserColor_t col)
 {
   TGraphErrors *gr = GetPhePerChargePerArea(aidx,geom,col); 
   gr->Draw("A*");
 }
-void MCalibrationIntensityChargeCam::DrawPheVsChargePerArea( const Int_t aidx, const MCalibrationCam::PulserColor_t col=MCalibrationCam::kNONE)
+void MCalibrationIntensityChargeCam::DrawPheVsChargePerArea( const Int_t aidx, const MCalibrationCam::PulserColor_t col)
 {
   TGraphErrors *gr = GetPheVsChargePerArea(aidx,col); 
@@ -1114,5 +1114,5 @@
   gr->Draw("A*");
 }
-void MCalibrationIntensityChargeCam::DrawPhotVsTime( const Option_t *method="FFactor" )
+void MCalibrationIntensityChargeCam::DrawPhotVsTime( const Option_t *method)
 {
   TGraphErrors *gr = GetPhotVsTime(method); 
