Line data Source code
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 :
16 : /* $Id$ */
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
23 :
24 : #include "AliGenReader.h"
25 6 : ClassImp(AliGenReader)
26 :
27 :
28 : AliGenReader& AliGenReader::operator=(const AliGenReader& rhs)
29 : {
30 : // Assignment operator
31 0 : rhs.Copy(*this);
32 0 : return *this;
33 : }
34 :
35 : void AliGenReader::Copy(TObject&) const
36 : {
37 : //
38 : // Copy
39 : //
40 0 : Fatal("Copy","Not implemented!\n");
41 0 : }
42 :
43 :
44 :
|