Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 6289)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 6290)
@@ -28,4 +28,7 @@
        eventloop.
      - updated missing connections in class description
+
+   * msignal/MExtractTimeAndChargeDigitalFilterPeakSearch.cc:
+     - made sure that output of PostProcess fits into 80col coundary
 
 
Index: /trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeDigitalFilterPeakSearch.cc
===================================================================
--- /trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeDigitalFilterPeakSearch.cc	(revision 6289)
+++ /trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeDigitalFilterPeakSearch.cc	(revision 6290)
@@ -450,9 +450,8 @@
 Int_t MExtractTimeAndChargeDigitalFilterPeakSearch::PostProcess()
 {
-
   if (GetNumExecutions() == 0)
     return kTRUE;
 
-  *fLog << endl;
+  *fLog << warn << endl;
 
   const Int_t higainfailure = ((fHiGainOutOfRangeLeft+fHiGainOutOfRangeRight)*100)/GetNumExecutions();
@@ -460,24 +459,20 @@
 
   if (fHiGainOutOfRangeLeft > 0)
-    *fLog << warn << GetDescriptor() 
-	  << ": " << Form("%4.2f",((Float_t)fHiGainOutOfRangeLeft*100)/GetNumExecutions())
-          << "% ranging out of high-gain window to the left!" << endl;
+    *fLog << Form("%5.1f",((Float_t)fHiGainOutOfRangeLeft*100)/GetNumExecutions())
+          << "% ranging out of hi-gain window to the left!" << endl;
   if (fHiGainOutOfRangeRight > 0)
-    *fLog << warn << GetDescriptor() 
-	  << ": " << Form("%4.2f",((Float_t)fHiGainOutOfRangeRight*100)/GetNumExecutions()) 
-	  << "% ranging out of high-gain window to the right!" << endl;
+    *fLog << Form("%5.1f",((Float_t)fHiGainOutOfRangeRight*100)/GetNumExecutions())
+	  << "% ranging out of hi-gain window to the right!" << endl;
   if (fLoGainOutOfRangeLeft > 0)
-    *fLog << warn << GetDescriptor() 
-	  << ": " << Form("%4.2f",((Float_t)fLoGainOutOfRangeLeft*100)/GetNumExecutions()) 
-          << "% ranging out of low-gain window to the left!" << endl;
+    *fLog << Form("%5.1f",((Float_t)fLoGainOutOfRangeLeft*100)/GetNumExecutions())
+          << "% ranging out of lo-gain window to the left!" << endl;
   if (fHiGainOutOfRangeRight > 0)
-    *fLog << warn << GetDescriptor() 
-	  << ": " << Form("%4.2f",((Float_t)fLoGainOutOfRangeRight*100)/GetNumExecutions()) 
-	  << "% ranging out of low-gain window to the right!" << endl;
+    *fLog << Form("%5.1f",((Float_t)fLoGainOutOfRangeRight*100)/GetNumExecutions())
+	  << "% ranging out of lo-gain window to the right!" << endl;
 
   
   if (higainfailure > fHiGainFailureLimit)
     {
-      *fLog << err << GetDescriptor() << ": " << higainfailure << "% range failures in high gain above limit of: " << fHiGainFailureLimit << "%." << endl;
+      *fLog << err << higainfailure << "% range failures in high gain above limit of: " << fHiGainFailureLimit << "%." << endl;
       return kFALSE;
     }
@@ -485,9 +480,7 @@
   if (logainfailure > fLoGainFailureLimit)
     {
-      *fLog << err << GetDescriptor() << ": " << logainfailure << "% range failures in low gain above limit of: " << fLoGainFailureLimit << "%." << endl;
+      *fLog << err << logainfailure << "% range failures in low gain above limit of: " << fLoGainFailureLimit << "%." << endl;
       return kFALSE;
     }
-  
-
 
   return kTRUE;
