Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 3977)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 3978)
@@ -20,4 +20,11 @@
 
  2004/05/05: Markus Gaug
+ 
+   * mcalib/Makefile
+   * mcalib/CalibLinkDef.h
+   * mcalib/MHCalibrationTestTimeCam.[h,cc]
+   * mcalib/MHCalibrationTestTimeCam.[h,cc]
+     - analogue to MHCalibrationTestCam, two classes to test the 
+       output of the calibration.
 
    * msignal/Makefile
Index: /trunk/MagicSoft/Mars/mcalib/MHCalibrationTestTimePix.h
===================================================================
--- /trunk/MagicSoft/Mars/mcalib/MHCalibrationTestTimePix.h	(revision 3978)
+++ /trunk/MagicSoft/Mars/mcalib/MHCalibrationTestTimePix.h	(revision 3978)
@@ -0,0 +1,28 @@
+#ifndef MARS_MHCalibrationTestTimePix
+#define MARS_MHCalibrationTestTimePix
+
+#ifndef MARS_MHGausEvents
+#include "MHGausEvents.h"
+#endif
+
+class TH1F;
+class MHCalibrationTestTimePix : public MHGausEvents
+{
+
+private:
+
+  static const Int_t   fgChargeNbins;        // Default for fNBins          (now set to: 2000  )
+  static const Axis_t  fgChargeFirst;        // Default for fFirst          (now set to: -0.5  )
+  static const Axis_t  fgChargeLast;         // Default for fLast           (now set to: 1999.5)
+
+public:
+
+  MHCalibrationTestTimePix(const char *name=NULL, const char *title=NULL);
+  ~MHCalibrationTestTimePix() {}
+
+  virtual void Reset();  
+  
+  ClassDef(MHCalibrationTestTimePix, 1)     // Base Histogram class for TestTime Pixel Calibration
+};
+
+#endif
