Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 847)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 848)
@@ -1,5 +1,48 @@
                                                                   -*-*- END -*-*-
 
+ 2001/06/13: Thomas Bretz
+
+   * ./.../*.h:
+     - added some comments and corrected some descriptions.
+     
+   * mbase/MParContainer.[h,cc]:
+     - added a 'dummy' function for AsciiRead, AsciiWrite
+
+
+
  2001/06/12: Thomas Bretz
+
+   * mmontecarlo/MMcEnerThreCalc.[cc,h] 
+     - copied to mmontecarlo/MMcThresholdCalc.[cc,h]
+
+   * mmontecarlo/MMcEnerThreHistos.[h,cc]
+     - copied to mmhist/MHMcEnergy.[h,cc]
+
+   * mbase/Makefile:
+     - added MWriteAsciiFile.cc
+   
+   * mhist/HistIncl.h:
+     - added TF1.h
+
+   * mhist/HistLinkDef.h:
+     - added MHMcEnergy
+ 
+   * mhist/Makefile
+     - added MHMcEnergy
+   
+   * mmontecarlo/MCollArea.h:
+     - fixed typo in ifndef
+   
+   * mmontecarlo/Makefile:
+     - added MMcThresholdCalc.cc
+     - removed MMcEnerHisto.cc
+     - removed MMcEnerThre.cc
+     - removed MMcEnerThreCalc.cc
+
+   * mmontecarlo/MonteCarloLinkDef.h:
+     - added MMcThresholdCalc.cc
+     - removed MMcEnerHisto.cc
+     - removed MMcEnerThre.cc
+     - removed MMcEnerThreCalc.cc
  
    * mbase/MWriteAsciiFile.[h,cc]: 
Index: /trunk/MagicSoft/Mars/mbase/MParContainer.cc
===================================================================
--- /trunk/MagicSoft/Mars/mbase/MParContainer.cc	(revision 847)
+++ /trunk/MagicSoft/Mars/mbase/MParContainer.cc	(revision 848)
@@ -174,2 +174,14 @@
     return nbytes;
 }
+
+void MParContainer::AsciiRead(ifstream &fin)
+{
+    *fLog << "To use the the ascii input of " << GetName();
+    *fLog << " you have to overload " << GetName() << "::AsciiRead." << endl;
+}
+
+void MParContainer::AsciiWrite(ofstream &fout) const
+{
+    *fLog << "To use the the ascii output of " << GetName();
+    *fLog << " you have to overload " << GetName() << "::AsciiWrite." << endl;
+}
Index: /trunk/MagicSoft/Mars/mbase/MParContainer.h
===================================================================
--- /trunk/MagicSoft/Mars/mbase/MParContainer.h	(revision 847)
+++ /trunk/MagicSoft/Mars/mbase/MParContainer.h	(revision 848)
@@ -72,6 +72,6 @@
     virtual void   SetHasChanged(Bool_t flag=kTRUE) { fHasChanged=flag; }
 
-    virtual void AsciiRead(ifstream &fin) {};
-    virtual void AsciiWrite(ofstream &fout) const {};
+    virtual void AsciiRead(ifstream &fin);
+    virtual void AsciiWrite(ofstream &fout) const;
 
     ClassDef(MParContainer, 1)  //The basis for all parameter containers
