Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 2195)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 2196)
@@ -25,4 +25,16 @@
    * mmain/MStatusDisplay.cc:
      - removed an unsused variable
+
+   * Makefile.conf.osf1, Makefile.conf.osf5.1:
+     - added definitions for __USE_STD_IOSTREAM and R__ANSISTREAM
+       tp be able to compile on Alphas again
+       
+   * manalysis/MCT1PadONOFF.cc:
+     - included math.h
+     - commented out some code to be able to compile on Alpha - FIXME
+     
+   * mbase/MDirIter.h:
+     - fixed a bug in the definition of MatchFilter
+     
 
 
Index: /trunk/MagicSoft/Mars/Makefile.conf.osf1
===================================================================
--- /trunk/MagicSoft/Mars/Makefile.conf.osf1	(revision 2195)
+++ /trunk/MagicSoft/Mars/Makefile.conf.osf1	(revision 2196)
@@ -25,5 +25,5 @@
 OPTIM    = -O2 -ieee -arch host -lpthread
 DEBUG    = -g  -w0 -msg_display_tag -msg_disable castqualtyp,undpreid,unrfunprm,extrasemi,intconlosbit,nonfundec,partovrd,stoclsnotfirst,boolexprconst
-ARCHDEF  = -D__OSF__
+ARCHDEF  = -D__OSF__ -D__USE_STD_IOSTREAM -DR__ANSISTREAM
 
 MARS_LIB = -Llib $(SUBDIRS/*/-l&)  $(MARSLIBS)
Index: /trunk/MagicSoft/Mars/Makefile.conf.osf5.1
===================================================================
--- /trunk/MagicSoft/Mars/Makefile.conf.osf5.1	(revision 2195)
+++ /trunk/MagicSoft/Mars/Makefile.conf.osf5.1	(revision 2196)
@@ -25,5 +25,5 @@
 OPTIM    = -O2 -ieee -arch host
 DEBUG    = -g3  -w0 -msg_display_tag -msg_disable castqualtyp,undpreid,unrfunprm,extrasemi,intconlosbit,nonfundec,partovrd,stoclsnotfirst,boolexprconst
-ARCHDEF  = -D__OSF__
+ARCHDEF  = -D__OSF__ -D__USE_STD_IOSTREAM -DR__ANSISTREAM
 
 MARS_LIB = -Llib $(SUBDIRS/*/-l&)  $(MARSLIBS)
Index: /trunk/MagicSoft/Mars/manalysis/MCT1PadONOFF.cc
===================================================================
--- /trunk/MagicSoft/Mars/manalysis/MCT1PadONOFF.cc	(revision 2195)
+++ /trunk/MagicSoft/Mars/manalysis/MCT1PadONOFF.cc	(revision 2196)
@@ -64,4 +64,5 @@
 #include "MCT1PadONOFF.h"
 
+#include <math.h>
 #include <stdio.h>
 
@@ -1155,5 +1156,6 @@
   delete nblind;
 
-
+#warn Code commented out due no compilation errors on Alpha OSF (tgb)
+/*
   // throw the Id of numBlind different pixels in this event
   TH1D *hblind;
@@ -1190,5 +1192,5 @@
 
   }
-
+*/
   //******************************************************************
   // has the event to be padded ?
Index: /trunk/MagicSoft/Mars/mbase/MDirIter.h
===================================================================
--- /trunk/MagicSoft/Mars/mbase/MDirIter.h	(revision 2195)
+++ /trunk/MagicSoft/Mars/mbase/MDirIter.h	(revision 2196)
@@ -20,5 +20,5 @@
     Bool_t  Check(const TString n) const;
     Int_t   IsDir(const char *dir) const;
-    Bool_t  MatchFilter(const TString &n, const TString &n) const;
+    Bool_t  MatchFilter(const TString &name, const TString &filter) const;
     TString ConcatFileName(const char *dir, const char *name) const;
     void    PrintEntry(const TObject &o) const;
