Index: trunk/Mars/msimcamera/MTruePhotonsPerPixelCont.cc
===================================================================
--- trunk/Mars/msimcamera/MTruePhotonsPerPixelCont.cc	(revision 17662)
+++ trunk/Mars/msimcamera/MTruePhotonsPerPixelCont.cc	(revision 17662)
@@ -0,0 +1,27 @@
+#include "MTruePhotonsPerPixelCont.h"
+ClassImp(MTruePhotonsPerPixelCont);
+
+MTruePhotonsPerPixelCont::MTruePhotonsPerPixelCont(const char *name, const char *title)
+{
+    cherenkov_photons_weight = new MArrayF(1440);
+    cherenkov_photons_number = new MArrayF(1440);
+    muon_cherenkov_photons_weight = new MArrayF(1440);
+    muon_cherenkov_photons_number = new MArrayF(1440);
+    noise_photons_weight = new MArrayF(1440);
+    cherenkov_arrival_time_mean = new MArrayF(1440);
+    cherenkov_arrival_time_variance = new MArrayF(1440);
+    cherenkov_arrival_time_min = new MArrayF(1440);
+    cherenkov_arrival_time_max = new MArrayF(1440);
+}
+
+MTruePhotonsPerPixelCont::~MTruePhotonsPerPixelCont(){
+    delete cherenkov_photons_weight;
+    delete cherenkov_photons_number;
+    delete muon_cherenkov_photons_weight;
+    delete muon_cherenkov_photons_number;
+    delete noise_photons_weight;
+    delete cherenkov_arrival_time_mean;
+    delete cherenkov_arrival_time_variance;
+    delete cherenkov_arrival_time_min;
+    delete cherenkov_arrival_time_max;
+}
Index: trunk/Mars/msimcamera/MTruePhotonsPerPixelCont.h
===================================================================
--- trunk/Mars/msimcamera/MTruePhotonsPerPixelCont.h	(revision 17662)
+++ trunk/Mars/msimcamera/MTruePhotonsPerPixelCont.h	(revision 17662)
@@ -0,0 +1,41 @@
+#ifndef STUFF_H
+#define STUFF_H
+
+#include "MParContainer.h"
+#include "MArrayF.h"
+
+/*
+ * 
+- sum of heights of all cherenkov photons and their crosstalk pulses
+- number of all cherenkov photons and their crosstalk pulses
+- sum of heights of all cherenkov photons and their crosstalk pulses caused by muons
+- number of all cherenkov photons and their crosstalk pulses caused by muons
+- sum of heights of all other pulses (NSB, DC,Afterpulses) and their crosstalk pulses
+- Mean of the arrivaltimes of the cherenkov photons
+- Rms of the arrivaltimes of the cherenkov photons
+- Median of the arrivaltimes of the cherenkov photons
+- Min of the arrivaltimes of the cherenkov photons
+- Max of the arrivaltimes of the cherenkov photons 
+* */
+
+class MTruePhotonsPerPixelCont : public MParContainer
+{
+public:
+    MArrayF *cherenkov_photons_weight;          // {fits: name=McCherPhotWeight}
+    MArrayF *cherenkov_photons_number;          // {fits: name=McCherPhotNumber}
+    MArrayF *muon_cherenkov_photons_weight;     // {fits: name=McMuonCherPhotWeight}
+    MArrayF *muon_cherenkov_photons_number;     // {fits: name=McMuonCherPhotNumber}
+    MArrayF *noise_photons_weight;              // {fits: name=McNoisePhotWeight}
+    MArrayF *cherenkov_arrival_time_mean;       // {fits: name=McCherArrTimeMean}
+    MArrayF *cherenkov_arrival_time_variance;   // {fits: name=McCherArrTimeVar}
+    MArrayF *cherenkov_arrival_time_min;        // {fits: name=McCherArrTimeMin}
+    MArrayF *cherenkov_arrival_time_max;        // {fits: name=McCherArrTimeMax}
+
+    
+    MTruePhotonsPerPixelCont(const char *name="MTruePhotonsPerPixelCont", const char *title="MTruePhotonsPerPixelCont");
+    ~MTruePhotonsPerPixelCont();
+    
+    ClassDef(MTruePhotonsPerPixelCont, 1) // MTruePhotonsPerPixelCont
+};
+
+#endif
Index: trunk/Mars/msimcamera/Makefile
===================================================================
--- trunk/Mars/msimcamera/Makefile	(revision 17661)
+++ trunk/Mars/msimcamera/Makefile	(revision 17662)
@@ -33,5 +33,6 @@
 	   MSimTrigger.cc \
 	   MSimReadout.cc \
-	   MSimSignalCam.cc
+           MSimSignalCam.cc \
+           MTruePhotonsPerPixelCont.cc
 
 ############################################################
Index: trunk/Mars/msimcamera/SimCameraLinkDef.h
===================================================================
--- trunk/Mars/msimcamera/SimCameraLinkDef.h	(revision 17661)
+++ trunk/Mars/msimcamera/SimCameraLinkDef.h	(revision 17662)
@@ -18,3 +18,5 @@
 #pragma link C++ class MSimCalibrationSignal+;
 
+#pragma link C++ class MTruePhotonsPerPixelCont+;
+
 #endif
