Index: trunk/MagicSoft/Simulation/Detector/include-MFadc/MFadc.cxx
===================================================================
--- trunk/MagicSoft/Simulation/Detector/include-MFadc/MFadc.cxx	(revision 2432)
+++ trunk/MagicSoft/Simulation/Detector/include-MFadc/MFadc.cxx	(revision 2433)
@@ -37,4 +37,12 @@
   fwhm_resp_outer = fwhmout; 
   ampl_resp_outer = amplout; 
+
+  cout<< "[MFadc]  Setting up the MFadc with this values "<< endl ; 
+  cout<< "[MFadc]    - Inner pixels :  "<< endl ; 
+  cout<< "[MFadc]       Response Are : "<<ampl<<" adc counts"<< endl ; 
+  cout<< "[MFadc]       Response FWHM : "<<fwhm<<" ns"<< endl ; 
+  cout<< "[MFadc]    - Inner pixels :  "<< endl ; 
+  cout<< "[MFadc]       Response Are : "<<amplout<<" adc counts"<< endl ; 
+  cout<< "[MFadc]       Response FWHM : "<<fwhmout<<" ns"<< endl ; 
   
   //
@@ -101,4 +109,6 @@
     pedestal[i] = 0.0 ; 
   }
+
+  cout<<" end of MFadc::MFadc()"<<endl;
 }
   
@@ -634,5 +644,5 @@
   //    computes the pedestal sigma for channel pix
 
-  Float_t rms=0;
+  Float_t sigma=0;
   UChar_t value=0;
   
@@ -665,10 +675,10 @@
 	       :UChar_t(Int_t(value)+digital_noise[startslice+is]));
     }
-    rms+=((Float_t)value-pedestal[pix])*((Float_t)value-pedestal[pix]);
-  }
-
-  rms=sqrt(rms/(SLICES_MFADC-1));
-
-  return rms;
+    sigma+=((Float_t)value-pedestal[pix])*((Float_t)value-pedestal[pix]);
+  }
+
+  sigma=sqrt(sigma/(SLICES_MFADC-1));
+
+  return sigma;
 }
 
