Index: /trunk/MagicSoft/Mars/mtemp/mpisa/Changelog_pisa
===================================================================
--- /trunk/MagicSoft/Mars/mtemp/mpisa/Changelog_pisa	(revision 4111)
+++ /trunk/MagicSoft/Mars/mtemp/mpisa/Changelog_pisa	(revision 4112)
@@ -18,7 +18,19 @@
 
                                                  -*-*- END OF LINE -*-*-
+ 2004/05/21: Antonio Stamerra
+
+   * mpisa/classes
+     - added directory /classes. Should be used to add new classes
+
+   * mpisa/Makefile, mpisa/PisaLinkDef.h, mpisa/PisaIncl.h
+     - added to compile internally to the mpisa directory the classes
+
+   * mpisa/classes/MTriggerIPR.[h,cc]
+     - added container for IPR values.
+   
+
  2004/05/12: Antonio Stamerra
 
-   * mtemp/macros
+   * mpisa/macros
      - added macros:
 	- first_ana.C   given a file with hillas analysis produces ON-OFF plots
@@ -26,5 +38,5 @@
 	- HillasAnal.C  makes standard Hillas analysis
 
-   * mtemp/macros
+   * mpisa/macros
      - added this directory 	
 
Index: /trunk/MagicSoft/Mars/mtemp/mpisa/Makefile
===================================================================
--- /trunk/MagicSoft/Mars/mtemp/mpisa/Makefile	(revision 4112)
+++ /trunk/MagicSoft/Mars/mtemp/mpisa/Makefile	(revision 4112)
@@ -0,0 +1,49 @@
+##################################################################
+#
+#   subdirectory makefile
+# 
+#   for the MARS software
+#
+##################################################################
+include ../../Makefile.conf.$(OSTYPE)
+include ../../Makefile.conf.general
+
+#------------------------------------------------------------------------------
+
+CINT     = Pisa
+
+#------------------------------------------------------------------------------
+
+INCLUDES = -I. \
+	   -I../../mbase \
+	   -I../../mjobs \
+	   -I../../mpedestal \
+	   -I../../mbadpixels \
+	   -I../../mfileio \
+           -I../../mraw \
+           -I../../manalysis \
+	   -I../../mgui \
+	   -I../../mgeom \
+	   -I../../msignal \
+	   -I../../mcalib \
+	   -I../../mfilter \
+	   -I../../mhbase \
+	   -I../../mimage \
+	   -I../../mpointing \
+	   -I../../mcamera \
+	   -I../../mhist \
+	   -I../../mmc \
+	   -I../../mreport \
+	   -I../../mastro
+
+SRCFILES = \
+        ./classes/MTriggerIPR.cc
+
+############################################################
+
+all: $(OBJS)
+
+include ../../Makefile.rules
+
+clean:	rmcint rmobjs rmcore rmlib
+mrproper:	clean rmbak
Index: /trunk/MagicSoft/Mars/mtemp/mpisa/PisaIncl.h
===================================================================
--- /trunk/MagicSoft/Mars/mtemp/mpisa/PisaIncl.h	(revision 4112)
+++ /trunk/MagicSoft/Mars/mtemp/mpisa/PisaIncl.h	(revision 4112)
@@ -0,0 +1,3 @@
+#ifndef __CINT__
+
+#endif // __CINT__
Index: /trunk/MagicSoft/Mars/mtemp/mpisa/PisaLinkDef.h
===================================================================
--- /trunk/MagicSoft/Mars/mtemp/mpisa/PisaLinkDef.h	(revision 4112)
+++ /trunk/MagicSoft/Mars/mtemp/mpisa/PisaLinkDef.h	(revision 4112)
@@ -0,0 +1,9 @@
+#ifdef __CINT__
+
+#pragma link off all globals;
+#pragma link off all classes;
+#pragma link off all functions;
+
+#pragma link C++ class MTriggerIPR+;
+
+#endif
