Index: trunk/MagicSoft/Mars/mreflector/MRflEvtData.cc
===================================================================
--- trunk/MagicSoft/Mars/mreflector/MRflEvtData.cc	(revision 2134)
+++ trunk/MagicSoft/Mars/mreflector/MRflEvtData.cc	(revision 2135)
@@ -1,2 +1,40 @@
+/* ======================================================================== *\
+!
+! *
+! * This file is part of MARS, the MAGIC Analysis and Reconstruction
+! * Software. It is distributed to you in the hope that it can be a useful
+! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
+! * It is distributed WITHOUT ANY WARRANTY.
+! *
+! * Permission to use, copy, modify and distribute this software and its
+! * documentation for any purpose is hereby granted without fee,
+! * provided that the above copyright notice appear in all copies and
+! * that both that copyright notice and this permission notice appear
+! * in supporting documentation. It is provided "as is" without express
+! * or implied warranty.
+! *
+!
+!
+!   Author(s): Thomas Bretz, 5/2003 <mailto:tbretz@astro.uni-wuerzburg.de>
+!
+!   Copyright: MAGIC Software Development, 2000-2003
+!
+!
+\* ======================================================================== */
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// MRflEvtData
+//
+// All Photons of a event from the reflector program
+//
+// Should be filled like this:
+//   MRflEvtData evt;
+//   evt.Reset();
+//   for (int i=0; i<10; i++)
+//      MRflSinglePhoton &ph = evt.GetNewPhoton();
+//   evt.FixSize();
+//
+/////////////////////////////////////////////////////////////////////////////
 #include "MRflEvtData.h"
 
@@ -17,4 +55,8 @@
 }
 
+// --------------------------------------------------------------------------
+//
+// Dump informations off all photons
+//
 void MRflEvtData::Print(Option_t *o="") const
 {
@@ -23,4 +65,8 @@
 }
 
+// --------------------------------------------------------------------------
+//
+// Add a new photon to the list
+//
 MRflSinglePhoton &MRflEvtData::GetNewPhoton()
 {
@@ -31,4 +77,8 @@
 }
 
+// --------------------------------------------------------------------------
+//
+// If you have added all photon fix the size of the container.
+//
 void MRflEvtData::FixSize()
 {
Index: trunk/MagicSoft/Mars/mreflector/MRflEvtData.h
===================================================================
--- trunk/MagicSoft/Mars/mreflector/MRflEvtData.h	(revision 2134)
+++ trunk/MagicSoft/Mars/mreflector/MRflEvtData.h	(revision 2135)
@@ -28,5 +28,6 @@
 
     void Print(Option_t *o="") const;
-    ClassDef(MRflEvtData, 0)
+
+    ClassDef(MRflEvtData, 0) // All Photons of a event from the reflector program
 };
 
Index: trunk/MagicSoft/Mars/mreflector/MRflSinglePhoton.cc
===================================================================
--- trunk/MagicSoft/Mars/mreflector/MRflSinglePhoton.cc	(revision 2134)
+++ trunk/MagicSoft/Mars/mreflector/MRflSinglePhoton.cc	(revision 2135)
@@ -1,2 +1,33 @@
+/* ======================================================================== *\
+!
+! *
+! * This file is part of MARS, the MAGIC Analysis and Reconstruction
+! * Software. It is distributed to you in the hope that it can be a useful
+! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
+! * It is distributed WITHOUT ANY WARRANTY.
+! *
+! * Permission to use, copy, modify and distribute this software and its
+! * documentation for any purpose is hereby granted without fee,
+! * provided that the above copyright notice appear in all copies and
+! * that both that copyright notice and this permission notice appear
+! * in supporting documentation. It is provided "as is" without express
+! * or implied warranty.
+! *
+!
+!
+!   Author(s): Thomas Bretz, 5/2003 <mailto:tbretz@astro.uni-wuerzburg.de>
+!
+!   Copyright: MAGIC Software Development, 2000-2003
+!
+!
+\* ======================================================================== */
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// MRflSinglePhoton
+//
+// Single Photon of a event from the reflector program
+//
+/////////////////////////////////////////////////////////////////////////////
 #include "MRflSinglePhoton.h"
 
@@ -6,4 +37,8 @@
 ClassImp(MRflSinglePhoton);
 
+// --------------------------------------------------------------------------
+//
+// Dump all photon information
+//
 void MRflSinglePhoton::Print(Option_t *o="") const
 {
Index: trunk/MagicSoft/Mars/mreflector/MRflSinglePhoton.h
===================================================================
--- trunk/MagicSoft/Mars/mreflector/MRflSinglePhoton.h	(revision 2134)
+++ trunk/MagicSoft/Mars/mreflector/MRflSinglePhoton.h	(revision 2135)
@@ -28,5 +28,6 @@
     void Print(Option_t *o="") const;
 
-    ClassDef(MRflSinglePhoton, 0)
+    ClassDef(MRflSinglePhoton, 0) // Single Photon of a event from the reflector program
+
 };
 
Index: trunk/MagicSoft/Mars/mreflector/ReflectorIncl.h
===================================================================
--- trunk/MagicSoft/Mars/mreflector/ReflectorIncl.h	(revision 2135)
+++ trunk/MagicSoft/Mars/mreflector/ReflectorIncl.h	(revision 2135)
@@ -0,0 +1,3 @@
+#ifndef __CINT__
+
+#endif // __CINT__
Index: trunk/MagicSoft/Mars/mreflector/ReflectorLinkDef.h
===================================================================
--- trunk/MagicSoft/Mars/mreflector/ReflectorLinkDef.h	(revision 2135)
+++ trunk/MagicSoft/Mars/mreflector/ReflectorLinkDef.h	(revision 2135)
@@ -0,0 +1,10 @@
+#ifdef __CINT__
+
+#pragma link off all globals;
+#pragma link off all classes;
+#pragma link off all functions;
+
+#pragma link C++ class MRflEvtData+;
+#pragma link C++ class MRflSinglePhoton+;
+
+#endif
