]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVGEN/AliGenReader.cxx
Coding Rule violations corrected.
[u/mrichter/AliRoot.git] / EVGEN / AliGenReader.cxx
index 970bb782035e87c5306aa2897563140ca0b296d9..f1be717c36103b274e7001227e8d3f1fad177606 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/*
-$Log$
-Revision 1.1  2001/11/09 09:09:59  morsch
-Base class with responsibility to read events and particles from a file. To be used
-with AliGenExtFile.
+/* $Id$ */
 
-*/
 #include "AliGenReader.h"
 ClassImp(AliGenReader)
 
@@ -27,6 +22,7 @@ ClassImp(AliGenReader)
 AliGenReader& AliGenReader::operator=(const  AliGenReader& rhs)
 {
 // Assignment operator
+    rhs.Copy(*this);
     return *this;
 }
 
@@ -36,3 +32,14 @@ void AliGenReader::RewindEvent()
   // Need to be implemented in the implementation classes. Interface dies.
   Fatal("AliGenReader::RewindEvent","\nMethod RewindEvent not present in the implementation class.\n");
 }
+
+void AliGenReader::Copy(AliGenReader&) const
+{
+    //
+    // Copy 
+    //
+    Fatal("Copy","Not implemented!\n");
+}
+
+
+