Index: trunk/MagicSoft/Mars/mbase/MParList.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MParList.cc	(revision 458)
+++ trunk/MagicSoft/Mars/mbase/MParList.cc	(revision 463)
@@ -54,4 +54,5 @@
   //  check if the object (you want to add) exists
   //
+
   if (!obj) return kTRUE;
 
@@ -97,9 +98,10 @@
 void MParList::Print(Option_t *t)
 {
-    //
-    //   print some information about the current status of MParList
-    //
-    cout << "ParList: " << this->GetName() << " <" << this->GetTitle() << ">" << endl;
-    cout << endl;
+  //
+  //   print some information about the current status of MParList
+  //
+  cout << "ParList: " << this->GetName() << " <" << this->GetTitle() << ">" << endl;
+  cout << endl;
+  
 }
 
Index: trunk/MagicSoft/Mars/mbase/MReadTree.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MReadTree.cc	(revision 458)
+++ trunk/MagicSoft/Mars/mbase/MReadTree.cc	(revision 463)
@@ -142,5 +142,8 @@
     // get entry
     //
-    fTree->GetEntry(fNumEntry/*++*/);
+    fTree->GetEntry(fNumEntry );
+
+    fNumEntry ++ ; 
+
     return kTRUE;
 }
Index: trunk/MagicSoft/Mars/mbase/MReadTree.h
===================================================================
--- trunk/MagicSoft/Mars/mbase/MReadTree.h	(revision 458)
+++ trunk/MagicSoft/Mars/mbase/MReadTree.h	(revision 463)
@@ -15,5 +15,5 @@
     TTree  *fTree;       // Pointer to tree
 
-    UInt_t  fNumEntry;   // Namber of actual entry
+    UInt_t  fNumEntry;   // Number of actual entry
     UInt_t  fNumEntries; // Number of Events in Tree
 
@@ -28,4 +28,6 @@
     Bool_t PostProcess();
 
+    //    Bool_t GetEvent(Int_t num ) ; 
+
     Bool_t DecEventNum(UInt_t dec=1); // decrease number of event (position in tree)
     Bool_t IncEventNum(UInt_t inc=1); // increase number of event (position in tree)
Index: trunk/MagicSoft/Mars/mbase/Makefile
===================================================================
--- trunk/MagicSoft/Mars/mbase/Makefile	(revision 458)
+++ trunk/MagicSoft/Mars/mbase/Makefile	(revision 463)
@@ -78,5 +78,5 @@
 $(LIB): $(OBJS) BaseCint.o
 	@echo " - Building Library $(LIB) ... "
-	@$(AR) $(LIB) *.o
+	$(AR) $(LIB) *.o
 
 BaseCint.cc: $(HEADERS) 
@@ -84,5 +84,5 @@
 	@echo " - Generating dictionary BaseCint.cc ..."
 
-	@$(ROOTSYS)/bin/rootcint -f BaseCint.cc \
+	$(ROOTSYS)/bin/rootcint -f BaseCint.cc \
 	-c $(INCLUDES) $(HEADERS) BaseIncl.h BaseLinkDef.h
 
