Index: trunk/MagicSoft/Mars/Makefile
===================================================================
--- trunk/MagicSoft/Mars/Makefile	(revision 1026)
+++ trunk/MagicSoft/Mars/Makefile	(revision 1027)
@@ -93,5 +93,5 @@
 
 mrproper:	clean rmbak
-	@echo "Removing backup files in macros/"
+	@echo "Removing backup files in macros"
 	@rm -f macros/*~
 	@echo "Removing htmldoc-tree"
@@ -123,5 +123,5 @@
 tar:	mrproper
 	@echo "Making tar-file"
-	@tar -cvf ../mars.tar --exclude=Root .rootrc *
+	@tar cvf ../mars.tar --exclude=Root .rootrc *
 	@gzip -9 ../mars.tar
 
Index: trunk/MagicSoft/Mars/Makefile.conf.osf1
===================================================================
--- trunk/MagicSoft/Mars/Makefile.conf.osf1	(revision 1026)
+++ trunk/MagicSoft/Mars/Makefile.conf.osf1	(revision 1027)
@@ -24,5 +24,5 @@
 
 OPTIM    = -O2 -ieee -arch host
-DEBUG    = -g  -w0 -msg_display_tag -msg_disable castqualtyp,undpreid,unrfunprm,extrasemi
+DEBUG    = -g  -w0 -msg_display_tag -msg_disable castqualtyp,undpreid,unrfunprm,extrasemi,intconlosbit,nonfundec,partovrd,stoclsnotfirst
 ARCHDEF  = -D__OSF__
 
Index: trunk/MagicSoft/Mars/mbase/MAGIC.h
===================================================================
--- trunk/MagicSoft/Mars/mbase/MAGIC.h	(revision 1026)
+++ trunk/MagicSoft/Mars/mbase/MAGIC.h	(revision 1027)
@@ -37,5 +37,5 @@
 //This will be fixed soon. It doesn't work with Alphas at the moment
 class MLog;
-#if !defined __CINT__ || defined __LINUX__
+#if !defined (__CINT__) || defined (__LINUX__)
 extern MLog gLog;
 #endif
Index: trunk/MagicSoft/Mars/mbase/MEvtLoop.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MEvtLoop.cc	(revision 1026)
+++ trunk/MagicSoft/Mars/mbase/MEvtLoop.cc	(revision 1027)
@@ -97,5 +97,5 @@
 //  list is calles by the destructor of MEvtLoop, otherwise not.
 //
-inline void MEvtLoop::SetOwner(Bool_t enable=kTRUE)
+void MEvtLoop::SetOwner(Bool_t enable)
 {
     enable ? SetBit(kIsOwner) : ResetBit(kIsOwner);
Index: trunk/MagicSoft/Mars/mbase/MParList.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MParList.cc	(revision 1026)
+++ trunk/MagicSoft/Mars/mbase/MParList.cc	(revision 1027)
@@ -111,5 +111,5 @@
 //  by the destructor
 //
-inline void MParList::SetOwner(Bool_t enable)
+void MParList::SetOwner(Bool_t enable)
 {
     enable ? SetBit(kIsOwner) : ResetBit(kIsOwner);
Index: trunk/MagicSoft/Mars/mbase/MTask.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MTask.cc	(revision 1026)
+++ trunk/MagicSoft/Mars/mbase/MTask.cc	(revision 1027)
@@ -148,5 +148,5 @@
 // If Process is executed, the execution counter is increased.
 //
-inline Bool_t MTask::CallProcess()
+Bool_t MTask::CallProcess()
 {
     //
Index: trunk/MagicSoft/Mars/mbase/MTaskList.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MTaskList.cc	(revision 1026)
+++ trunk/MagicSoft/Mars/mbase/MTaskList.cc	(revision 1027)
@@ -100,5 +100,5 @@
 //  by the destructor
 //
-inline void MTaskList::SetOwner(Bool_t enable)
+void MTaskList::SetOwner(Bool_t enable)
 {
     enable ? SetBit(kIsOwner) : ResetBit(kIsOwner);
Index: trunk/MagicSoft/Mars/mgui/MGeomCam.cc
===================================================================
--- trunk/MagicSoft/Mars/mgui/MGeomCam.cc	(revision 1026)
+++ trunk/MagicSoft/Mars/mgui/MGeomCam.cc	(revision 1027)
@@ -79,5 +79,5 @@
 // Return the i-th pixel object
 //
-inline MGeomPix &MGeomCam::operator[](Int_t i)
+MGeomPix &MGeomCam::operator[](Int_t i)
 {
     return *(MGeomPix*)fPixels->At(i);
@@ -88,5 +88,5 @@
 // Return the i-th pixel object
 //
-inline MGeomPix &MGeomCam::operator[](Int_t i) const
+MGeomPix &MGeomCam::operator[](Int_t i) const
 {
     return *(MGeomPix*)fPixels->At(i);
Index: trunk/MagicSoft/Mars/mhist/MHFadcPix.cc
===================================================================
--- trunk/MagicSoft/Mars/mhist/MHFadcPix.cc	(revision 1026)
+++ trunk/MagicSoft/Mars/mhist/MHFadcPix.cc	(revision 1027)
@@ -81,5 +81,5 @@
 
 // --------------------------------------------------------------------------
-inline void MHFadcPix::FillHi(Byte_t i)
+void MHFadcPix::FillHi(Byte_t i)
 {
     fHistHi->Fill(i);
@@ -87,5 +87,5 @@
 
 // --------------------------------------------------------------------------
-inline void MHFadcPix::FillLo(Byte_t i)
+void MHFadcPix::FillLo(Byte_t i)
 {
     fHistLo->Fill(i);
@@ -93,5 +93,5 @@
 
 // --------------------------------------------------------------------------
-inline void MHFadcPix::DrawHi()
+void MHFadcPix::DrawHi()
 {
     fHistHi->Draw();
@@ -99,5 +99,5 @@
 
 // --------------------------------------------------------------------------
-inline void MHFadcPix::DrawLo()
+void MHFadcPix::DrawLo()
 {
     fHistLo->Draw();
