Index: trunk/MagicSoft/Mars/mraw/MRawCrateArray.cc
===================================================================
--- trunk/MagicSoft/Mars/mraw/MRawCrateArray.cc	(revision 764)
+++ trunk/MagicSoft/Mars/mraw/MRawCrateArray.cc	(revision 765)
@@ -25,11 +25,13 @@
 /////////////////////////////////////////////////////////////////////////////
 //
-// MRawCrateArray
+//  MRawCrateArray
 //
-// This class exists to make it possible to read in the crate data
-// TClones Array. In principal we can directly write the TClonesArray
-// to the root file, but when we read in again the root file we cannot
-// put the TClonesArray into our parameter list, becaus it isn't derived
-// from TNamed. This class is derived from TNamed and can be put in the list
+//  This class exists to make it possible to read in the crate data
+//  TClones Array. In principal we can directly write the TClonesArray
+//  to the root file, but when we read in again the root file we cannot
+//  put the TClonesArray into our parameter list, becaus it isn't derived
+//  from MParContainer. This class is derived from MParContainer and can be
+//  put in the list. The TClones Array containes conatiners which store
+//  the information about one crate (MRawCrateData).
 //
 /////////////////////////////////////////////////////////////////////////////
Index: trunk/MagicSoft/Mars/mraw/MRawCrateArray.h
===================================================================
--- trunk/MagicSoft/Mars/mraw/MRawCrateArray.h	(revision 764)
+++ trunk/MagicSoft/Mars/mraw/MRawCrateArray.h	(revision 765)
@@ -24,5 +24,4 @@
 
     void Clear(Option_t *opt=NULL);
-    void Print(Option_t *opt=NULL);
 
     MRawCrateData *GetEntry(Int_t i);
Index: trunk/MagicSoft/Mars/mraw/MRawCrateData.cc
===================================================================
--- trunk/MagicSoft/Mars/mraw/MRawCrateData.cc	(revision 764)
+++ trunk/MagicSoft/Mars/mraw/MRawCrateData.cc	(revision 765)
@@ -23,4 +23,12 @@
 \* ======================================================================== */
 
+/////////////////////////////////////////////////////////////////////////////
+//
+//  MRawCrateData
+//
+//  This container stores the information about one crate. A list of this
+//  informations can be find at MRawCrateArray
+//
+/////////////////////////////////////////////////////////////////////////////
 #include "MRawCrateData.h"
 
@@ -30,4 +38,6 @@
 #include <fstream.h>
 
+#include "MLog.h"
+
 ClassImp(MRawCrateData)
 
@@ -36,10 +46,11 @@
 }
 
+// --------------------------------------------------------------------------
+//
+//  read the information from a binary input stream about the CRATE DATA,
+//  like specified in a TDAS note
+//
 void MRawCrateData::ReadEvt(istream& fin)
 {
-    //
-    // read the information from a binary input stream about the CRATE DATA,
-    // like specified in a TDAS note
-    //
     fin.read((Byte_t*)&fDAQCrateNumber, 2);
     fin.read((Byte_t*)&fFADCEvtNumber,  4);
@@ -47,11 +58,12 @@
 }
 
+// --------------------------------------------------------------------------
+//
+//  print all stored information to gLog
+//
 void MRawCrateData::Print(Option_t *t)
 {
-    //
-    // print all stored information to screen
-    //
-    cout << "Crate Number " << fDAQCrateNumber << ":  ";
-    cout << "FADCEventNr=" << fFADCEvtNumber << "  ";
-    cout << "FADCClockTick=" << fFADCClockTick << " (20MHz)" << endl;
+    gLog << "Crate Number " << fDAQCrateNumber << ":  ";
+    gLog << "FADCEventNr=" << fFADCEvtNumber << "  ";
+    gLog << "FADCClockTick=" << fFADCClockTick << " (20MHz)" << endl;
 }
Index: trunk/MagicSoft/Mars/mraw/MRawEvtHeader.h
===================================================================
--- trunk/MagicSoft/Mars/mraw/MRawEvtHeader.h	(revision 764)
+++ trunk/MagicSoft/Mars/mraw/MRawEvtHeader.h	(revision 765)
@@ -43,20 +43,19 @@
 public:
 
-  MRawEvtHeader(const char *name=NULL, const char *title=NULL);
-  ~MRawEvtHeader();
+    MRawEvtHeader(const char *name=NULL, const char *title=NULL);
+    ~MRawEvtHedare();
 
-  void Init(MRawRunHeader *rh, MTime *t);
+    void Init(MRawRunHeader *rh, MTime *t);
 
-  void Clear(Option_t * = NULL);
-  void Print(Option_t * = NULL);
+    void Clear(Option_t * = NULL);
+    void Print(Option_t * = NULL);
 
-  void FillHeader(UInt_t, Float_t=0);
+    void FillHeader(UInt_t, Float_t=0);
 
-  UShort_t GetTrigType() const { return fTrigType; }
+    UShort_t GetTrigType() const { return fTrigType; }
 
-  int ReadEvt(istream& fin);
+    int ReadEvt(istream& fin);
 
-  ClassDef(MRawEvtHeader, 1) // Parameter Conatiner for raw EVENT HEADER
-
+    ClassDef(MRawEvtHeader, 1) // Parameter Conatiner for raw EVENT HEADER
 }; 
 
