Index: trunk/MagicSoft/include-Classes/MMcFormat/MMcFadcHeader.cxx
===================================================================
--- trunk/MagicSoft/include-Classes/MMcFormat/MMcFadcHeader.cxx	(revision 686)
+++ trunk/MagicSoft/include-Classes/MMcFormat/MMcFadcHeader.cxx	(revision 693)
@@ -29,5 +29,5 @@
 
   for(i=0;i<MFADC_CHANNELS;i++){
-    fPedesMean[i]= 0    ;
+    fPedesMean[i]= 0.0    ;
     fElecNoise[i]=-1.0   ;
   }
@@ -50,4 +50,8 @@
   cout << " Amplitude of the trigger in mV : "<<fAmplFadc<<endl;
   cout << " Width of the signal in nsec : "<<fFwhmFadc<<endl;
+  cout << " Pedestals and ElecNoise in fadc counts : "<<endl;
+  for (int i=0;i<MFADC_CHANNELS;i++){
+    cout << " Pixel "<<i<<" : "<<fPedesMean[i]<<"  "<<fElecNoise[i]<<endl;
+  }
   cout << endl ; 
 }
Index: trunk/MagicSoft/include-Classes/MMcFormat/MMcFadcHeader.hxx
===================================================================
--- trunk/MagicSoft/include-Classes/MMcFormat/MMcFadcHeader.hxx	(revision 686)
+++ trunk/MagicSoft/include-Classes/MMcFormat/MMcFadcHeader.hxx	(revision 693)
@@ -22,5 +22,5 @@
   Float_t  fAmplFadc    ;   // the amplitude of the trigger in mV
   Float_t  fFwhmFadc    ;   // the width of the signal in nsec
-  UChar_t  fPedesMean[MFADC_CHANNELS]    ;  //  The mean value for the pedestal
+  Float_t  fPedesMean[MFADC_CHANNELS]    ;  //  The mean value for the pedestal
                                             //  of each pixel (channel)
   Float_t  fElecNoise[MFADC_CHANNELS]   ;  //  The rms value in the pedestal 
@@ -47,5 +47,5 @@
   }
 
-  void SetPedestal(UChar_t *mean, Int_t dim){
+  void SetPedestal(Float_t *mean, Int_t dim){
     for (Int_t i=0;i<dim;i++)
       fPedesMean[i]=mean[i];
