Index: trunk/MagicSoft/include-Classes/MMcFormat/MMcTrig.cxx
===================================================================
--- trunk/MagicSoft/include-Classes/MMcFormat/MMcTrig.cxx	(revision 2348)
+++ trunk/MagicSoft/include-Classes/MMcFormat/MMcTrig.cxx	(revision 2365)
@@ -1,5 +1,5 @@
 #include "MMcTrig.hxx"
 
-#include <iostream>
+#include <iostream.h>
 
 
@@ -123,8 +123,18 @@
   //  first level trigger happened, 0 if not.
   //
-
+  
   const Int_t  body=npix/8;
-  const Byte_t reminder= 1>>(npix%8);
+  const Byte_t reminder= 1<<(npix%8);
 
   return reminder&fPixelsFirst[body][nfirstlevel];
+  /*
+  Byte_t ret=0;
+  Byte_t reminder;
+  Int_t body;
+
+  body=npix/8;
+  reminder=(Byte_t)(pow(2,npix%8));
+  ret=reminder&fPixelsFirst[body][nfirstlevel];
+  return(ret);
+  */
 }
