Index: trunk/MagicSoft/Mars/Makefile
===================================================================
--- trunk/MagicSoft/Mars/Makefile	(revision 593)
+++ trunk/MagicSoft/Mars/Makefile	(revision 594)
@@ -35,5 +35,5 @@
 #  ----->>>   mars libraries
 #
-SUBDIRS = mgui meventdisp mdatacheck mbase mraw manalysis mmc
+SUBDIRS = mgui manalysis meventdisp mdatacheck mbase mraw mmc
 
 LIBRARIES = $(SUBDIRS:=.a)
@@ -64,4 +64,5 @@
 
 $(LIBRARIES):
+	@echo " ++++++++++++++++++++++++++++++ "  
 	@echo " Creating lib$@:"
 	(cd $*; make; cd ..; mv $*/$@ lib/lib$@) 
Index: trunk/MagicSoft/Mars/macros/readCT1.C
===================================================================
--- trunk/MagicSoft/Mars/macros/readCT1.C	(revision 593)
+++ trunk/MagicSoft/Mars/macros/readCT1.C	(revision 594)
@@ -11,9 +11,12 @@
   MNphotEvent *phevt = new MNphotEvent() ; 
 
+
   plist->AddToList( phevt ) ; 
   
+
   MReadCT1Ascii *readct1 = new MReadCT1Ascii("/hd10/www/Anal_MAGIC/MCCT1_99_ga20.dat") ; 
 
   // MReadCT1Ascii *readct1 = new MReadCT1Ascii("/hd10/www/Anal_MAGIC/CT1_99_on1.dat") ; 
+
 
   
Index: trunk/MagicSoft/Mars/manalysis/MNphotEvent.cc
===================================================================
--- trunk/MagicSoft/Mars/manalysis/MNphotEvent.cc	(revision 593)
+++ trunk/MagicSoft/Mars/manalysis/MNphotEvent.cc	(revision 594)
@@ -41,18 +41,17 @@
 
 
-MNphotEvent::MNphotEvent(Int_t type ) 
+MNphotEvent::MNphotEvent(const char *name, const char *title ) 
 {
-  fType = type ; 
+  //   the default constructor 
+
+  
+  *fName  = name  ? name  : "MNphotEvent";
+  *fTitle = name  ? name  : "(Number of Photon)-Event Information";
+  
+  fType = 0 ; 
   fNbPixels = 0 ; 
   
-  if (fType == 0 )  // this is MAGIC
-    {
-      fPixels = new TClonesArray ("MNphotPix", 577) ;
-    }
-  else if ( fType == 1 ) // this is CT1
-    {
-      fPixels = new TClonesArray ("MNphotPix", 127) ;
-    }
-
+  fPixels = new TClonesArray ("MNphotPix", 577) ;
+  
   fPixels->Clear() ; 
 }
@@ -63,14 +62,15 @@
   // 
   
-//   MCamDisplay disp(fType)  ; 
+  //   MCamDisplay disp(fType)  ; 
+  
+  //   for (Int_t i=0; i<fNbPixels; i++)
+  //     {
+  //       disp.SetPixelColor( ((MNphotPix *) fPixels->At(i))->GetPixId(), 
+  // 			  ((MNphotPix *) fPixels->At(i))->GetPhotons()) ; 
+  //     } 
+  //   disp.Draw() ; 
+  
+}
 
-//   for (Int_t i=0; i<fNbPixels; i++)
-//     {
-//       disp.SetPixelColor( ((MNphotPix *) fPixels->At(i))->GetPixId(), 
-// 			  ((MNphotPix *) fPixels->At(i))->GetPhotons()) ; 
-//     } 
-//   disp.Draw() ; 
-
-}
 
 
Index: trunk/MagicSoft/Mars/manalysis/MNphotEvent.h
===================================================================
--- trunk/MagicSoft/Mars/manalysis/MNphotEvent.h	(revision 593)
+++ trunk/MagicSoft/Mars/manalysis/MNphotEvent.h	(revision 594)
@@ -60,5 +60,5 @@
  public:
   
-  MNphotEvent( Int_t type=0 ) ; 
+  MNphotEvent(const char *name=NULL, const char *title=NULL) ; 
 
   void Draw(Option_t* option) ; 
@@ -72,5 +72,5 @@
   void Print() ; 
 
-  ClassDef(MNphotEvent, 1)    // class for CeNphotons Events
+  ClassDef(MNphotEvent, 1)    // class for Nphotons Events
 };
 
