Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 6799)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 6800)
@@ -30,4 +30,9 @@
      - modify writing of MCalibrationPulseTimeCam to disk in order to 
        avoid program crash in the destructor of MJCalibrateSignal
+
+   * mhcalib/MHGausEvents.h
+     - take fGraphEvents, fGraphPowerSpectrum, fHPowerProbability and 
+       fPowerSpectrum out of the streamer.
+     - intialize fFlags to 0
 
 
Index: /trunk/MagicSoft/Mars/mhcalib/MHGausEvents.cc
===================================================================
--- /trunk/MagicSoft/Mars/mhcalib/MHGausEvents.cc	(revision 6799)
+++ /trunk/MagicSoft/Mars/mhcalib/MHGausEvents.cc	(revision 6800)
@@ -126,5 +126,5 @@
 //
 MHGausEvents::MHGausEvents(const char *name, const char *title)
-    : fEventFrequency(0), 
+    : fEventFrequency(0), fFlags(0),
       fHPowerProbability(NULL), 
       fPowerSpectrum(NULL),
@@ -272,4 +272,6 @@
     }
 }
+
+
 
 // -----------------------------------------------------------------------------
Index: /trunk/MagicSoft/Mars/mhcalib/MHGausEvents.h
===================================================================
--- /trunk/MagicSoft/Mars/mhcalib/MHGausEvents.h	(revision 6799)
+++ /trunk/MagicSoft/Mars/mhcalib/MHGausEvents.h	(revision 6800)
@@ -40,6 +40,6 @@
   Int_t    fPowerProbabilityBins;      // Bins for the projected power spectrum
   
-  TH1I    *fHPowerProbability;         // Fourier transform of fEvents projected on y-axis
-  MArrayF *fPowerSpectrum;             // Fourier transform of fEvents
+  TH1I    *fHPowerProbability;         //! Fourier transform of fEvents projected on y-axis
+  MArrayF *fPowerSpectrum;             //! Fourier transform of fEvents
 
   enum  { kGausFitOK,
@@ -52,6 +52,6 @@
   TF1     *fFExpFit;                   // Exponential fit for FHPowerProbability
   Axis_t   fFirst;                     // Lower histogram edge  for fHGausHist (used by InitBins()) 
-  TGraph  *fGraphEvents;               // TGraph to display the event array 
-  TGraph  *fGraphPowerSpectrum;        // TGraph to display the power spectrum array 
+  TGraph  *fGraphEvents;               //! TGraph to display the event array 
+  TGraph  *fGraphPowerSpectrum;        //! TGraph to display the power spectrum array 
   TH1F     fHGausHist;                 // Histogram to hold the Gaussian distribution
   Axis_t   fLast;                      // Upper histogram edge  for fHGausHist (used by InitBins()) 
@@ -166,5 +166,5 @@
   void  SimulateGausEvents(const Float_t mean, const Float_t sigma, const Int_t nevts=4096);     // *MENU*
 
-  ClassDef(MHGausEvents, 2) // Base class for events with Gaussian distributed values
+  ClassDef(MHGausEvents, 3) // Base class for events with Gaussian distributed values
 };
 
