Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 5468)
+++ trunk/MagicSoft/Mars/Changelog	(revision 5469)
@@ -25,5 +25,13 @@
    * mbase/MRunIter.[h,cc]
      - fixed the missing initialization of kIsStandardFile to kFALSE. 
-      
+ 
+   * msignal/MExtractTimeAndChargeSpline.h
+     - added Getter Functions for the variables fRiseTime and fFallTime     
+
+   * msignal/MExtractTimeAndChargeSlidingWindow.h
+   * msignal/MExtractFixedWindowPeakSearch.h
+     - added Getter Functions for the variables fWindowSizeHiGain and 
+       fWindowSizeLoGain
+
 
  2004/11/23: Markus Gaug
Index: trunk/MagicSoft/Mars/mbase/MRunIter.h
===================================================================
--- trunk/MagicSoft/Mars/mbase/MRunIter.h	(revision 5468)
+++ trunk/MagicSoft/Mars/mbase/MRunIter.h	(revision 5469)
@@ -42,5 +42,5 @@
 
 public:
-    MRunIter(const char *path=0) : fPath(path), fIsRawFile(0) { }
+    MRunIter(const char *path=0) : fPath(path), fIsRawFile(0), fIsStandardFile(kFALSE) { }
 
     void SetRawFile(Bool_t filetype) { fIsRawFile = filetype; }
Index: trunk/MagicSoft/Mars/msignal/MExtractFixedWindowPeakSearch.h
===================================================================
--- trunk/MagicSoft/Mars/msignal/MExtractFixedWindowPeakSearch.h	(revision 5468)
+++ trunk/MagicSoft/Mars/msignal/MExtractFixedWindowPeakSearch.h	(revision 5469)
@@ -39,4 +39,7 @@
     MExtractFixedWindowPeakSearch(const char *name=NULL, const char *title=NULL);
 
+    Byte_t GetHiGainWindowSize() const { return fHiGainWindowSize; }
+    Byte_t GetLoGainWindowSize() const { return fLoGainWindowSize; }
+
     void SetRange(Byte_t hifirst=0, Byte_t hilast=0, Byte_t lofirst=0, Byte_t lolast=0);    
     void SetWindows(Byte_t windowh=fgHiGainWindowSize, Byte_t windowl=fgLoGainWindowSize, 
Index: trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeSlidingWindow.h
===================================================================
--- trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeSlidingWindow.h	(revision 5468)
+++ trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeSlidingWindow.h	(revision 5469)
@@ -43,4 +43,7 @@
   ~MExtractTimeAndChargeSlidingWindow();  
 
+  Byte_t GetWindowSizeHiGain() const { return fWindowSizeHiGain; }
+  Byte_t GetWindowSizeLoGain() const { return fWindowSizeLoGain; }
+
   void SetRange    ( Byte_t hifirst=0, Byte_t hilast=0, Byte_t lofirst=0, Byte_t lolast=0 );  
   void SetWindowSize(Byte_t windowh=fgHiGainWindowSize,
Index: trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeSpline.h
===================================================================
--- trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeSpline.h	(revision 5468)
+++ trunk/MagicSoft/Mars/msignal/MExtractTimeAndChargeSpline.h	(revision 5469)
@@ -62,4 +62,7 @@
   ~MExtractTimeAndChargeSpline();  
 
+  Float_t GetRiseTime() const { return fRiseTime; }
+  Float_t GetFallTime() const { return fFallTime; }
+
   void SetRange    ( Byte_t hifirst=0, Byte_t hilast=0, Byte_t lofirst=0, Byte_t lolast=0 );  
   void SetResolution   ( Float_t f=fgResolution  )  { fResolution  = f;  }
