]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/AliGenHijing.cxx
Add Boost() method to boost all particles to LHC lab frame. Needed for asymmetric...
[u/mrichter/AliRoot.git] / EVGEN / AliGenHijing.cxx
CommitLineData
110410f9 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/*
17$Log$
cc71f2d3 18Revision 1.30 2001/10/21 18:35:56 hristov
19Several pointers were set to zero in the default constructors to avoid memory management problems
20
2685bf00 21Revision 1.29 2001/10/15 08:12:24 morsch
22- Vertex smearing with truncated gaussian.
23- Store triggered jet info before and after final state radiation into mc-heade
24
f8b85aa9 25Revision 1.28 2001/10/08 11:55:25 morsch
26Store 4-momenta of trigegred jets in event header.
27Possibility to switch of initial and final state radiation.
28
332c8db0 29Revision 1.27 2001/10/08 07:13:14 morsch
30Add setter for minimum transverse momentum of triggered jet.
31
ed6361b0 32Revision 1.26 2001/10/04 08:12:24 morsch
33Redefinition of stable condition.
34
79bf94df 35Revision 1.25 2001/07/27 17:09:36 morsch
36Use local SetTrack, KeepTrack and SetHighWaterMark methods
37to delegate either to local stack or to stack owned by AliRun.
38(Piotr Skowronski, A.M.)
39
a99cf51f 40Revision 1.24 2001/07/20 09:34:56 morsch
41Count the number of spectator neutrons and protons and add information
42to the event header. (Chiara Oppedisano)
43
b46f2676 44Revision 1.23 2001/07/13 17:30:22 morsch
45Derive from AliGenMC.
46
55d6adcf 47Revision 1.22 2001/06/11 13:09:23 morsch
48- Store cross-Section and number of binary collisions as a function of impact parameter
49- Pass AliGenHijingEventHeader to gAlice.
50
21ce2e6f 51Revision 1.21 2001/02/28 17:35:24 morsch
52Consider elastic interactions (ks = 1 and ks = 11) as spectator (Chiara Oppedisano)
53
cf6bac7b 54Revision 1.20 2001/02/14 15:50:40 hristov
55The last particle in event marked using SetHighWaterMark
56
28adac24 57Revision 1.19 2000/12/21 16:24:06 morsch
58Coding convention clean-up
59
675e9664 60Revision 1.18 2000/12/06 17:46:30 morsch
61Avoid random numbers 1 and 0.
62
7498b3ad 63Revision 1.17 2000/12/04 11:22:03 morsch
64Init of sRandom as in 1.15
65
097ec7c1 66Revision 1.16 2000/12/02 11:41:39 morsch
67Use SetRandom() to initialize random number generator in constructor.
68
1ed25e11 69Revision 1.15 2000/11/30 20:29:02 morsch
70Initialise static variable sRandom in constructor: sRandom = fRandom;
71
ad1df918 72Revision 1.14 2000/11/30 07:12:50 alibrary
73Introducing new Rndm and QA classes
74
65fb704d 75Revision 1.13 2000/11/09 17:40:27 morsch
76Possibility to select/unselect spectator protons and neutrons.
77Method SetSpectators(Int_t spect) added. (FCA, Ch. Oppedisano)
78
2705454f 79Revision 1.12 2000/10/20 13:38:38 morsch
80Debug printouts commented.
81
1df2195f 82Revision 1.11 2000/10/20 13:22:26 morsch
83- skip particle type 92 (string)
84- Charmed and beauty baryions (5122, 4122) are considered as stable consistent with
85 mesons.
86
608708ba 87Revision 1.10 2000/10/17 15:10:20 morsch
88Write first all the parent particles to the stack and then the final state particles.
89
e06552ba 90Revision 1.9 2000/10/17 13:38:59 morsch
91Protection against division by zero in EvaluateCrossSection() and KinematicSelection(..) (FCA)
92
c007646a 93Revision 1.8 2000/10/17 12:46:31 morsch
94Protect EvaluateCrossSections() against division by zero.
95
73bc6a56 96Revision 1.7 2000/10/02 21:28:06 fca
97Removal of useless dependecies via forward declarations
98
94de3818 99Revision 1.6 2000/09/11 13:23:37 morsch
100Write last seed to file (fortran lun 50) and reed back from same lun using calls to
101luget_hijing and luset_hijing.
102
b78ff279 103Revision 1.5 2000/09/07 16:55:40 morsch
104fHijing->Initialize(); after change of parameters. (Dmitri Yurevitch Peressounko)
105
ba244bac 106Revision 1.4 2000/07/11 18:24:56 fca
107Coding convention corrections + few minor bug fixes
108
aee8290b 109Revision 1.3 2000/06/30 12:08:36 morsch
110In member data: char* replaced by TString, Init takes care of resizing the strings to
1118 characters required by Hijing.
112
3b8bd63f 113Revision 1.2 2000/06/15 14:15:05 morsch
114Add possibility for heavy flavor selection: charm and beauty.
115
eb342d2d 116Revision 1.1 2000/06/09 20:47:27 morsch
117AliGenerator interface class to HIJING using THijing (test version)
118
110410f9 119*/
120
675e9664 121
122
123// Generator using HIJING as an external generator
124// The main HIJING options are accessable for the user through this interface.
125// Uses the THijing implementation of TGenerator.
126//
127// andreas.morsch@cern.ch
128
110410f9 129#include "AliGenHijing.h"
3b8bd63f 130#include "AliGenHijingEventHeader.h"
110410f9 131#include "AliRun.h"
b46f2676 132#include "AliPDG.h"
110410f9 133
134#include <TArrayI.h>
135#include <TParticle.h>
136#include <THijing.h>
21ce2e6f 137#include <TGraph.h>
332c8db0 138#include <TLorentzVector.h>
110410f9 139
ad1df918 140
110410f9 141 ClassImp(AliGenHijing)
142
143AliGenHijing::AliGenHijing()
55d6adcf 144 :AliGenMC()
110410f9 145{
146// Constructor
147}
148
149AliGenHijing::AliGenHijing(Int_t npart)
55d6adcf 150 :AliGenMC(npart)
110410f9 151{
152// Default PbPb collisions at 5. 5 TeV
153//
154 SetEnergyCMS();
155 SetImpactParameterRange();
156 SetTarget();
157 SetProjectile();
cc71f2d3 158 SetBoostLHC();
ed6361b0 159 fKeep = 0;
160 fQuench = 1;
161 fShadowing = 1;
162 fTrigger = 0;
163 fDecaysOff = 1;
164 fEvaluate = 0;
165 fSelectAll = 0;
166 fFlavor = 0;
167 fSpectators = 1;
168 fDsigmaDb = 0;
169 fDnDb = 0;
170 fPtMinJet = -2.5;
332c8db0 171 fRadiation = 1;
f8b85aa9 172 fEventVertex.Set(3);
ad1df918 173//
1ed25e11 174// Set random number generator
097ec7c1 175 sRandom = fRandom;
2685bf00 176 fHijing = 0;
177
110410f9 178}
179
180AliGenHijing::AliGenHijing(const AliGenHijing & Hijing)
181{
182// copy constructor
183}
184
185
186AliGenHijing::~AliGenHijing()
187{
188// Destructor
21ce2e6f 189 if ( fDsigmaDb) delete fDsigmaDb;
190 if ( fDnDb) delete fDnDb;
110410f9 191}
192
193void AliGenHijing::Init()
194{
195// Initialisation
3b8bd63f 196 fFrame.Resize(8);
197 fTarget.Resize(8);
198 fProjectile.Resize(8);
199
110410f9 200 SetMC(new THijing(fEnergyCMS, fFrame, fProjectile, fTarget,
201 fAProjectile, fZProjectile, fATarget, fZTarget,
202 fMinImpactParam, fMaxImpactParam));
203
204 fHijing=(THijing*) fgMCEvGen;
332c8db0 205 fHijing->SetIHPR2(2, fRadiation);
110410f9 206 fHijing->SetIHPR2(3, fTrigger);
207 fHijing->SetIHPR2(4, fQuench);
208 fHijing->SetIHPR2(6, fShadowing);
209 fHijing->SetIHPR2(12, fDecaysOff);
210 fHijing->SetIHPR2(21, fKeep);
ed6361b0 211 fHijing->SetHIPR1(10, fPtMinJet);
ba244bac 212 fHijing->Initialize();
b78ff279 213
214
110410f9 215//
216 if (fEvaluate) EvaluateCrossSections();
ad1df918 217//
218//
219// Initialize random generator
110410f9 220}
221
222void AliGenHijing::Generate()
223{
224// Generate one event
225
21ce2e6f 226 Float_t polar[3] = {0,0,0};
227 Float_t origin[3] = {0,0,0};
228 Float_t origin0[3] = {0,0,0};
28adac24 229 Float_t p[3], random[6];
230 Float_t tof;
110410f9 231
28adac24 232 static TClonesArray *particles;
110410f9 233// converts from mm/c to s
21ce2e6f 234 const Float_t kconv = 0.001/2.999792458e8;
110410f9 235//
21ce2e6f 236 Int_t nt = 0;
237 Int_t jev = 0;
28adac24 238 Int_t j, kf, ks, imo;
21ce2e6f 239 kf = 0;
eb342d2d 240
21ce2e6f 241 if(!particles) particles = new TClonesArray("TParticle",10000);
110410f9 242
21ce2e6f 243 fTrials = 0;
244 for (j = 0;j < 3; j++) origin0[j] = fOrigin[j];
245 if(fVertexSmear == kPerEvent) {
f8b85aa9 246 Float_t dv[3];
247 dv[2] = 1.e10;
248 while(TMath::Abs(dv[2]) > fCutVertexZ*fOsigma[2]) {
249 Rndm(random,6);
250 for (j=0; j < 3; j++) {
251 dv[j] = fOsigma[j]*TMath::Cos(2*random[2*j]*TMath::Pi())*
252 TMath::Sqrt(-2*TMath::Log(random[2*j+1]));
253 }
254 }
255 for (j=0; j < 3; j++) origin0[j] += dv[j];
21ce2e6f 256 } else if (fVertexSmear == kPerTrack) {
28adac24 257// fHijing->SetMSTP(151,0);
21ce2e6f 258 for (j = 0; j < 3; j++) {
28adac24 259// fHijing->SetPARP(151+j, fOsigma[j]*10.);
21ce2e6f 260 }
28adac24 261 }
262 while(1)
21ce2e6f 263 {
264// Generate one event
b46f2676 265// --------------------------------------------------------------------------
266 fSpecn = 0;
267 fSpecp = 0;
268// --------------------------------------------------------------------------
28adac24 269 fHijing->GenerateEvent();
270 fTrials++;
271 fHijing->ImportParticles(particles,"All");
cc71f2d3 272 if (fLHC) Boost(particles);
273
28adac24 274 Int_t np = particles->GetEntriesFast();
275 printf("\n **************************************************%d\n",np);
21ce2e6f 276 Int_t nc = 0;
28adac24 277 if (np == 0 ) continue;
278 Int_t i;
279 Int_t * newPos = new Int_t[np];
280
21ce2e6f 281 for (i = 0; i < np; i++) *(newPos+i) = i;
f8b85aa9 282// Get event vertex
283//
284 TParticle * iparticle = (TParticle *) particles->At(0);
285 fEventVertex[0] = origin0[0];
286 fEventVertex[1] = origin0[1];
287 fEventVertex[2] = origin0[2];
288
e06552ba 289//
290// First write parent particles
291//
292
21ce2e6f 293 for (i = 0; i < np; i++) {
f8b85aa9 294 iparticle = (TParticle *) particles->At(i);
e06552ba 295// Is this a parent particle ?
f8b85aa9 296 if (Stable(iparticle)) continue;
e06552ba 297//
28adac24 298 Bool_t hasMother = (iparticle->GetFirstMother() >=0);
299 Bool_t selected = kTRUE;
300 Bool_t hasSelectedDaughters = kFALSE;
e06552ba 301
302
28adac24 303 kf = iparticle->GetPdgCode();
304 ks = iparticle->GetStatusCode();
305 if (kf == 92) continue;
608708ba 306
55d6adcf 307 if (!fSelectAll) selected = KinematicSelection(iparticle, 0)&&SelectFlavor(kf);
28adac24 308 hasSelectedDaughters = DaughtersSelection(iparticle, particles);
110410f9 309//
310// Put particle on the stack if it is either selected or it is the mother of at least one seleted particle
311//
28adac24 312 if (selected || hasSelectedDaughters) {
21ce2e6f 313 nc++;
314 p[0] = iparticle->Px();
315 p[1] = iparticle->Py();
316 p[2] = iparticle->Pz();
317 origin[0] = origin0[0]+iparticle->Vx()/10;
318 origin[1] = origin0[1]+iparticle->Vy()/10;
319 origin[2] = origin0[2]+iparticle->Vz()/10;
320 tof = kconv*iparticle->T();
321 imo = -1;
79bf94df 322 TParticle* mother = 0;
21ce2e6f 323 if (hasMother) {
324 imo = iparticle->GetFirstMother();
79bf94df 325 mother = (TParticle *) particles->At(imo);
21ce2e6f 326 imo = (mother->GetPdgCode() != 92) ? imo =* (newPos+imo) : -1;
79bf94df 327
21ce2e6f 328 }
e06552ba 329// Put particle on the stack ...
1df2195f 330// printf("\n set track mother: %d %d %d %d %d %d ",i,imo, kf, nt+1, selected, hasSelectedDaughters);
21ce2e6f 331
a99cf51f 332 SetTrack(0,imo,kf,p,origin,polar, tof,kPPrimary,nt);
e06552ba 333// ... and keep it there
a99cf51f 334 KeepTrack(nt);
e06552ba 335//
21ce2e6f 336 *(newPos+i)=nt;
28adac24 337 } // selected
338 } // particle loop parents
e06552ba 339//
340// Now write the final state particles
341//
342
28adac24 343 for (i = 0; i<np; i++) {
344 TParticle * iparticle = (TParticle *) particles->At(i);
e06552ba 345// Is this a final state particle ?
28adac24 346 if (!Stable(iparticle)) continue;
b46f2676 347
28adac24 348 Bool_t hasMother = (iparticle->GetFirstMother() >=0);
349 Bool_t selected = kTRUE;
350 kf = iparticle->GetPdgCode();
351 ks = iparticle->GetStatusCode();
b46f2676 352// --------------------------------------------------------------------------
353// Count spectator neutrons and protons
354 if(ks == 0 || ks == 1 || ks == 10 || ks == 11){
355 if(kf == kNeutron) fSpecn += 1;
356 if(kf == kProton) fSpecp += 1;
357 }
358// --------------------------------------------------------------------------
359//
28adac24 360 if (!fSelectAll) {
55d6adcf 361 selected = KinematicSelection(iparticle,0)&&SelectFlavor(kf);
21ce2e6f 362 if (!fSpectators && selected) selected = (ks != 0 && ks != 1 && ks != 10
363 && ks != 11);
28adac24 364 }
e06552ba 365//
366// Put particle on the stack if selected
367//
28adac24 368 if (selected) {
21ce2e6f 369 nc++;
370 p[0] = iparticle->Px();
371 p[1] = iparticle->Py();
372 p[2] = iparticle->Pz();
373 origin[0] = origin0[0]+iparticle->Vx()/10;
374 origin[1] = origin0[1]+iparticle->Vy()/10;
375 origin[2] = origin0[2]+iparticle->Vz()/10;
376 tof = kconv*iparticle->T();
377 imo = -1;
79bf94df 378 TParticle* mother = 0;
21ce2e6f 379 if (hasMother) {
380 imo = iparticle->GetFirstMother();
79bf94df 381 mother = (TParticle *) particles->At(imo);
21ce2e6f 382 imo = (mother->GetPdgCode() != 92) ? imo=*(newPos+imo) : -1;
383 }
e06552ba 384// Put particle on the stack
a99cf51f 385 SetTrack(fTrackIt,imo,kf,p,origin,polar,
79bf94df 386 tof,kPNoProcess,nt);
a99cf51f 387 KeepTrack(nt);
21ce2e6f 388 *(newPos+i)=nt;
28adac24 389 } // selected
390 } // particle loop final state
e06552ba 391
79bf94df 392 delete[] newPos;
28adac24 393
394 printf("\n I've put %i particles on the stack \n",nc);
395 if (nc > 0) {
21ce2e6f 396 jev += nc;
397 if (jev >= fNpart || fNpart == -1) {
398 fKineBias = Float_t(fNpart)/Float_t(fTrials);
399 printf("\n Trials: %i %i %i\n",fTrials, fNpart, jev);
400 break;
401 }
28adac24 402 }
21ce2e6f 403 } // event loop
404 MakeHeader();
405
a99cf51f 406 SetHighWaterMark(nt);
110410f9 407}
408
110410f9 409void AliGenHijing::KeepFullEvent()
410{
411 fKeep=1;
412}
413
414void AliGenHijing::EvaluateCrossSections()
415{
416// Glauber Calculation of geometrical x-section
417//
21ce2e6f 418 Float_t xTot = 0.; // barn
419 Float_t xTotHard = 0.; // barn
420 Float_t xPart = 0.; // barn
421 Float_t xPartHard = 0.; // barn
422 Float_t sigmaHard = 0.1; // mbarn
423 Float_t bMin = 0.;
424 Float_t bMax = fHijing->GetHIPR1(34)+fHijing->GetHIPR1(35);
425 const Float_t kdib = 0.2;
426 Int_t kMax = Int_t((bMax-bMin)/kdib)+1;
110410f9 427
428
429 printf("\n Projectile Radius (fm): %f \n",fHijing->GetHIPR1(34));
430 printf("\n Target Radius (fm): %f \n",fHijing->GetHIPR1(35));
431 Int_t i;
21ce2e6f 432 Float_t oldvalue= 0.;
433
434 Float_t* b = new Float_t[kMax];
435 Float_t* si1 = new Float_t[kMax];
436 Float_t* si2 = new Float_t[kMax];
110410f9 437
21ce2e6f 438 for (i = 0; i < kMax; i++)
110410f9 439 {
21ce2e6f 440 Float_t xb = bMin+i*kdib;
110410f9 441 Float_t ov;
442 ov=fHijing->Profile(xb);
21ce2e6f 443 Float_t gb = 2.*0.01*fHijing->GetHIPR1(40)*kdib*xb*(1.-TMath::Exp(-fHijing->GetHINT1(12)*ov));
444 Float_t gbh = 2.*0.01*fHijing->GetHIPR1(40)*kdib*xb*sigmaHard*ov;
110410f9 445 xTot+=gb;
21ce2e6f 446 xTotHard += gbh;
110410f9 447 if (xb > fMinImpactParam && xb < fMaxImpactParam)
448 {
21ce2e6f 449 xPart += gb;
450 xPartHard += gbh;
110410f9 451 }
452
c007646a 453 if(oldvalue) if ((xTot-oldvalue)/oldvalue<0.0001) break;
21ce2e6f 454 oldvalue = xTot;
110410f9 455 printf("\n Total cross section (barn): %d %f %f \n",i, xb, xTot);
456 printf("\n Hard cross section (barn): %d %f %f \n\n",i, xb, xTotHard);
21ce2e6f 457 if (i>0) {
458 si1[i] = gb/kdib;
459 si2[i] = gbh/gb;
460 b[i] = xb;
461 }
110410f9 462 }
21ce2e6f 463
110410f9 464 printf("\n Total cross section (barn): %f \n",xTot);
465 printf("\n Hard cross section (barn): %f \n \n",xTotHard);
466 printf("\n Partial cross section (barn): %f %f \n",xPart, xPart/xTot*100.);
467 printf("\n Partial hard cross section (barn): %f %f \n",xPartHard, xPartHard/xTotHard*100.);
21ce2e6f 468
469// Store result as a graph
470 b[0] = 0;
471 si1[0] = 0;
472 si2[0]=si2[1];
473
474 fDsigmaDb = new TGraph(i, b, si1);
475 fDnDb = new TGraph(i, b, si2);
110410f9 476}
477
478Bool_t AliGenHijing::DaughtersSelection(TParticle* iparticle, TClonesArray* particles)
479{
480//
481// Looks recursively if one of the daughters has been selected
482//
483// printf("\n Consider daughters %d:",iparticle->GetPdgCode());
21ce2e6f 484 Int_t imin = -1;
485 Int_t imax = -1;
110410f9 486 Int_t i;
21ce2e6f 487 Bool_t hasDaughters = (iparticle->GetFirstDaughter() >=0);
488 Bool_t selected = kFALSE;
110410f9 489 if (hasDaughters) {
21ce2e6f 490 imin = iparticle->GetFirstDaughter();
491 imax = iparticle->GetLastDaughter();
492 for (i = imin; i <= imax; i++){
493 TParticle * jparticle = (TParticle *) particles->At(i);
494 Int_t ip = jparticle->GetPdgCode();
55d6adcf 495 if (KinematicSelection(jparticle,0)&&SelectFlavor(ip)) {
608708ba 496 selected=kTRUE; break;
497 }
110410f9 498 if (DaughtersSelection(jparticle, particles)) {selected=kTRUE; break; }
499 }
500 } else {
501 return kFALSE;
502 }
110410f9 503 return selected;
504}
505
506
eb342d2d 507Bool_t AliGenHijing::SelectFlavor(Int_t pid)
508{
509// Select flavor of particle
510// 0: all
511// 4: charm and beauty
512// 5: beauty
513 if (fFlavor == 0) return kTRUE;
514
21ce2e6f 515 Int_t ifl = TMath::Abs(pid/100);
eb342d2d 516 if (ifl > 10) ifl/=10;
608708ba 517 return (fFlavor == ifl);
518}
eb342d2d 519
608708ba 520Bool_t AliGenHijing::Stable(TParticle* particle)
521{
675e9664 522// Return true for a stable particle
523//
79bf94df 524 if (particle->GetFirstDaughter() < 0 )
608708ba 525 {
526 return kTRUE;
527 } else {
528 return kFALSE;
529 }
eb342d2d 530}
110410f9 531
cc71f2d3 532
533void AliGenHijing::Boost(TClonesArray* particles)
534{
535//
536// Boost cms into LHC lab frame
537//
538 Double_t dy = - 0.5 * TMath::Log(Double_t(fZProjectile) * Double_t(fATarget) /
539 (Double_t(fZTarget) * Double_t(fAProjectile)));
540 Double_t beta = TMath::TanH(dy);
541 Double_t gamma = 1./TMath::Sqrt(1.-beta*beta);
542 Double_t gb = gamma * beta;
543
544 printf("\n Boosting particles to lab frame %f %f %f", dy, beta, gamma);
545
546 Int_t i;
547 Int_t np = particles->GetEntriesFast();
548 for (i = 0; i < np; i++)
549 {
550 TParticle* iparticle = (TParticle*) particles->At(i);
551
552 Double_t e = iparticle->Energy();
553 Double_t px = iparticle->Px();
554 Double_t py = iparticle->Py();
555 Double_t pz = iparticle->Pz();
556
557 Double_t eb = gamma * e - gb * pz;
558 Double_t pzb = -gb * e + gamma * pz;
559
560 iparticle->SetMomentum(px, py, pzb, eb);
561 }
562}
563
564
3b8bd63f 565void AliGenHijing::MakeHeader()
566{
567// Builds the event header, to be called after each event
21ce2e6f 568 AliGenEventHeader* header = new AliGenHijingEventHeader("Hijing");
332c8db0 569 ((AliGenHijingEventHeader*) header)->SetNProduced(fHijing->GetNATT());
570 ((AliGenHijingEventHeader*) header)->SetImpactParameter(fHijing->GetHINT1(19));
571 ((AliGenHijingEventHeader*) header)->SetTotalEnergy(fHijing->GetEATT());
572 ((AliGenHijingEventHeader*) header)->SetHardScatters(fHijing->GetJATT());
573 ((AliGenHijingEventHeader*) header)->SetParticipants(fHijing->GetNP(), fHijing->GetNT());
574 ((AliGenHijingEventHeader*) header)->SetCollisions(fHijing->GetN0(),
575 fHijing->GetN01(),
576 fHijing->GetN10(),
577 fHijing->GetN11());
578 ((AliGenHijingEventHeader*) header)->SetSpectators(fSpecn, fSpecp);
579
f8b85aa9 580// 4-momentum vectors of the triggered jets.
581//
582// Before final state gluon radiation.
332c8db0 583 TLorentzVector* jet1 = new TLorentzVector(fHijing->GetHINT1(21),
584 fHijing->GetHINT1(22),
585 fHijing->GetHINT1(23),
586 fHijing->GetHINT1(24));
587
588 TLorentzVector* jet2 = new TLorentzVector(fHijing->GetHINT1(31),
589 fHijing->GetHINT1(32),
590 fHijing->GetHINT1(33),
591 fHijing->GetHINT1(34));
f8b85aa9 592// After final state gluon radiation.
593 TLorentzVector* jet3 = new TLorentzVector(fHijing->GetHINT1(26),
594 fHijing->GetHINT1(27),
595 fHijing->GetHINT1(28),
596 fHijing->GetHINT1(29));
597
598 TLorentzVector* jet4 = new TLorentzVector(fHijing->GetHINT1(36),
599 fHijing->GetHINT1(37),
600 fHijing->GetHINT1(38),
601 fHijing->GetHINT1(39));
602 ((AliGenHijingEventHeader*) header)->SetJets(jet1, jet2, jet3, jet4);
603// Event Vertex
604 header->SetPrimaryVertex(fEventVertex);
332c8db0 605 gAlice->SetGenEventHeader(header);
3b8bd63f 606}
607
cc71f2d3 608
110410f9 609AliGenHijing& AliGenHijing::operator=(const AliGenHijing& rhs)
610{
611// Assignment operator
612 return *this;
613}
608708ba 614
65fb704d 615#ifndef WIN32
616# define rluget_hijing rluget_hijing_
617# define rluset_hijing rluset_hijing_
618# define rlu_hijing rlu_hijing_
619# define type_of_call
620#else
621# define rluget_hijing RLUGET_HIJING
622# define rluset_hijing RLUSET_HIJING
623# define rlu_hijing RLU_HIJING
624# define type_of_call _stdcall
625#endif
626
627
628extern "C" {
629 void type_of_call rluget_hijing(Int_t & /*lfn*/, Int_t & /*move*/)
630 {printf("Dummy version of rluget_hijing reached\n");}
631
632 void type_of_call rluset_hijing(Int_t & /*lfn*/, Int_t & /*move*/)
633 {printf("Dummy version of rluset_hijing reached\n");}
634
635 Double_t type_of_call rlu_hijing(Int_t & /*idum*/)
7498b3ad 636 {
637 Float_t r;
638 do r=sRandom->Rndm(); while(0 >= r || r >= 1);
639 return r;
640 }
65fb704d 641}