]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/AliGenReader.cxx
end-of-line normalization
[u/mrichter/AliRoot.git] / EVGEN / AliGenReader.cxx
CommitLineData
e20ef457 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
88cb7938 16/* $Id$ */
e033748b 17//
18// Interface for reading events from files.
19// Realisations of this interface have to be used with AliGenExFile.
20// NextEvent() loops over events
21// and NextParticle() loops over particles.
22// Author: andreas.morsch@cern.ch
b9d0a01d 23
e20ef457 24#include "AliGenReader.h"
25ClassImp(AliGenReader)
26
27
28AliGenReader& AliGenReader::operator=(const AliGenReader& rhs)
29{
30// Assignment operator
198bb1c7 31 rhs.Copy(*this);
e20ef457 32 return *this;
33}
34
dc1d768c 35void AliGenReader::Copy(TObject&) const
198bb1c7 36{
37 //
38 // Copy
39 //
40 Fatal("Copy","Not implemented!\n");
41}
42
43
44