Index: trunk/MagicSoft/Mars/manalysis/MCameraData.cc
===================================================================
--- trunk/MagicSoft/Mars/manalysis/MCameraData.cc	(revision 6499)
+++ trunk/MagicSoft/Mars/manalysis/MCameraData.cc	(revision 6569)
@@ -420,2 +420,10 @@
     *fLog << warn << "MCameraData::DrawPixelContent - not available." << endl;
 }
+
+void MCameraData::Print(Option_t *o) const
+{
+    MParContainer::Print(o);
+    *fLog << "Size = " << fData.GetSize() << endl;
+    for (int i=0; i<fData.GetSize(); i++)
+        cout << i << ": " << fData[i] << endl;
+}
Index: trunk/MagicSoft/Mars/manalysis/MCameraData.h
===================================================================
--- trunk/MagicSoft/Mars/manalysis/MCameraData.h	(revision 6499)
+++ trunk/MagicSoft/Mars/manalysis/MCameraData.h	(revision 6569)
@@ -52,4 +52,6 @@
     Double_t operator[](int i) { return fData[i]; }
 
+    void Print(Option_t *o="") const;
+
     Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const;
     void DrawPixelContent(Int_t num) const;
Index: trunk/MagicSoft/Mars/manalysis/MCerPhotAnal2.cc
===================================================================
--- trunk/MagicSoft/Mars/manalysis/MCerPhotAnal2.cc	(revision 6499)
+++ trunk/MagicSoft/Mars/manalysis/MCerPhotAnal2.cc	(revision 6569)
@@ -31,5 +31,5 @@
 //
 //  Input Containers:
-//   MRawEvtData, MPedPhotCam
+//   MRawEvtData, MPedestalCam
 //
 //  Output Containers:
@@ -48,6 +48,6 @@
 #include "MRawEvtData.h"       // MRawEvtData::GetNumPixels
 #include "MCerPhotEvt.h"
-#include "MPedPhotPix.h"
-#include "MPedPhotCam.h"
+#include "MPedestalPix.h"
+#include "MPedestalCam.h"
 #include "MRawEvtPixelIter.h"
 
@@ -78,5 +78,5 @@
 //  - MRawRunHeader
 //  - MRawEvtData
-//  - MPedPhotCam
+//  - MPestalCam
 //
 // The following output containers are also searched and created if
@@ -124,5 +124,5 @@
     }
 
-    fPedestals = (MPedPhotCam*)pList->FindCreateObj("MPedPhotCam");
+    fPedestals = (MPedestalCam*)pList->FindCreateObj("MPedestalCam");
     if (runheader && !fPedestals)
         return kFALSE;
@@ -263,5 +263,5 @@
 
         Int_t idx = pixel.GetPixelId();
-        fCerPhotEvt->AddPixel(idx, s, sigs);
+//        fCerPhotEvt->AddPixel(idx, s, sigs);
 
         // Preliminary: Do not overwrite pedestals calculated by
@@ -271,6 +271,6 @@
     }
 
-    fCerPhotEvt->FixSize();
-    fCerPhotEvt->SetReadyToSave();
+//    fCerPhotEvt->FixSize();
+//    fCerPhotEvt->SetReadyToSave();
 
     if (fPedestals)
Index: trunk/MagicSoft/Mars/manalysis/MCerPhotAnal2.h
===================================================================
--- trunk/MagicSoft/Mars/manalysis/MCerPhotAnal2.h	(revision 6499)
+++ trunk/MagicSoft/Mars/manalysis/MCerPhotAnal2.h	(revision 6569)
@@ -16,5 +16,5 @@
 
 class MRawEvtData;
-class MPedPhotCam;
+class MPedestalCam;
 class MCerPhotEvt;
 class MRawRunHeader;
@@ -23,5 +23,5 @@
 {
 private:
-    MPedPhotCam   *fPedestals;  // Pedestals of all pixels in the camera
+    MPedestalCam  *fPedestals;  // Pedestals of all pixels in the camera
     MRawEvtData   *fRawEvt;     // raw event data (time slices)
     MCerPhotEvt   *fCerPhotEvt; // Cerenkov Photon Event used for calculation
