]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TTherminator/TTherminator.cxx
Fix Coverity 10050
[u/mrichter/AliRoot.git] / TTherminator / TTherminator.cxx
CommitLineData
2e967919 1///////////////////////////////////////////////////////////////////////////////
2// //
3// TTherminator: global interface class to the Therminator model. //
4// Initialized global variables and runs the event generation //
5// //
6///////////////////////////////////////////////////////////////////////////////
7/******************************************************************************
8 * T H E R M I N A T O R *
9 * THERMal heavy-IoN generATOR *
10 * version 1.0 *
11 * *
12 * Authors of the model: Wojciech Broniowski, Wojciech.Broniowski@ifj.edu.pl, *
13 * Wojciech Florkowski, Wojciech.Florkowski@ifj.edu.pl *
14 * Authors of the code: Adam Kisiel, kisiel@if.pw.edu.pl *
15 * Tomasz Taluc, ttaluc@if.pw.edu.pl *
16 * Code designers: Adam Kisiel, Tomasz Taluc, Wojciech Broniowski, *
17 * Wojciech Florkowski *
18 * *
19 * For the detailed description of the program and furhter references *
20 * to the description of the model plesase refer to: nucl-th/0504047, *
21 * accessibile at: http://www.arxiv.org/nucl-th/0504047 *
22 * *
23 * Homepage: http://hirg.if.pw.edu.pl/en/therminator/ *
24 * *
25 * This code can be freely used and redistributed. However if you decide to *
26 * make modifications to the code, please contact the authors, especially *
27 * if you plan to publish the results obtained with such modified code. *
28 * Any publication of results obtained using this code must include the *
29 * reference to nucl-th/0504047 and the published version of it, when *
30 * available. *
31 * *
32 *****************************************************************************/
33#include <TTherminator.h>
34#include <fstream>
35#include <TDatabasePDG.h>
36#include <TParticle.h>
37#include <TClonesArray.h>
0ff6d0b8 38#include <TClass.h>
2e967919 39
40ReadPar *sRPInstance;
41STR sRPFileName;
42int sNumEvents;
43int sRunType;
44int sTables;
45int sModel;
46int sIntegrateSample;
47
48ClassImp(TTherminator)
49
50TTherminator::TTherminator():
51 fCalka(0),
52 fEvent(0),
53 fPartDB(0)
54{
55 // Default constructor
56 fPartDB = new ParticleDB();
57}
58TTherminator::TTherminator(const TTherminator & therm) :
c61a7285 59 TGenerator(therm),
2e967919 60 fCalka(0),
61 fEvent(0),
62 fPartDB(0)
63{
64 // Copy constructor
65 fPartDB = new ParticleDB();
66}
67TTherminator::~TTherminator()
68{
69 // Destructor
70 if (sRPInstance) delete sRPInstance;
71 if (fEvent) delete fEvent;
72 if (fCalka) delete fCalka;
73 if (fPartDB) delete fPartDB;
74}
75
76void TTherminator::ReadParameters()
77{
78 // Read in global model parameters
79 STR tModel;
80 STR tTable;
81
82 try {
83 sNumEvents = atoi(sRPInstance->getPar("NumberOfEvents").Data());
84 tModel = sRPInstance->getPar("FreezeOutModel");
85 if (tModel.Contains("SingleFreezeOut"))
86 sModel = 0;
87/*MCH begin*/
88 else if (tModel.Contains("Lhyquid3D"))
89 sModel = 10;
90 else if (tModel.Contains("Lhyquid2D"))
91 sModel = 11;
92/*MCH end*/
93 else if (tModel.Contains("BlastWaveVTDelay"))
94 sModel = 6;
95 else if (tModel.Contains("BlastWaveVT"))
96 sModel = 2;
97 else if (tModel.Contains("BlastWaveVLinearFormation"))
98 sModel = 7;
99 else if (tModel.Contains("BlastWaveVLinearDelay"))
100 sModel = 8;
101 else if (tModel.Contains("BlastWaveVLinear"))
102 sModel = 4;
103 else if (tModel.Contains("FiniteHydro"))
104 sModel = 5;
105 else {
106 PRINT_MESSAGE("Unknown model type: " << tModel.Data());
107 PRINT_MESSAGE("Please provide the proper name");
108 exit(0);
109 }
110 if (atoi(sRPInstance->getPar("Randomize").Data()) == 1)
111 sRunType = 4;
112 else
113 sRunType = 3;
114 tTable = sRPInstance->getPar("TableType");
115 if (tTable.Contains("Mathematica"))
116 sTables = 0;
117 else if (tTable.Contains("SHARE"))
118 sTables = 1;
119 else {
120 PRINT_MESSAGE("Unknown table type: " << tTable.Data());
121 exit(0);
122 }
123 sIntegrateSample = atoi(sRPInstance->getPar("NumberOfIntegrateSamples").Data());
ae89e57a 124 fInputDir = sRPInstance->getPar("InputDirSHARE");
2e967919 125 }
126 catch (STR tError) {
127 PRINT_DEBUG_1("RunBFPW::ReadParameters - Caught exception " << tError);
128 PRINT_MESSAGE("Did not find one of the neccessary parameters in the parameters file.");
129 exit(0);
130 }
131}
132
133void TTherminator::Initialize(){
134 // Initialize global variables
135 // and particle and decay tables
136 Parser *tParser;
137
138 sRPFileName = "therminator.in";
139 sRPInstance = new ReadPar(sRPFileName.Data());
140
141 ReadParameters();
142
143 tParser = new Parser(fPartDB);
144
145 tParser->ReadShare();
146
147 fCalka = new Integrator(sIntegrateSample);
148 fCalka->ReadMultInteg(fPartDB);
149
150
151 // Read in particle table from share
152 // and add missing particle type to TDatabasePDG
153
154 char str[50];
155 char str1[200];
156
157 // ParticleType *tPartBuf;
158
159 TDatabasePDG *tInstance = TDatabasePDG::Instance();
160 TParticlePDG *tParticleType;
161
162 // AliWarning(Form("Reading particle types from particles.data"));
ae89e57a 163
164 ifstream in((fInputDir+"/"+"particles.data").Data());
165 // ifstream in("particles.data");
2e967919 166
167 int charge;
168
169 int number=0;
170 if ((in) && (in.is_open()))
171 {
172 //START OF HEAD-LINE
173 in.ignore(200,'\n');
174 in.ignore(200,'\n');
175 in.ignore(200,'\n');
176 //END OF HEAD-LINE
177
178 while (in>>str)
179 {
180 if (/*(*str == '#')||*/(*str<65)||(*str>122))
181 {
182 in.getline(str1,200);
183 continue;
184 }
185 double mass, gamma, spin, tI3, tI, q, s, aq, as, c, ac, mc;
186
187 in>>mass>>gamma>>spin>>tI>>tI3>>q>>s>>aq>>as>>c>>ac>>mc;
188 number++;
189 tParticleType = tInstance->GetParticle((int) mc);
190 if (!tParticleType) {
191 charge = 0;
192 if (strstr(str, "plu")) charge = 1;
193 if (strstr(str, "min")) charge = -1;
194 if (strstr(str, "plb")) charge = -1;
195 if (strstr(str, "mnb")) charge = 1;
196 if (strstr(str, "plp")) charge = 2;
197 if (strstr(str, "ppb")) charge = -2;
198 tInstance->AddParticle(str, str, mass, gamma == 0.0 ? 1:0, gamma, charge , "meson", (int) mc);
199 // printf("Added particle %s with PDG PID %d charge %d", str, (int) mc, charge);
200 //AliWarning(Form("Added particle %s with PDG PID %d charge %d", str, (int) mc, charge));
201 // AliWarning(Form("Quantum numbers q s c aq as ac tI3 %lf %lf %lf %lf %lf %lf %lf", q, s, c, aq, as, ac, tI3));
202
203 }
204 }
205 in.close();
206 }
09b7c66c 207
208 delete tParser;
2e967919 209}
210
211void TTherminator::GenerateEvent()
212{
213 // Run single event generation
214 if ((sRunType == 3) || (sRunType == 4))
215 {
216 if (sRunType==4)
217 fCalka->Randomize();
218
219 if (!fEvent) fEvent = new Event(fPartDB, fCalka);
220 if (sRunType == 4) fEvent->Randomize();
221
222 fEvent->GenerateEvent();
223 fEvent->DecayParticles();
224 // fEvent->WriteEvent(0);
225 }
226}
227
c61a7285 228Int_t TTherminator::ImportParticles(TClonesArray *particles, Option_t */*option*/)
2e967919 229{
230 // Import particles from a generated event into an external array
c9c8970c 231 const double kFmToGev = 0.197327;
232
2e967919 233 if (particles == 0) return 0;
234 TClonesArray &particlesR = *particles;
235 particlesR.Clear();
236 Int_t nump = 0;
237 if (!fEvent) return 0;
238 Int_t numpart = fEvent->GetParticleCount();
0ff6d0b8 239 printf("\n TTherminator: Therminator stack contains %d particles.\n", numpart);
2e967919 240 for (Int_t iPart=0; iPart<numpart; iPart++) {
241 Particle *tPart = fEvent->GetParticleOfCount(iPart);
242 Int_t tFather;
243 tFather = tPart->GetFather();
244
245 if (tFather> -1) {
246 TParticle *mother = (TParticle*) (particlesR.UncheckedAt(tFather+1));
247 mother->SetLastDaughter(iPart);
248 if (mother->GetFirstDaughter()==-1)
249 mother->SetFirstDaughter(iPart);
250 }
251 nump++;
252 // printf("Putting %d %d %lf %d\n", tPart->GetParticleType()->GetPDGCode(), iPart, tPart->px, tPart);
253 new (particlesR[iPart]) TParticle(tPart->GetParticleType()->GetPDGCode(), tPart->HadDecayed(),
0ff6d0b8 254 tFather, -1, -1, -1,
255 tPart->px, tPart->py, tPart->pz, tPart->GetEnergy() ,
256 tPart->rx*1.e-13*kFmToGev, tPart->ry*1.e-13*kFmToGev, tPart->rz*1.e-13*kFmToGev, tPart->rt*1.e-13*kFmToGev/3e10);
2e967919 257 particlesR[iPart]->SetUniqueID(iPart);
258 }
259
260 return nump;
261}
262
c61a7285 263TObjArray* TTherminator::ImportParticles(Option_t */*option*/)
2e967919 264{
265 // Import generated particles into an internal array
c9c8970c 266 const double kFmToGev = 0.197327;
267
2e967919 268 Int_t nump = 0;
269 fParticles->Clear();
270 if (!fEvent) return 0;
271 Int_t numpart = fEvent->GetParticleCount();
272 printf("\n TTherminator: Therminator stack contains %d particles.", numpart);
273 fEvent->InitParticleScan();
274 for (Int_t iPart=0; iPart<numpart; iPart++) {
275 Particle *tPart = fEvent->GetNextParticle();
276 Int_t tFather;
277 tFather = tPart->GetFather();
278
279 if (tFather> -1) {
280 TParticle *mother = (TParticle*) (fParticles->UncheckedAt(tFather));
281 mother->SetLastDaughter(iPart);
282 if (mother->GetFirstDaughter()==-1)
283 mother->SetFirstDaughter(iPart);
284 }
285 TParticle* p = new TParticle(tPart->GetParticleType()->GetPDGCode(), tPart->HadDecayed(),
286 tFather, -1, -1, -1,
287 tPart->px, tPart->py, tPart->pz, tPart->GetEnergy() ,
c9c8970c 288 tPart->rx*1.e-13*kFmToGev, tPart->ry*1.e-13*kFmToGev, tPart->rz*1.e-13*kFmToGev, tPart->rt*1.e-13*kFmToGev/3e10);
2e967919 289 p->SetUniqueID(iPart);
290 fParticles->Add(p);
291 }
292 nump = fEvent->GetParticleCount();
293
294 return fParticles;
295
296}