Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 2760)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 2761)
@@ -5,4 +5,11 @@
                                                  -*-*- END OF LINE -*-*-
  2004/01/09: Markus Gaug
+
+   * mhist/MHCamera.[h.cc]
+     - add the possibility to call a Draw("proj") which will 
+       draw a Y-Projection of the histogram
+
+   * macros/calibration.C
+     - apply the drawing of the projections and fit them
 
    * mcalib/MCalibrationCalc.cc
Index: /trunk/MagicSoft/Mars/mhist/MHCamera.h
===================================================================
--- /trunk/MagicSoft/Mars/mhist/MHCamera.h	(revision 2760)
+++ /trunk/MagicSoft/Mars/mhist/MHCamera.h	(revision 2761)
@@ -44,4 +44,6 @@
     Bool_t         fFreezed;     //! Just a dummy!!!! ([Set,Is]Freezed)
 
+    TH1D          *fYProj;       //! Y-Projection of the histogram (does not exist in ROOT)
+    
     //Int_t          fOptStat;
     //TGStatusBar   *fStatusBar;
@@ -88,4 +90,6 @@
     void  FillN(Int_t, const Axis_t *, const Axis_t *, const Double_t *, Int_t) {}
 
+    void CreateProjection();
+    
 public:
     MHCamera();
@@ -188,4 +192,7 @@
     UInt_t   GetNumPixels() const;
 
+    TH1D     *GetYProj()          { return fYProj;  }
+    TH1D     *GetYProj() const    { return fYProj;  }
+    
     //void SetStatusBar(TGStatusBar *bar) { fStatusBar = bar; }
 
