Index: trunk/MagicSoft/Mars/Makefile
===================================================================
--- trunk/MagicSoft/Mars/Makefile	(revision 584)
+++ trunk/MagicSoft/Mars/Makefile	(revision 585)
@@ -35,5 +35,5 @@
 #  ----->>>   mars libraries
 #
-SUBDIRS = mgui mdatacheck mbase mraw mmc
+SUBDIRS = mgui meventdisp mdatacheck mbase mraw mmc
 
 LIBRARIES = $(SUBDIRS:=.a)
@@ -93,4 +93,8 @@
 	@cd mmc; make mrproper; cd ..
 	@echo "cd .."
+	@echo "cd meventdisp"
+	@cd meventdisp; make mrproper; cd ..
+	@echo "cd .."
+
 
 
Index: trunk/MagicSoft/Mars/Makefile.depend
===================================================================
--- trunk/MagicSoft/Mars/Makefile.depend	(revision 584)
+++ trunk/MagicSoft/Mars/Makefile.depend	(revision 585)
@@ -8,2 +8,36 @@
 
 # DO NOT DELETE
+
+MGFadcDisp.o: MGFadcDisp.h ../mbase/MAGIC.h /cern/root/include/TROOT.h
+MGFadcDisp.o: /cern/root/include/TDirectory.h /cern/root/include/TNamed.h
+MGFadcDisp.o: /cern/root/include/TObject.h /cern/root/include/Rtypes.h
+MGFadcDisp.o: /cern/root/include/RConfig.h /cern/root/include/RVersion.h
+MGFadcDisp.o: /usr/include/stdio.h /usr/include/features.h
+MGFadcDisp.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h
+MGFadcDisp.o: /usr/lib/gcc-lib/i486-linux/2.7.2.3/include/stddef.h
+MGFadcDisp.o: /usr/lib/gcc-lib/i486-linux/2.7.2.3/include/stdarg.h
+MGFadcDisp.o: /usr/include/bits/types.h /usr/include/libio.h
+MGFadcDisp.o: /usr/include/_G_config.h /usr/include/bits/stdio_lim.h
+MGFadcDisp.o: /cern/root/include/DllImport.h /cern/root/include/Varargs.h
+MGFadcDisp.o: /cern/root/include/TStorage.h /cern/root/include/TBuffer.h
+MGFadcDisp.o: /cern/root/include/Bytes.h /usr/include/string.h
+MGFadcDisp.o: /cern/root/include/TList.h /cern/root/include/TSeqCollection.h
+MGFadcDisp.o: /cern/root/include/TCollection.h /cern/root/include/TIterator.h
+MGFadcDisp.o: /cern/root/include/TString.h /cern/root/include/TMath.h
+MGFadcDisp.o: /cern/root/include/TRefCnt.h /cern/root/include/TDatime.h
+MGFadcDisp.o: /cern/root/include/Htypes.h /cern/root/include/TGFrame.h
+MGFadcDisp.o: /cern/root/include/TGWindow.h /cern/root/include/TGObject.h
+MGFadcDisp.o: /cern/root/include/GuiTypes.h /cern/root/include/TGClient.h
+MGFadcDisp.o: /cern/root/include/TVirtualX.h /cern/root/include/TAttLine.h
+MGFadcDisp.o: /cern/root/include/Gtypes.h /cern/root/include/TAttFill.h
+MGFadcDisp.o: /cern/root/include/TAttText.h /cern/root/include/TAttMarker.h
+MGFadcDisp.o: /cern/root/include/TGDimension.h /cern/root/include/TGLayout.h
+MGFadcDisp.o: /cern/root/include/TGString.h /cern/root/include/TGButton.h
+MGFadcDisp.o: /cern/root/include/TGWidget.h
+MGFadcDisp.o: /cern/root/include/WidgetMessageTypes.h
+MGFadcDisp.o: /cern/root/include/TGLabel.h /cern/root/include/TGSplitter.h
+MGFadcDisp.o: /cern/root/include/TGTab.h /cern/root/include/TGListBox.h
+MGFadcDisp.o: /cern/root/include/TGCanvas.h /cern/root/include/TGSlider.h
+MGFadcDisp.o: /cern/root/include/TRootEmbeddedCanvas.h
+MGFadcDisp.o: /cern/root/include/TGTextEntry.h
+MGFadcDisp.o: /cern/root/include/TGTextBuffer.h
Index: trunk/MagicSoft/Mars/mbase/MReadTree.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MReadTree.cc	(revision 584)
+++ trunk/MagicSoft/Mars/mbase/MReadTree.cc	(revision 585)
@@ -159,4 +159,12 @@
 }
 
+Bool_t MReadTree::GetEvent() 
+{
+  // Get the Event with the current EventNumber fNumEntry 
+  //
+  fTree->GetEntry(fNumEntry );
+
+  return kTRUE;
+}
 Bool_t MReadTree::DecEventNum(UInt_t dec)
 {
Index: trunk/MagicSoft/Mars/mbase/MReadTree.h
===================================================================
--- trunk/MagicSoft/Mars/mbase/MReadTree.h	(revision 584)
+++ trunk/MagicSoft/Mars/mbase/MReadTree.h	(revision 585)
@@ -28,5 +28,5 @@
     Bool_t PostProcess();
 
-    //    Bool_t GetEvent(Int_t num ) ; 
+    Bool_t GetEvent() ; 
 
     Bool_t DecEventNum(UInt_t dec=1); // decrease number of event (position in tree)
Index: trunk/MagicSoft/Mars/mraw/MRawEvtData.cc
===================================================================
--- trunk/MagicSoft/Mars/mraw/MRawEvtData.cc	(revision 584)
+++ trunk/MagicSoft/Mars/mraw/MRawEvtData.cc	(revision 585)
@@ -155,4 +155,7 @@
     
     TGraph *graph = new TGraph(n, x, y);
+    graph->SetMaximum (256) ; 
+    graph->SetMinimum (0) ; 
+    
     graph->Draw("AC*");
     
Index: trunk/MagicSoft/Mars/readraw.cc
===================================================================
--- trunk/MagicSoft/Mars/readraw.cc	(revision 584)
+++ trunk/MagicSoft/Mars/readraw.cc	(revision 585)
@@ -18,5 +18,6 @@
 #include "MInputStreamID.h"
 
-#include "MMcEvt.hxx"
+#include "MMcEvt.hxx" 
+#include "MMcTrig.hxx" 
 
 #include "MGMarsMain.h"
@@ -68,4 +69,5 @@
 
     MMcEvt         *evtmc     = new MMcEvt() ; 
+    MMcTrig        *trigmc    = new MMcTrig() ; 
 
     //
@@ -129,9 +131,10 @@
             evttree->GetBranch("MRawCrateArray")->SetAddress(&evtcrate);
 
+	if ( ! strcmp(name, "MMcTrig") )
+	  evttree->GetBranch("MMcTrig")->SetAddress(&trigmc);
+	
         if (!strcmp(name, "MMcEvt"))
             evttree->GetBranch("MMcEvt")->SetAddress(&evtmc);
 
-        if (!strcmp(name, "MMcTrig"))
-            cout << " Not able to connect to class MMcTrig yet." << endl;
     } 
 
