]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/AliGenCocktailEntry.cxx
some warnings removed
[u/mrichter/AliRoot.git] / EVGEN / AliGenCocktailEntry.cxx
CommitLineData
8f59d7fe 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
803d1ab0 16/* $Id$ */
8f59d7fe 17
675e9664 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
23
24#include <TString.h>
8f59d7fe 25#include "AliGenCocktailEntry.h"
86d0a743 26#include "AliGenerator.h"
27
8f59d7fe 28
29ClassImp(AliGenCocktailEntry)
30
31
86d0a743 32 AliGenCocktailEntry::AliGenCocktailEntry()
8f59d7fe 33{
34// Default constructor
35 fGenerator =0;
36 fNGenerated=0;
37 fFirst=-1;
38 fLast=-1;
39 fRate=0;
40 fKineBias=1;
41 fBias=1;
8f59d7fe 42}
43
44AliGenCocktailEntry:: AliGenCocktailEntry
86d0a743 45(AliGenerator* Generator, char * Name, Float_t RateExp):TNamed(Name, "Generator Cocktail Entry")
8f59d7fe 46{
47// Constructor using generator type, name and rate per event
48 fGenerator=Generator;
49 fNGenerated=0;
50 fFirst=-1;
51 fLast=-1;
52 fRate=RateExp;
8f59d7fe 53//
54 fKineBias=1;
55 fBias=1;
56}
57
c95d0eee 58AliGenCocktailEntry::AliGenCocktailEntry(const AliGenCocktailEntry &entry)
59{
60// Dummy copy constructor
61}
62
63
8f59d7fe 64void AliGenCocktailEntry::PrintInfo()
65{
66// Print out information about generator entry
86d0a743 67 printf("\n Generator: %s Generated Events: %d First: %d Last: %d",
68 (const char *) fName, fGenerator->NumberParticles(), fFirst, fLast);
8f59d7fe 69}
70
71AliGenCocktailEntry& AliGenCocktailEntry::operator
72=(const AliGenCocktailEntry& rhs)
73{
74// Assignment operator
75 return *this;
76}