Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 6772)
+++ trunk/MagicSoft/Mars/Changelog	(revision 6773)
@@ -23,4 +23,5 @@
  2005/03/07 Markus Gaug
 
+   * mhcalib/MHCalibrationHiLoCam.h
    * mhcalib/MHCalibrationCam.h
    * mhcalib/MHGausEvents.h
Index: trunk/MagicSoft/Mars/mhcalib/MHCalibrationHiLoCam.cc
===================================================================
--- trunk/MagicSoft/Mars/mhcalib/MHCalibrationHiLoCam.cc	(revision 6772)
+++ trunk/MagicSoft/Mars/mhcalib/MHCalibrationHiLoCam.cc	(revision 6773)
@@ -635,2 +635,41 @@
 }
 
+// -----------------------------------------------------------------------------
+// 
+// Default draw:
+//
+// Displays the averaged areas, both amplification ratio as time difference
+//
+void MHCalibrationHiLoCam::Draw(const Option_t *opt)
+{
+
+  if (!IsAverageing())
+    return;
+
+  const Int_t nareas = fAverageHiGainAreas->GetSize();
+  if (nareas == 0)
+    return;
+
+  TVirtualPad *pad = gPad ? gPad : MH::MakeDefCanvas(this);  
+  pad->SetBorderMode(0);
+
+  pad->Divide(IsLoGain() ? 2 : 1,nareas);
+
+  for (Int_t i=0; i<nareas;i++) 
+    {
+
+      pad->cd(IsLoGain() ? 2*(i+1)-1 : i+1);
+
+      GetAverageHiGainArea(i).Draw(opt);
+
+      if (IsLoGain())
+        {
+          pad->cd(2*(i+1));
+
+          TH1F *hist = GetAverageLoGainArea(i).GetHGausHist();
+          hist->SetXTitle("Extracted Time Difference [FADC sl.]");
+          GetAverageLoGainArea(i).Draw(opt);
+        }
+    }
+}
+
