]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVGEN/AliGenReader.cxx
- ATO-57, ATO-71 Fixed TPC multiplicity estimator (nTotTracks -> nTotESDTracks);...
[u/mrichter/AliRoot.git] / EVGEN / AliGenReader.cxx
index dee0eb0b14be6929eae0739b79e58cad2b06717d..e28f4e4eb5282109086f7cb123e0c5afbe7352fd 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/*
-$Log$
-*/
+/* $Id$ */
+//
+// Interface for reading events from files.
+// Realisations of this interface have to be used with AliGenExFile.
+// NextEvent() loops over events 
+// and NextParticle() loops over particles. 
+// Author: andreas.morsch@cern.ch
+
 #include "AliGenReader.h"
 ClassImp(AliGenReader)
 
@@ -23,12 +28,17 @@ ClassImp(AliGenReader)
 AliGenReader& AliGenReader::operator=(const  AliGenReader& rhs)
 {
 // Assignment operator
+    rhs.Copy(*this);
     return *this;
 }
 
-
-
-
+void AliGenReader::Copy(TObject&) const
+{
+    //
+    // Copy 
+    //
+    Fatal("Copy","Not implemented!\n");
+}