Index: trunk/MagicSoft/Mars/manalysis/MPad.cc
===================================================================
--- trunk/MagicSoft/Mars/manalysis/MPad.cc	(revision 5436)
+++ trunk/MagicSoft/Mars/manalysis/MPad.cc	(revision 5437)
@@ -503,12 +503,12 @@
   }  
 
-  *fLog << "hist2patternin = "  << hist2patternin << endl;
-  *fLog << "hist2patternout = " << hist2patternout << endl;
-  *fLog << "hist3pattern = " << hist3pattern << endl;
+  //*fLog << "hist2patternin = "  << hist2patternin << endl;
+  //*fLog << "hist2patternout = " << hist2patternout << endl;
+  //*fLog << "hist3pattern = " << hist3pattern << endl;
 
 
   TAxis *axs = hist2patternin->GetXaxis();
   Int_t nbinsthetas = axs->GetNbins();
-  *fLog << "vor fHSigmaTheta : nbinsthetas = " << nbinsthetas << endl;
+  //*fLog << "vor fHSigmaTheta : nbinsthetas = " << nbinsthetas << endl;
 
   TArrayD edgess;
@@ -517,6 +517,6 @@
   {
     edgess[i] = axs->GetBinLowEdge(i+1);
-    *fLog << all << "i, theta low edge = " << i << ",  " << edgess[i] 
-          << endl; 
+    //*fLog << all << "i, theta low edge = " << i << ",  " << edgess[i] 
+    //      << endl; 
   }
 
@@ -912,4 +912,26 @@
   // write the target padding histograms onto a file  ---------
   WritePaddingDist(fileout);     
+
+  //-------------------------------------------------------
+  TCanvas *pad = MH::MakeDefCanvas("target", "target", 600, 300); 
+  gROOT->SetSelectedPad(NULL);
+
+  pad->Divide(2, 1);
+
+  pad->cd(1);
+  gPad->SetBorderMode(0);
+  fHSigmaTheta->SetDirectory(NULL);
+  fHSigmaTheta->UseCurrentStyle();
+  fHSigmaTheta->DrawClone();
+  fHSigmaTheta->SetBit(kCanDelete);    
+
+  pad->cd(2);
+  gPad->SetBorderMode(0);
+  fHSigmaThetaOuter->SetDirectory(NULL);
+  fHSigmaThetaOuter->UseCurrentStyle();
+  fHSigmaThetaOuter->DrawClone();
+  fHSigmaThetaOuter->SetBit(kCanDelete);    
+
+  pad->Draw();
 
   return kTRUE;
