1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
18 // Entry for AliGenCocktail container class.
19 // See also comments there.
20 // In addition to the pointer to the generator the class provides some
21 // bookkeeping functionality (weights, links to particle list, ...)
22 // Author: andreas.morsch@cern.ch
26 #include "AliGenCocktailEntry.h"
27 #include "AliGenerator.h"
30 ClassImp(AliGenCocktailEntry)
32 AliGenCocktailEntry::AliGenCocktailEntry():
43 // Default constructor
47 AliGenCocktailEntry:: AliGenCocktailEntry
48 (AliGenerator* pGenerator, const char* Name, Float_t RateExp) :
49 TNamed(Name, "Generator Cocktail Entry"),
50 fGenerator(pGenerator),
63 AliGenCocktailEntry::AliGenCocktailEntry(const AliGenCocktailEntry &entry):
75 // Dummy copy constructor
80 void AliGenCocktailEntry::PrintInfo() const
82 // Print out information about generator entry
83 printf("\n Generator: %s Generated Events: %d First: %d Last: %d",
84 (const char *) fName, fGenerator->NumberParticles(), fFirst, fLast);
87 AliGenCocktailEntry& AliGenCocktailEntry::operator
88 =(const AliGenCocktailEntry& rhs)
90 // Assignment operator
95 void AliGenCocktailEntry::Copy(TObject&) const
100 Fatal("Copy","Not implemented!\n");