Index: trunk/MagicSoft/Mars/mdatacheck/MDumpEvtHeader.cc
===================================================================
--- trunk/MagicSoft/Mars/mdatacheck/MDumpEvtHeader.cc	(revision 938)
+++ trunk/MagicSoft/Mars/mdatacheck/MDumpEvtHeader.cc	(revision 956)
@@ -28,4 +28,5 @@
 #include "MLog.h"
 #include "MLogManip.h"
+
 #include "MParList.h"
 #include "MRawEvtHeader.h"
@@ -40,5 +41,5 @@
     {
         *fLog << dbginf << " Error: MRawEvtHeader not found... exit." << endl;
-        return kFALSE ;
+        return kFALSE;
     }
 
@@ -47,5 +48,5 @@
     {
         *fLog << dbginf << " Error: MRawEvtData not found... exit." << endl;
-        return kFALSE ;
+        return kFALSE;
     }
 
@@ -55,14 +56,12 @@
 Bool_t MDumpEvtHeader::Process()
 {
-  fRawEvtHeader->Print() ; 
+  fRawEvtHeader->Print();
 
-  MRawEvtPixelIter pixel( fRawEvtData );
+  MRawEvtPixelIter pixel(fRawEvtData);
 
-  while ( pixel.Next() )
-  {
-      *fLog << " " << pixel.GetPixelId() ;
-  }
+  while (pixel.Next())
+      *fLog << " " << pixel.GetPixelId();
 
-  *fLog << endl ;
+  *fLog << endl;
   
   return kTRUE;
Index: trunk/MagicSoft/Mars/mdatacheck/MDumpEvtHeader.h
===================================================================
--- trunk/MagicSoft/Mars/mdatacheck/MDumpEvtHeader.h	(revision 938)
+++ trunk/MagicSoft/Mars/mdatacheck/MDumpEvtHeader.h	(revision 956)
@@ -14,15 +14,15 @@
 class MParList;
 
-class MDumpEvtHeader : public MTask {
- private:
-  MRawEvtHeader    *fRawEvtHeader;
+class MDumpEvtHeader : public MTask
+{
+private:
+    MRawEvtHeader *fRawEvtHeader;
+    MRawEvtData   *fRawEvtData;
 
-  MRawEvtData      *fRawEvtData;
-
- public:
-  MDumpEvtHeader () : fRawEvtHeader(NULL) { } ;
+public:
+  MDumpEvtHeader () : fRawEvtHeader(NULL) { };
 
   Bool_t PreProcess(MParList *pList);
-  Bool_t Process() ;
+  Bool_t Process();
   
   ClassDef(MDumpEvtHeader, 0)	// Class to dump the pixel ids of a raw evt to the screen
