]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVGEN/AliGenCocktailEntry.cxx
Log replaced by Id
[u/mrichter/AliRoot.git] / EVGEN / AliGenCocktailEntry.cxx
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 // 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>
25 #include "AliGenCocktailEntry.h"
26 #include "AliGenerator.h"
27
28
29 ClassImp(AliGenCocktailEntry)
30
31
32     AliGenCocktailEntry::AliGenCocktailEntry()
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;
42 }
43
44 AliGenCocktailEntry:: AliGenCocktailEntry
45 (AliGenerator* Generator, char * Name, Float_t RateExp):TNamed(Name, "Generator Cocktail Entry")
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;
53 //          
54     fKineBias=1;
55     fBias=1;
56 }
57
58 AliGenCocktailEntry::AliGenCocktailEntry(const AliGenCocktailEntry &entry)
59 {
60 // Dummy copy constructor
61 }
62
63
64 void AliGenCocktailEntry::PrintInfo()
65 {
66 // Print out information about generator entry
67     printf("\n Generator: %s Generated Events: %d First: %d Last: %d",
68            (const char *) fName, fGenerator->NumberParticles(), fFirst, fLast);
69 }
70  
71 AliGenCocktailEntry& AliGenCocktailEntry::operator
72 =(const  AliGenCocktailEntry& rhs)
73 {
74 // Assignment operator
75     return *this;
76 }