]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TFluka/TFlukaMCGeometry.cxx
15-oct-2007 NvE Typo corrected in docs of AliAstrolab.cxx and memberfunctions GetMedian
[u/mrichter/AliRoot.git] / TFluka / TFlukaMCGeometry.cxx
CommitLineData
e2e989f9 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$
c1a0a2f0 17
18// Class TFlukaMCGeometry
19// --------------------
20// Implementation of the TVirtualMCGeometry interface
21// for defining and using TGeo geometry with FLUKA.
22// This allows the FLUKA MonteCarlo to run with the TGeo
23// geometrical modeller
8495a208 24// Author: Andrei Gheata 10/07/2003
25
c1a0a2f0 26#include "Riostream.h"
b16b69d3 27#include "TList.h"
c1a0a2f0 28#include "TCallf77.h"
89125dc7 29#include "TFluka.h"
e44ab76e 30#include "TSystem.h"
8495a208 31#include "TFlukaMCGeometry.h"
6d184c54 32#include "TFlukaConfigOption.h"
8495a208 33#include "TGeoManager.h"
34#include "TGeoVolume.h"
c1a0a2f0 35#include "TObjString.h"
81f1d030 36#include "Fsourcm.h"
aae6bcdd 37#include "Ftrackr.h"
4aba9d66 38#include "Fstepsz.h" //(STEPSZ) fluka common
3860051a 39
8495a208 40#ifndef WIN32
41# define idnrwr idnrwr_
42# define g1wr g1wr_
43# define g1rtwr g1rtwr_
44# define conhwr conhwr_
45# define inihwr inihwr_
46# define jomiwr jomiwr_
47# define lkdbwr lkdbwr_
48# define lkfxwr lkfxwr_
49# define lkmgwr lkmgwr_
50# define lkwr lkwr_
51# define magfld magfld_
52# define nrmlwr nrmlwr_
53# define rgrpwr rgrpwr_
54# define isvhwr isvhwr_
55
56#else
57
58# define idnrwr IDNRWR
59# define g1wr G1WR
60# define g1rtwr G1RTWR
61# define conhwr CONHWR
62# define inihwr INIHWR
63# define jomiwr JOMIWR
64# define lkdbwr LKDBWR
65# define lkfxwr LKFXWR
66# define lkmgwr LKMGWR
67# define lkwr LKWR
68# define magfld MAGFLD
69# define nrmlwr NRMLWR
70# define rgrpwr RGRPWR
71# define isvhwr ISVHWR
72
73#endif
74
75//____________________________________________________________________________
76extern "C"
77{
78 //
79 // Prototypes for FLUKA navigation methods
80 //
81 Int_t type_of_call idnrwr(const Int_t & /*nreg*/, const Int_t & /*mlat*/);
82 void type_of_call g1wr(Double_t & /*pSx*/, Double_t & /*pSy*/, Double_t & /*pSz*/,
83 Double_t * /*pV*/, Int_t & /*oldReg*/ , const Int_t & /*oldLttc*/, Double_t & /*propStep*/,
84 Int_t & /*nascFlag*/, Double_t & /*retStep*/, Int_t & /*newReg*/,
4aba9d66 85 Double_t & /*saf*/, Int_t & /*newLttc*/, Int_t & /*LttcFlag*/,
8495a208 86 Double_t *s /*Lt*/, Int_t * /*jrLt*/);
87
88 void type_of_call g1rtwr();
4aba9d66 89 void type_of_call conhwr(Int_t & /*intHist*/, Int_t & /*incrCount*/);
8495a208 90 void type_of_call inihwr(Int_t & /*intHist*/);
91 void type_of_call jomiwr(const Int_t & /*nge*/, const Int_t & /*lin*/, const Int_t & /*lou*/,
92 Int_t & /*flukaReg*/);
93 void type_of_call lkdbwr(Double_t & /*pSx*/, Double_t & /*pSy*/, Double_t & /*pSz*/,
94 Double_t * /*pV*/, const Int_t & /*oldReg*/, const Int_t & /*oldLttc*/,
aae6bcdd 95 Int_t & /*flagErr*/, Int_t & /*newReg*/, Int_t & /*newLttc*/);
8495a208 96 void type_of_call lkfxwr(Double_t & /*pSx*/, Double_t & /*pSy*/, Double_t & /*pSz*/,
97 Double_t * /*pV*/, const Int_t & /*oldReg*/, const Int_t & /*oldLttc*/,
aae6bcdd 98 Int_t & /*flagErr*/, Int_t & /*newReg*/, Int_t & /*newLttc*/);
8495a208 99 void type_of_call lkmgwr(Double_t & /*pSx*/, Double_t & /*pSy*/, Double_t & /*pSz*/,
100 Double_t * /*pV*/, const Int_t & /*oldReg*/, const Int_t & /*oldLttc*/,
4aba9d66 101 Int_t & /*flagErr*/, Int_t & /*newReg*/, Int_t & /*newLttc*/);
8495a208 102 void type_of_call lkwr(Double_t & /*pSx*/, Double_t & /*pSy*/, Double_t & /*pSz*/,
103 Double_t * /*pV*/, const Int_t & /*oldReg*/, const Int_t & /*oldLttc*/,
4aba9d66 104 Int_t & /*flagErr*/, Int_t & /*newReg*/, Int_t & /*newLttc*/);
efde9b4d 105// void type_of_call magfld(const Double_t & /*pX*/, const Double_t & /*pY*/, const Double_t & /*pZ*/,
106// Double_t & /*cosBx*/, Double_t & /*cosBy*/, Double_t & /*cosBz*/,
4aba9d66 107// Double_t & /*Bmag*/, Int_t & /*reg*/, Int_t & /*idiscflag*/);
8495a208 108 void type_of_call nrmlwr(Double_t & /*pSx*/, Double_t & /*pSy*/, Double_t & /*pSz*/,
109 Double_t & /*pVx*/, Double_t & /*pVy*/, Double_t & /*pVz*/,
4aba9d66 110 Double_t * /*norml*/, const Int_t & /*oldReg*/,
111 const Int_t & /*newReg*/, Int_t & /*flagErr*/);
8495a208 112 void type_of_call rgrpwr(const Int_t & /*flukaReg*/, const Int_t & /*ptrLttc*/, Int_t & /*g4Reg*/,
113 Int_t * /*indMother*/, Int_t * /*repMother*/, Int_t & /*depthFluka*/);
114 Int_t type_of_call isvhwr(const Int_t & /*fCheck*/, const Int_t & /*intHist*/);
8be76537 115}
8495a208 116
117// TFluka global pointer
89125dc7 118TFluka *gFluka = 0;
119TFlukaMCGeometry *gMCGeom = 0;
6f5667d1 120Int_t gNstep = 0;
8495a208 121
122ClassImp(TFlukaMCGeometry)
123
81f1d030 124TFlukaMCGeometry* TFlukaMCGeometry::fgInstance= NULL;
8495a208 125
126//_____________________________________________________________________________
127TFlukaMCGeometry::TFlukaMCGeometry(const char *name, const char *title)
4aba9d66 128 :TNamed(name, title),
129 fDebug(kFALSE),
130 fLastMaterial(0),
131 fDummyRegion(0),
132 fCurrentRegion(0),
133 fCurrentLattice(0),
134 fNextRegion(0),
135 fNextLattice(0),
136 fRegionList(0),
137 fIndmat(0),
138 fMatList(new TObjArray(256)),
139 fMatNames(new TObjArray(256))
8495a208 140{
141 //
142 // Standard constructor
143 //
89125dc7 144 gFluka = (TFluka*)gMC;
145 gMCGeom = this;
6f5667d1 146 gNstep = 0;
8495a208 147}
148
149//_____________________________________________________________________________
150TFlukaMCGeometry::TFlukaMCGeometry()
4aba9d66 151 :TNamed(),
152 fDebug(kFALSE),
153 fLastMaterial(0),
154 fDummyRegion(0),
155 fCurrentRegion(0),
156 fCurrentLattice(0),
157 fNextRegion(0),
158 fNextLattice(0),
159 fRegionList(0),
160 fIndmat(0),
161 fMatList(0),
162 fMatNames(0)
163
164{
8495a208 165 //
166 // Default constructor
167 //
89125dc7 168 gFluka = (TFluka*)gMC;
169 gMCGeom = this;
6f5667d1 170 gNstep = 0;
8495a208 171}
172
173//_____________________________________________________________________________
174TFlukaMCGeometry::~TFlukaMCGeometry()
175{
176 //
177 // Destructor
178 //
179 fgInstance=0;
b1536e91 180 if (fRegionList) delete [] fRegionList;
89125dc7 181 if (fMatList) delete fMatList;
182 if (fMatNames) {fMatNames->Delete(); delete fMatNames;}
8495a208 183 if (gGeoManager) delete gGeoManager;
184}
185
186//
187// private methods
188//
8495a208 189
190//_____________________________________________________________________________
191Double_t* TFlukaMCGeometry::CreateDoubleArray(Float_t* array, Int_t size) const
192{
193// Converts Float_t* array to Double_t*,
194// !! The new array has to be deleted by user.
195// ---
196
197 Double_t* doubleArray;
198 if (size>0) {
199 doubleArray = new Double_t[size];
200 for (Int_t i=0; i<size; i++) doubleArray[i] = array[i];
201 }
202 else {
203 //doubleArray = 0;
204 doubleArray = new Double_t[1];
205 }
206 return doubleArray;
207}
208//
209// public methods
8495a208 210
8495a208 211
8495a208 212//_____________________________________________________________________________
213Int_t TFlukaMCGeometry::GetMedium() const
214{
215// Get current medium number
216 Int_t imed = 0;
217 TGeoNode *node = gGeoManager->GetCurrentNode();
218 if (!node) imed = gGeoManager->GetTopNode()->GetVolume()->GetMedium()->GetId();
219 else imed = node->GetVolume()->GetMedium()->GetId();
2bc4c610 220 if (fDebug) printf("GetMedium=%i\n", imed);
8495a208 221 return imed;
222}
223
0bc73b6c 224//_____________________________________________________________________________
225Int_t TFlukaMCGeometry::GetFlukaMaterial(Int_t imed) const
226{
227// Returns FLUKA material index for medium IMED
81f1d030 228 TGeoMedium *med = (TGeoMedium*)gGeoManager->GetListOfMedia()->At(imed-1);
0bc73b6c 229 if (!med) {
230 Error("GetFlukaMaterial", "MEDIUM %i nor found", imed);
231 return -1;
232 }
81f1d030 233 TGeoMaterial* mat = med->GetMaterial();
234 if (!mat->IsUsed()) return -1;
0bc73b6c 235 Int_t imatfl = med->GetMaterial()->GetIndex();
236 return imatfl;
237}
238
b1536e91 239//_____________________________________________________________________________
240Int_t *TFlukaMCGeometry::GetRegionList(Int_t imed, Int_t &nreg)
241{
242// Get an ordered list of regions matching a given medium number
243 nreg = 0;
244 if (!fRegionList) fRegionList = new Int_t[NofVolumes()+1];
245 TIter next(gGeoManager->GetListOfUVolumes());
246 TGeoVolume *vol;
247 Int_t imedium, ireg;
248 while ((vol = (TGeoVolume*)next())) {
e5d91a32 249 TGeoMedium* med;
250 if ((med = vol->GetMedium()) == 0) continue;
251 imedium = med->GetId();
252 if (imedium == imed) {
4aba9d66 253 ireg = vol->GetNumber();
254 fRegionList[nreg++] = ireg;
e5d91a32 255 }
b1536e91 256 }
257 return fRegionList;
4aba9d66 258}
b1536e91 259
260//_____________________________________________________________________________
261Int_t *TFlukaMCGeometry::GetMaterialList(Int_t imat, Int_t &nreg)
262{
263// Get an ordered list of regions matching a given medium number
264 nreg = 0;
265 if (!fRegionList) fRegionList = new Int_t[NofVolumes()+1];
266 TIter next(gGeoManager->GetListOfUVolumes());
267 TGeoVolume *vol;
268 Int_t imaterial, ireg;
269 while ((vol = (TGeoVolume*)next())) {
e5d91a32 270 TGeoMedium* med;
271 if ((med = vol->GetMedium()) == 0) continue;
272 imaterial = med->GetMaterial()->GetIndex();
273 if (imaterial == imat) {
4aba9d66 274 ireg = vol->GetNumber();
275 fRegionList[nreg++] = ireg;
e5d91a32 276 }
b1536e91 277 }
278 return fRegionList;
4aba9d66 279}
8495a208 280
8495a208 281//_____________________________________________________________________________
282Int_t TFlukaMCGeometry::NofVolumes() const
283{
284 //
285 // Return total number of volumes in the geometry
286 //
287
288 return gGeoManager->GetListOfUVolumes()->GetEntriesFast()-1;
289}
8495a208 290
291//_____________________________________________________________________________
89125dc7 292TGeoMaterial * TFlukaMCGeometry::GetMakeWrongMaterial(Double_t z)
293{
294// Try to replace a wrongly-defined material
295 static Double_t kz[23] = {7.3, 17.8184, 7.2167, 10.856, 8.875, 8.9, 7.177,
296 25.72, 6.2363, 7.1315, 47.7056, 10.6467, 7.8598, 2.10853, 10.6001, 9.1193,
297 15.3383, 4.55, 9.6502, 6.4561, 21.7963, 29.8246, 15.4021};
298
299 Int_t ind;
300 Double_t dz;
301 for (ind=0; ind<23; ind++) {
302 dz = TMath::Abs(z-kz[ind]);
303 if (dz<1E-4) break;
304 }
305 if (ind>22) {
306 printf("Cannot patch material with Z=%g\n", z);
307 return 0;
308 }
309 TGeoMixture *mix = 0;
310 TGeoElement *element;
81f1d030 311 TGeoElementTable *table = gGeoManager->GetElementTable();
89125dc7 312 switch (ind) {
313 case 0: // AIR
81f1d030 314 mix = new TGeoMixture("TPC_AIR", 4, 0.001205);
89125dc7 315 element = table->GetElement(6); // C
316 mix->DefineElement(0, element, 0.000124);
317 element = table->GetElement(7); // N
318 mix->DefineElement(1, element, 0.755267);
319 element = table->GetElement(8); // O
320 mix->DefineElement(2, element, 0.231781);
321 element = table->GetElement(18); // AR
322 mix->DefineElement(3, element, 0.012827);
323 break;
324 case 1: //SDD SI CHIP
81f1d030 325 mix = new TGeoMixture("ITS_SDD_SI", 6, 2.4485);
89125dc7 326 element = table->GetElement(1);
327 mix->DefineElement(0, element, 0.004367771);
328 element = table->GetElement(6);
329 mix->DefineElement(1, element, 0.039730642);
330 element = table->GetElement(7);
331 mix->DefineElement(2, element, 0.001396798);
332 element = table->GetElement(8);
333 mix->DefineElement(3, element, 0.01169634);
334 element = table->GetElement(14);
335 mix->DefineElement(4, element, 0.844665);
336 element = table->GetElement(47);
337 mix->DefineElement(5, element, 0.09814344903);
338 break;
339 case 2: // WATER
81f1d030 340 mix = new TGeoMixture("ITS_WATER", 2, 1.0);
89125dc7 341 element = table->GetElement(1);
342 mix->DefineElement(0, element, 0.111898344);
343 element = table->GetElement(8);
344 mix->DefineElement(1, element, 0.888101656);
345 break;
346 case 3: // CERAMICS
81f1d030 347 mix = new TGeoMixture("ITS_CERAMICS", 5, 3.6);
89125dc7 348 element = table->GetElement(8);
349 mix->DefineElement(0, element, 0.59956);
350 element = table->GetElement(13);
351 mix->DefineElement(1, element, 0.3776);
352 element = table->GetElement(14);
353 mix->DefineElement(2, element, 0.00933);
354 element = table->GetElement(24);
355 mix->DefineElement(3, element, 0.002);
356 element = table->GetElement(25);
357 mix->DefineElement(4, element, 0.0115);
358 break;
359 case 4: // EPOXY
81f1d030 360 mix = new TGeoMixture("MUON_G10FR4", 4, 1.8);
89125dc7 361 element = table->GetElement(1);
362 mix->DefineElement(0, element, 0.19);
363 element = table->GetElement(6);
364 mix->DefineElement(1, element, 0.18);
365 element = table->GetElement(8);
366 mix->DefineElement(2, element, 0.35);
367 element = table->GetElement(14);
368 mix->DefineElement(3, element, 0.28);
369 break;
370 case 5: // EPOXY
371 mix = new TGeoMixture("G10FR4", 4, 1.8);
372 element = table->GetElement(1);
373 mix->DefineElement(0, element, 0.19);
374 element = table->GetElement(6);
375 mix->DefineElement(1, element, 0.18);
376 element = table->GetElement(8);
377 mix->DefineElement(2, element, 0.35);
378 element = table->GetElement(14);
379 mix->DefineElement(3, element, 0.28);
380 break;
381 case 6: // KAPTON
81f1d030 382 mix = new TGeoMixture("ITS_KAPTON", 4, 1.3);
89125dc7 383 element = table->GetElement(1);
384 mix->DefineElement(0, element, 0.026363415);
385 element = table->GetElement(6);
386 mix->DefineElement(1, element, 0.6911272);
387 element = table->GetElement(7);
388 mix->DefineElement(2, element, 0.073271325);
389 element = table->GetElement(8);
390 mix->DefineElement(3, element, 0.209238060);
391 break;
392 case 7: // INOX
81f1d030 393 mix = new TGeoMixture("ITS_INOX", 9, 7.9);
89125dc7 394 element = table->GetElement(6);
395 mix->DefineElement(0, element, 0.0003);
396 element = table->GetElement(14);
397 mix->DefineElement(1, element, 0.01);
398 element = table->GetElement(15);
399 mix->DefineElement(2, element, 0.00045);
400 element = table->GetElement(16);
401 mix->DefineElement(3, element, 0.0003);
402 element = table->GetElement(24);
403 mix->DefineElement(4, element, 0.17);
404 element = table->GetElement(25);
405 mix->DefineElement(5, element, 0.02);
406 element = table->GetElement(26);
407 mix->DefineElement(6, element, 0.654);
408 element = table->GetElement(28);
409 mix->DefineElement(7, element, 0.12);
410 element = table->GetElement(42);
411 mix->DefineElement(8, element, 0.025);
412 break;
413 case 8: // ROHACELL
414 mix = new TGeoMixture("ROHACELL", 4, 0.05);
415 element = table->GetElement(1);
416 mix->DefineElement(0, element, 0.07836617);
417 element = table->GetElement(6);
418 mix->DefineElement(1, element, 0.64648941);
419 element = table->GetElement(7);
420 mix->DefineElement(2, element, 0.08376983);
421 element = table->GetElement(8);
422 mix->DefineElement(3, element, 0.19137459);
423 break;
424 case 9: // SDD-C-AL
81f1d030 425 mix = new TGeoMixture("ITS_SDD-C-AL", 5, 1.9837);
89125dc7 426 element = table->GetElement(1);
427 mix->DefineElement(0, element, 0.022632);
428 element = table->GetElement(6);
429 mix->DefineElement(1, element, 0.8176579);
430 element = table->GetElement(7);
431 mix->DefineElement(2, element, 0.0093488);
432 element = table->GetElement(8);
433 mix->DefineElement(3, element, 0.0503618);
434 element = table->GetElement(13);
435 mix->DefineElement(4, element, 0.1);
436 break;
437 case 10: // X7R-CAP
81f1d030 438 mix = new TGeoMixture("ITS_X7R-CAP", 7, 6.72);
89125dc7 439 element = table->GetElement(8);
440 mix->DefineElement(0, element, 0.085975822);
441 element = table->GetElement(22);
442 mix->DefineElement(1, element, 0.084755042);
443 element = table->GetElement(28);
444 mix->DefineElement(2, element, 0.038244751);
445 element = table->GetElement(29);
446 mix->DefineElement(3, element, 0.009471271);
447 element = table->GetElement(50);
448 mix->DefineElement(4, element, 0.321736471);
449 element = table->GetElement(56);
450 mix->DefineElement(5, element, 0.251639432);
451 element = table->GetElement(82);
452 mix->DefineElement(6, element, 0.2081768);
453 break;
454 case 11: // SDD ruby sph. Al2O3
81f1d030 455 mix = new TGeoMixture("ITS_AL2O3", 2, 3.97);
89125dc7 456 element = table->GetElement(8);
457 mix->DefineElement(0, element, 0.5293);
458 element = table->GetElement(13);
459 mix->DefineElement(1, element, 0.4707);
460 break;
461 case 12: // SDD HV microcable
81f1d030 462 mix = new TGeoMixture("ITS_HV-CABLE", 5, 1.6087);
89125dc7 463 element = table->GetElement(1);
464 mix->DefineElement(0, element, 0.01983871336);
465 element = table->GetElement(6);
466 mix->DefineElement(1, element, 0.520088819984);
467 element = table->GetElement(7);
468 mix->DefineElement(2, element, 0.0551367996);
469 element = table->GetElement(8);
470 mix->DefineElement(3, element, 0.157399667056);
471 element = table->GetElement(13);
472 mix->DefineElement(4, element, 0.247536);
473 break;
474 case 13: //SDD LV+signal cable
81f1d030 475 mix = new TGeoMixture("ITS_LV-CABLE", 5, 2.1035);
89125dc7 476 element = table->GetElement(1);
477 mix->DefineElement(0, element, 0.0082859922);
478 element = table->GetElement(6);
479 mix->DefineElement(1, element, 0.21722436468);
480 element = table->GetElement(7);
481 mix->DefineElement(2, element, 0.023028867);
482 element = table->GetElement(8);
483 mix->DefineElement(3, element, 0.06574077612);
484 element = table->GetElement(13);
485 mix->DefineElement(4, element, 0.68572);
486 break;
487 case 14: //SDD hybrid microcab
81f1d030 488 mix = new TGeoMixture("ITS_HYB-CAB", 5, 2.0502);
89125dc7 489 element = table->GetElement(1);
490 mix->DefineElement(0, element, 0.00926228815);
491 element = table->GetElement(6);
492 mix->DefineElement(1, element, 0.24281879711);
493 element = table->GetElement(7);
494 mix->DefineElement(2, element, 0.02574224025);
495 element = table->GetElement(8);
496 mix->DefineElement(3, element, 0.07348667449);
497 element = table->GetElement(13);
498 mix->DefineElement(4, element, 0.64869);
499 break;
500 case 15: //SDD anode microcab
81f1d030 501 mix = new TGeoMixture("ITS_ANOD-CAB", 5, 1.7854);
89125dc7 502 element = table->GetElement(1);
503 mix->DefineElement(0, element, 0.0128595919215);
504 element = table->GetElement(6);
505 mix->DefineElement(1, element, 0.392653705471);
506 element = table->GetElement(7);
507 mix->DefineElement(2, element, 0.041626868025);
508 element = table->GetElement(8);
509 mix->DefineElement(3, element, 0.118832707289);
510 element = table->GetElement(13);
511 mix->DefineElement(4, element, 0.431909);
512 break;
513 case 16: // inox/alum
81f1d030 514 mix = new TGeoMixture("ITS_INOX-AL", 5, 3.0705);
89125dc7 515 element = table->GetElement(13);
516 mix->DefineElement(0, element, 0.816164);
517 element = table->GetElement(14);
518 mix->DefineElement(1, element, 0.000919182);
519 element = table->GetElement(24);
520 mix->DefineElement(2, element, 0.0330906);
521 element = table->GetElement(26);
522 mix->DefineElement(3, element, 0.131443);
523 element = table->GetElement(28);
524 mix->DefineElement(4, element, 0.0183836);
525 case 17: // MYLAR
81f1d030 526 mix = new TGeoMixture("TPC_MYLAR", 3, 1.39);
89125dc7 527 element = table->GetElement(1);
528 mix->DefineElement(0, element, 0.0416667);
529 element = table->GetElement(6);
530 mix->DefineElement(1, element, 0.625);
531 element = table->GetElement(8);
532 mix->DefineElement(2, element, 0.333333);
533 break;
534 case 18: // SPDBUS(AL+KPT+EPOX) - unknown composition
81f1d030 535 mix = new TGeoMixture("ITS_SPDBUS", 1, 1.906);
89125dc7 536 element = table->GetElement(9);
537 mix->DefineElement(0, element, 1.);
95161cd7 538 z = element->Z();
89125dc7 539 break;
540 case 19: // SDD/SSD rings - unknown composition
81f1d030 541 mix = new TGeoMixture("ITS_SDDRINGS", 1, 1.8097);
89125dc7 542 element = table->GetElement(6);
543 mix->DefineElement(0, element, 1.);
95161cd7 544 z = element->Z();
89125dc7 545 break;
546 case 20: // SPD end ladder - unknown composition
81f1d030 547 mix = new TGeoMixture("ITS_SPDEL", 1, 3.6374);
89125dc7 548 element = table->GetElement(22);
549 mix->DefineElement(0, element, 1.);
95161cd7 550 z = element->Z();
89125dc7 551 break;
552 case 21: // SDD end ladder - unknown composition
81f1d030 553 mix = new TGeoMixture("ITS_SDDEL", 1, 0.3824);
89125dc7 554 element = table->GetElement(30);
555 mix->DefineElement(0, element, 1.);
95161cd7 556 z = element->Z();
89125dc7 557 break;
558 case 22: // SSD end ladder - unknown composition
81f1d030 559 mix = new TGeoMixture("ITS_SSDEL", 1, 0.68);
89125dc7 560 element = table->GetElement(16);
561 mix->DefineElement(0, element, 1.);
95161cd7 562 z = element->Z();
89125dc7 563 break;
564 }
565 mix->SetZ(z);
566 printf("Patched with mixture %s\n", mix->GetName());
567 return mix;
8495a208 568}
569
8495a208 570//_____________________________________________________________________________
efde9b4d 571void TFlukaMCGeometry::CreateFlukaMatFile(const char *fname)
8495a208 572{
573 // ==== from FLUGG ====
574 // NAMES OF ELEMENTS AND COMPOUNDS: the names must be written in upper case,
575 // according to the fluka standard. In addition,. they must be equal to the
576 // names of the fluka materials - see fluka manual - in order that the
577 // program load the right cross sections, and equal to the names included in
578 // the .pemf. Otherwise the user must define the LOW-MAT CARDS, and make his
579 // own .pemf, in order to get the right cross sections loaded in memory.
9968e86c 580 // Materials defined by FLUKA
8495a208 581 TString sname;
582 gGeoManager->Export("flgeom.root");
583 if (fname) sname = fname;
584 else sname = "flukaMat.inp";
585 ofstream out;
586 out.open(sname.Data(), ios::out);
587 if (!out.good()) {
588 Fatal("CreateFlukaMatFile", "could not open file %s for writing", sname.Data());
589 return;
590 }
591 PrintHeader(out, "MATERIALS AND COMPOUNDS");
592 PrintHeader(out, "MATERIALS");
89125dc7 593 Int_t i,j,idmat;
594 Int_t counttothree, nelem;
595 Double_t a,z,rho, w;
81f1d030 596 TGeoElementTable *table = gGeoManager->GetElementTable();
89125dc7 597 TGeoElement *element;
598 element = table->GetElement(13);
599 element->SetTitle("ALUMINUM"); // this is how FLUKA likes it ...
600 element = table->GetElement(15);
601 element->SetTitle("PHOSPHO"); // same story ...
89125dc7 602 Int_t nelements = table->GetNelements();
8495a208 603 TList *matlist = gGeoManager->GetListOfMaterials();
604 TIter next(matlist);
605 Int_t nmater = matlist->GetSize();
9968e86c 606 Int_t nfmater = 0;
607 Int_t newind = 26; // here non predefined materials start
608
89125dc7 609 TGeoMaterial *mat;
8495a208 610 TGeoMixture *mix = 0;
611 TString matname;
89125dc7 612 TObjString *objstr;
613 // Create all needed elements
614 for (Int_t i=1; i<nelements; i++) {
615 element = table->GetElement(i);
616 // skip elements which are not defined
617 if (!element->IsUsed() && !element->IsDefined()) continue;
618 matname = element->GetTitle();
619 ToFlukaString(matname);
620 rho = 0.999;
3860051a 621
89125dc7 622 mat = new TGeoMaterial(matname, element->A(), element->Z(), rho);
9968e86c 623 // Check if the element has been predefined by FLUKA
624 Int_t pmid = GetPredefinedMaterialId(Int_t(element->Z()));
625 if (pmid > 0) {
626 mat->SetIndex(pmid);
627 } else {
628 mat->SetIndex(newind++);
629 }
630
89125dc7 631 mat->SetUsed(kTRUE);
632 fMatList->Add(mat);
633 objstr = new TObjString(matname.Data());
634 fMatNames->Add(objstr);
635 nfmater++;
636 }
6d184c54 637
638 fIndmat = nfmater;
89125dc7 639 // Adjust material names and add them to FLUKA list
8495a208 640 for (i=0; i<nmater; i++) {
641 mat = (TGeoMaterial*)matlist->At(i);
81f1d030 642 if (!mat->IsUsed()) continue;
89125dc7 643 z = mat->GetZ();
644 a = mat->GetA();
645 rho = mat->GetDensity();
646 if (mat->GetZ()<0.001) {
efde9b4d 647 mat->SetIndex(2); // vacuum, built-in inside FLUKA
648 continue;
89125dc7 649 }
650 matname = mat->GetName();
651 FlukaMatName(matname);
81f1d030 652
9968e86c 653 mat->SetIndex(newind++);
89125dc7 654 objstr = new TObjString(matname.Data());
655 fMatList->Add(mat);
656 fMatNames->Add(objstr);
657 nfmater++;
658 }
659
660 // Dump all elements with MATERIAL cards
8495a208 661 for (i=0; i<nfmater; i++) {
89125dc7 662 mat = (TGeoMaterial*)fMatList->At(i);
663// mat->SetUsed(kFALSE);
664 mix = 0;
8495a208 665 out << setw(10) << "MATERIAL ";
666 out.setf(static_cast<std::ios::fmtflags>(0),std::ios::floatfield);
89125dc7 667 objstr = (TObjString*)fMatNames->At(i);
b0853588 668 matname = objstr->GetString();
89125dc7 669 z = mat->GetZ();
670 a = mat->GetA();
671 rho = mat->GetDensity();
8495a208 672 if (mat->IsMixture()) {
673 out << setw(10) << " ";
674 out << setw(10) << " ";
675 mix = (TGeoMixture*)mat;
676 } else {
89125dc7 677 out << setw(10) << setiosflags(ios::fixed) << setprecision(1) << z;
678 out << setw(10) << setprecision(3) << a;
8495a208 679 }
680 out.setf(static_cast<std::ios::fmtflags>(0),std::ios::floatfield);
89125dc7 681 out << setw(10) << setiosflags(ios::scientific) << setprecision(3) << rho;
8495a208 682 out.setf(static_cast<std::ios::fmtflags>(0),std::ios::floatfield);
89125dc7 683 out << setw(10) << setiosflags(ios::fixed) << setprecision(1) << Double_t(mat->GetIndex());
8495a208 684 out << setw(10) << " ";
efde9b4d 685 out << setw(10) << " ";
686 out << setw(8) << matname.Data() << endl;
89125dc7 687 if (!mix) {
688 // add LOW-MAT card for NEON to associate with ARGON neutron xsec
95161cd7 689 if (z==10) {
89125dc7 690 out << setw(10) << "LOW-MAT ";
691 out.setf(static_cast<std::ios::fmtflags>(0),std::ios::floatfield);
692 out << setw(10) << setiosflags(ios::fixed) << setprecision(1) << Double_t(mat->GetIndex());
693 out << setw(10) << setiosflags(ios::fixed) << setprecision(1) << 18.;
694 out << setw(10) << setiosflags(ios::fixed) << setprecision(1) << -2.;
695 out << setw(10) << setiosflags(ios::fixed) << setprecision(1) << 293.;
696 out << setw(10) << " ";
697 out << setw(10) << " ";
698// out << setw(8) << matname.Data() << endl;
699 out << setw(8) << " " << endl;
95161cd7 700 }
701 else {
702 element = table->GetElement((int)z);
703 TString elename = element->GetTitle();
704 ToFlukaString(elename);
705 if( matname.CompareTo( elename ) != 0 ) {
706 out << setw(10) << "LOW-MAT ";
707 out.setf(static_cast<std::ios::fmtflags>(0),std::ios::floatfield);
708 out << setw(10) << setiosflags(ios::fixed) << setprecision(1) << Double_t(mat->GetIndex());
709 out << setw(10) << setiosflags(ios::fixed) << setprecision(1) << z;
710 out << setw(10) << setiosflags(ios::fixed) << setprecision(1) << " ";
711 out << setw(10) << setiosflags(ios::fixed) << setprecision(1) << " ";
712 out << setw(10) << " ";
713 out << setw(10) << " ";
714 // missing material at Low Energy Cross Section Table
715 if( (int)z==10 || (int)z==21 || (int)z==34 || (int)z==37 || (int)z==39 || (int)z==44 ||
716 (int)z==45 || (int)z==46 || (int)z==52 || (int)z==57 || (int)z==59 || (int)z==60 ||
717 (int)z==61 || (int)z==65 || (int)z==66 || (int)z==67 || (int)z==68 || (int)z==69 ||
718 (int)z==70 || (int)z==71 || (int)z==72 || (int)z==76 || (int)z==77 || (int)z==78 ||
719 (int)z==81 || (int)z==84 || (int)z==85 || (int)z==86 || (int)z==87 || (int)z==88 ||
720 (int)z==89 || (int)z==91 )
721 out << setw(8) << "UNKNOWN " << endl;
722 else
723 out << setw(8) << elename.Data() << endl;
724 // out << setw(8) << " " << endl;
725 }
726 }
89125dc7 727 continue;
d11bf3ca 728 }
8495a208 729 counttothree = 0;
730 out << setw(10) << "COMPOUND ";
731 nelem = mix->GetNelements();
89125dc7 732 objstr = (TObjString*)fMatNames->At(i);
8495a208 733 matname = objstr->GetString();
8495a208 734 for (j=0; j<nelem; j++) {
89125dc7 735 w = (mix->GetWmixt())[j];
736 if (w<0.00001) w=0.00001;
737 z = (mix->GetZmixt())[j];
738 a = (mix->GetAmixt())[j];
739 idmat = GetElementIndex(Int_t(z));
740 if (!idmat) Error("CreateFlukaMatFile", "element with Z=%f not found", z);
8495a208 741 out.setf(static_cast<std::ios::fmtflags>(0),std::ios::floatfield);
89125dc7 742 out << setw(10) << setiosflags(ios::fixed) << setprecision(6) << -w;
8495a208 743 out.setf(static_cast<std::ios::fmtflags>(0),std::ios::floatfield);
744 out << setw(10) << setiosflags(ios::fixed) << setprecision(1) << Double_t(idmat);
745 counttothree++;
746 if (counttothree == 3) {
747 out << matname.Data();
748 out << endl;
749 if ( (j+1) != nelem) out << setw(10) << "COMPOUND ";
750 counttothree = 0;
89125dc7 751 }
752 }
8495a208 753 if (nelem%3) {
754 for (j=0; j<(3-(nelem%3)); j++)
755 out << setw(10) << " " << setw(10) << " ";
756 out << matname.Data();
757 out << endl;
89125dc7 758 }
759 }
8495a208 760 Int_t nvols = gGeoManager->GetListOfUVolumes()->GetEntriesFast()-1;
761 TGeoVolume *vol;
8495a208 762 // Now print the material assignments
d11bf3ca 763 Double_t flagfield = 0.;
764 printf("#############################################################\n");
89125dc7 765 if (gFluka->IsFieldEnabled()) {
d11bf3ca 766 flagfield = 1.;
767 printf("Magnetic field enabled\n");
768 } else printf("Magnetic field disabled\n");
769 printf("#############################################################\n");
770
8495a208 771 PrintHeader(out, "TGEO MATERIAL ASSIGNMENTS");
772 for (i=1; i<=nvols; i++) {
e5d91a32 773 TGeoMedium* med;
8495a208 774 vol = gGeoManager->GetVolume(i);
e5d91a32 775 if ((med = vol->GetMedium()) == 0) continue;
776 mat = med->GetMaterial();
8495a208 777 idmat = mat->GetIndex();
89125dc7 778 for (Int_t j=0; j<nfmater; j++) {
779 mat = (TGeoMaterial*)fMatList->At(j);
780 if (mat->GetIndex() == idmat) mat->SetUsed(kTRUE);
781 }
3860051a 782
783 Float_t hasfield = (vol->GetMedium()->GetParam(1) > 0) ? flagfield : 0.;
89aa6d28 784 out << "* Assigning material: " << vol->GetMedium()->GetMaterial()->GetName() << " to Volume: " << vol->GetName();
785 out << endl;
786
8495a208 787 out << setw(10) << "ASSIGNMAT ";
788 out.setf(static_cast<std::ios::fmtflags>(0),std::ios::floatfield);
789 out << setw(10) << setiosflags(ios::fixed) << Double_t(idmat);
790 out << setw(10) << setiosflags(ios::fixed) << Double_t(i);
791 out << setw(10) << "0.0";
b0853588 792 out << setw(10) << "0.0";
3860051a 793 out << setw(10) << setiosflags(ios::fixed) << hasfield;
b0853588 794 out << setw(10) << "0.0";
8495a208 795 out << endl;
796 }
aae6bcdd 797 // dummy region
798 idmat = 2; // vacuum
799 fDummyRegion = nvols+1;
800 out << "* Dummy region: " << endl;
801 out << setw(10) << "ASSIGNMAT ";
802 out.setf(static_cast<std::ios::fmtflags>(0),std::ios::floatfield);
803 out << setw(10) << setiosflags(ios::fixed) << idmat;
804 out << setw(10) << setiosflags(ios::fixed) << fDummyRegion;
805 out << setw(10) << "0.0";
806 out << setw(10) << "0.0";
807 out << setw(10) << "0.0";
808 out << setw(10) << "0.0" << endl;
8495a208 809 out.close();
efde9b4d 810 fLastMaterial = nfmater+2;
6d184c54 811}
812
8495a208 813//_____________________________________________________________________________
814void TFlukaMCGeometry::PrintHeader(ofstream &out, const char *text) const
815{
816// Print a FLUKA header.
817 out << "*\n" << "*\n" << "*\n";
818 out << "********************* " << text << " *********************\n"
819 << "*\n";
820 out << "*...+....1....+....2....+....3....+....4....+....5....+....6....+....7..."
821 << endl;
822 out << "*" << endl;
823}
824
825//_____________________________________________________________________________
826Int_t TFlukaMCGeometry::RegionId() const
827{
828// Returns current region id <-> TGeo node id
829 if (gGeoManager->IsOutside()) return 0;
830 return gGeoManager->GetCurrentNode()->GetUniqueID();
831}
89125dc7 832
833//_____________________________________________________________________________
834Int_t TFlukaMCGeometry::GetElementIndex(Int_t z) const
835{
6f5667d1 836// Get index of a material having a given Z element.
89125dc7 837 TIter next(fMatList);
838 TGeoMaterial *mat;
839 Int_t index = 0;
840 while ((mat=(TGeoMaterial*)next())) {
841 if (mat->IsMixture()) continue;
842 if (mat->GetElement()->Z() == z) return mat->GetIndex();
843 }
844 return index;
845}
846
05265ca9 847//_____________________________________________________________________________
aae6bcdd 848void TFlukaMCGeometry::SetMreg(Int_t mreg, Int_t lttc)
05265ca9 849{
850// Update if needed next history;
aae6bcdd 851// if (gFluka->GetDummyBoundary()==2) {
852// gGeoManager->CdNode(fNextLattice-1);
853// return;
854// }
855 if (lttc == TFlukaMCGeometry::kLttcOutside) {
856 fCurrentRegion = NofVolumes()+2;
857 fCurrentLattice = lttc;
858 gGeoManager->CdTop();
859 gGeoManager->SetOutside(kTRUE);
860 }
861 if (lttc == TFlukaMCGeometry::kLttcVirtual) return;
862 if (lttc <=0) {
863 Error("TFlukaMCGeometry::SetMreg","Invalide lattice %i",lttc);
05265ca9 864 return;
aae6bcdd 865 }
866 fCurrentRegion = mreg;
867 fCurrentLattice = lttc;
868
869 Int_t crtlttc = gGeoManager->GetCurrentNodeId()+1;
870 if (crtlttc == lttc) return;
871 gGeoManager->CdNode(lttc-1);
9968e86c 872 while (gGeoManager->GetCurrentVolume()->IsAssembly()) gGeoManager->CdUp();
05265ca9 873}
874
d11bf3ca 875//_____________________________________________________________________________
876void TFlukaMCGeometry::SetCurrentRegion(Int_t mreg, Int_t latt)
877{
878// Set index/history for next entered region
879 fCurrentRegion = mreg;
880 fCurrentLattice = latt;
881}
882
05265ca9 883//_____________________________________________________________________________
884void TFlukaMCGeometry::SetNextRegion(Int_t mreg, Int_t latt)
885{
886// Set index/history for next entered region
887 fNextRegion = mreg;
888 fNextLattice = latt;
889}
8495a208 890
891//_____________________________________________________________________________
892void TFlukaMCGeometry::ToFlukaString(TString &str) const
893{
894// ToFlukaString converts an string to something usefull in FLUKA:
895// * Capital letters
896// * Only 8 letters
897// * Replace ' ' by '_'
898 if (str.Length()<8) {
899 str += " ";
900 }
901 str.Remove(8);
902 Int_t ilast;
903 for (ilast=7; ilast>0; ilast--) if (str(ilast)!=' ') break;
904 str.ToUpper();
905 for (Int_t pos=0; pos<ilast; pos++)
906 if (str(pos)==' ') str.Replace(pos,1,"_",1);
907 return;
908}
89125dc7 909
910//_____________________________________________________________________________
911void TFlukaMCGeometry::FlukaMatName(TString &str) const
912{
81f1d030 913// Strip the detector name
914
915 TObjArray * tokens = str.Tokenize("_");
916 Int_t ntok = tokens->GetEntries();
917 if (ntok > 0) {
4aba9d66 918 TString head = ((TObjString*) tokens->At(0))->GetString();
919 Int_t nhead = head.Length();
920 str = str.Remove(0, nhead + 1);
81f1d030 921 }
922 tokens->Clear();
923 delete tokens;
924
6f5667d1 925// Convert a name to upper case 8 chars.
89125dc7 926 ToFlukaString(str);
927 Int_t ilast;
928 for (ilast=7; ilast>0; ilast--) if (str(ilast)!=' ') break;
929 if (ilast>5) ilast = 5;
930 char number[3];
931 TIter next(fMatNames);
932 TObjString *objstr;
933 TString matname;
934 Int_t index = 0;
935 while ((objstr=(TObjString*)next())) {
936 matname = objstr->GetString();
937 if (matname == str) {
938 index++;
939 if (index<10) {
940 number[0] = '0';
941 sprintf(&number[1], "%d", index);
942 } else if (index<100) {
943 sprintf(number, "%d", index);
944 } else {
945 Error("FlukaMatName", "Too many materials %s", str.Data());
946 return;
947 }
948 str.Replace(ilast+1, 2, number);
949 str.Remove(8);
950 }
951 }
952}
4aba9d66 953
8495a208 954//______________________________________________________________________________
955void TFlukaMCGeometry::Vname(const char *name, char *vname) const
956{
957 //
958 // convert name to upper case. Make vname at least 4 chars
959 //
960 Int_t l = strlen(name);
961 Int_t i;
962 l = l < 4 ? l : 4;
963 for (i=0;i<l;i++) vname[i] = toupper(name[i]);
964 for (i=l;i<4;i++) vname[i] = ' ';
965 vname[4] = 0;
966}
967
968
4aba9d66 969//______________________________________________________________________________
970Int_t TFlukaMCGeometry::GetNstep()
971{
972 // return gNstep for debug propose
973 return gNstep;
974}
81f1d030 975
8495a208 976
9968e86c 977Int_t TFlukaMCGeometry::GetPredefinedMaterialId(Int_t z) const
978{
979// Get predifined material id from Z if present in list
980 const Int_t kMax = 25;
981
982 static Int_t idFluka[kMax] =
983 {-1, -1, 1, 2, 4, 6, 7, 8, 12, 13,
984 26, 29, 47, 14, 79, 80, 82, 73, 11, 18,
985 20, 50, 74, 22, 28};
986
987 Int_t id = -1;
988
989 for (Int_t i = 0; i < kMax; i++)
990 {
991 if (z == idFluka[i]) {
992 id = i + 1;
993 break;
994 }
995
996 }
997
998 return id;
999}
1000
1001// FLUKA GEOMETRY WRAPPERS - to replace FLUGG wrappers
1002//
8495a208 1003//_____________________________________________________________________________
1004Int_t idnrwr(const Int_t & /*nreg*/, const Int_t & /*mlat*/)
1005{
1006// from FLUGG:
1007// Wrapper for setting DNEAR option on fluka side. Must return 0
1008// if user doesn't want Fluka to use DNEAR to compute the
1009// step (the same effect is obtained with the GLOBAL (WHAT(3)=-1)
1010// card in fluka input), returns 1 if user wants Fluka always to
1011// use DNEAR (in this case, be sure that GEANT4 DNEAR is unique,
1012// coming from all directions!!!)
89125dc7 1013 if (gMCGeom->IsDebugging()) printf("========== Dummy IDNRWR\n");
8495a208 1014 return 0;
1015}
1016
8495a208 1017//_____________________________________________________________________________
1018void g1wr(Double_t &pSx, Double_t &pSy, Double_t &pSz,
d11bf3ca 1019 Double_t *pV, Int_t &oldReg , const Int_t &oldLttc, Double_t &propStep,
cefd9d9b 1020 Int_t &/*nascFlag*/, Double_t &retStep, Int_t &newReg,
4aba9d66 1021 Double_t &saf, Int_t &newLttc, Int_t &lttcFlag,
8495a208 1022 Double_t *sLt, Int_t *jrLt)
d11bf3ca 1023
8495a208 1024{
d11bf3ca 1025 // Initialize FLUKa point and direction;
4b1c3976 1026 static Int_t ierr = 0;
6f5667d1 1027 gNstep++;
4b1c3976 1028// gMCGeom->SetDebugMode(kTRUE);
4aba9d66 1029
784c3bdd 1030 NORLAT.xn[0] = pSx;
1031 NORLAT.xn[1] = pSy;
1032 NORLAT.xn[2] = pSz;
8495a208 1033
a940d455 1034 Int_t olttc = oldLttc;
81f1d030 1035 if (oldLttc<=0) {
a940d455 1036 gGeoManager->FindNode(pSx,pSy,pSz);
1037 olttc = gGeoManager->GetCurrentNodeId()+1;
4aba9d66 1038 oldReg = gGeoManager->GetCurrentVolume()->GetNumber();
1039 }
1040
4b1c3976 1041 if (gMCGeom->IsDebugging()) {
1042 cout << "g1wr gNstep=" << gNstep << " oldReg="<< oldReg <<" olttc="<< olttc
1043 << " track=" << TRACKR.ispusr[mkbmx2-1] << endl;
1044 cout << " point: (" << pSx << ", " << pSy << ", " << pSz << ") dir: ("
1045 << pV[0] << ", " << pV[1] << ", " << pV[2] << ")" << endl;
1046 }
1047
1048
1049 Int_t ccreg=0,cclat=0;
81f1d030 1050 gMCGeom->GetCurrentRegion(ccreg,cclat);
4aba9d66 1051 Bool_t crossed = (ccreg==oldReg && cclat==olttc)?kFALSE:kTRUE;
1052
a940d455 1053 gMCGeom->SetCurrentRegion(oldReg, olttc);
d11bf3ca 1054 // Initialize default return values
1055 lttcFlag = 0;
a940d455 1056 jrLt[lttcFlag] = olttc;
d11bf3ca 1057 sLt[lttcFlag] = propStep;
1058 jrLt[lttcFlag+1] = -1;
1059 sLt[lttcFlag+1] = 0.;
1060 newReg = oldReg;
a940d455 1061 newLttc = olttc;
aae6bcdd 1062 Bool_t crossedDummy = (oldReg == gFluka->GetDummyRegion())?kTRUE:kFALSE;
d11bf3ca 1063 Int_t curLttc, curReg;
aae6bcdd 1064 if (crossedDummy) {
1065 // FLUKA crossed the dummy boundary - update new region/history
1066 retStep = TGeoShape::Tolerance();
1067 saf = 0.;
1068 gMCGeom->GetNextRegion(newReg, newLttc);
1069 gMCGeom->SetMreg(newReg, newLttc);
1070 sLt[lttcFlag] = TGeoShape::Tolerance(); // null step in current region
1071 lttcFlag++;
1072 jrLt[lttcFlag] = newLttc;
1073 sLt[lttcFlag] = TGeoShape::Tolerance(); // null step in next region
1074 jrLt[lttcFlag+1] = -1;
1075 sLt[lttcFlag+1] = 0.; // null step in next region;
4aba9d66 1076 if (gMCGeom->IsDebugging()) printf("=> crossed dummy!! newReg=%i newLttc=%i\n", newReg, newLttc);
aae6bcdd 1077 return;
4aba9d66 1078 }
1079
d11bf3ca 1080 // Reset outside flag
cefd9d9b 1081 gGeoManager->SetOutside(kFALSE);
4aba9d66 1082
d11bf3ca 1083 curLttc = gGeoManager->GetCurrentNodeId()+1;
1084 curReg = gGeoManager->GetCurrentVolume()->GetNumber();
a940d455 1085 if (olttc != curLttc) {
d11bf3ca 1086 // FLUKA crossed the boundary : we trust that the given point is really there,
1087 // so we just update TGeo state
a940d455 1088 gGeoManager->CdNode(olttc-1);
2573ac89 1089 curLttc = gGeoManager->GetCurrentNodeId()+1;
d11bf3ca 1090 curReg = gGeoManager->GetCurrentVolume()->GetNumber();
4aba9d66 1091 }
784c3bdd 1092 // Now the current TGeo state reflects the FLUKA state
4aba9d66 1093
aae6bcdd 1094 gGeoManager->SetCurrentPoint(pSx, pSy, pSz);
cefd9d9b 1095 gGeoManager->SetCurrentDirection(pV);
4b1c3976 1096 Double_t pt[3], local[3], ldir[3];
1097 Int_t pid = TRACKR.jtrack;
1098 pt[0] = pSx;
1099 pt[1] = pSy;
1100 pt[2] = pSz;
1101 gGeoManager->MasterToLocal(pt,local);
1102 gGeoManager->MasterToLocalVect(pV,ldir);
1103/*
1104 Bool_t valid = gGeoManager->GetCurrentVolume()->Contains(local);
1105 if (!valid) {
1106 printf("location not valid in %s pid=%i\n", gGeoManager->GetPath(),pid);
1107 printf("local:(%f, %f, %f) ldir:(%f, %f, %f)\n", local[0],local[1],local[2],ldir[0],ldir[1],ldir[2]);
1108// gGeoManager->FindNode();
1109// printf(" -> actual location: %s\n", gGeoManager->GetPath());
1110 }
1111*/
1112 Double_t pstep = propStep;
1113 Double_t snext = propStep;
1114 const Double_t epsil = 0.9999999 * TGeoShape::Tolerance();
1115 // This should never happen !!!
1116 if (pstep<TGeoShape::Tolerance()) {
1117 printf("Proposed step is 0 !!!\n");
1118 pstep = 2.*TGeoShape::Tolerance();
1119 }
aae6bcdd 1120 if (crossed) {
4b1c3976 1121 gGeoManager->FindNextBoundaryAndStep(pstep);
1122 snext = gGeoManager->GetStep();
1123 saf = 0.;
1124 if (snext <= TGeoShape::Tolerance()) {
1125// printf("FLUKA crossed boundary but snext=%g\n", snext);
1126 ierr++;
1127 snext = epsil;
1128 } else {
1129 snext += TGeoShape::Tolerance();
1130 ierr = 0;
1131 }
aae6bcdd 1132 } else {
4b1c3976 1133 gGeoManager->FindNextBoundaryAndStep(pstep, kTRUE);
1134 snext = gGeoManager->GetStep();
aae6bcdd 1135 saf = gGeoManager->GetSafeDistance();
4b1c3976 1136 if (snext <= TGeoShape::Tolerance()) {
1137// printf("FLUKA put particle on bondary without crossing\n");
1138 ierr++;
1139 snext = epsil;
1140 saf = 0.;
1141 } else {
1142 snext += TGeoShape::Tolerance();
1143 ierr = 0;
1144 }
1145 if (saf<0) saf=0.;
aae6bcdd 1146 saf -= saf*3.0e-09;
4aba9d66 1147 }
4b1c3976 1148// if (ierr>1) {
1149// printf("%d snext=%g\n", ierr, snext);
1150// }
1151 if (ierr == 10) {
1152// printf("Too many null steps - sending error code -33...\n");
1153 newReg = -33; // Error code
1154 ierr = 0;
1155 return;
1156 }
1157
81f1d030 1158 PAREM.dist = snext;
784c3bdd 1159 NORLAT.distn = snext;
1160 NORLAT.xn[0] += snext*pV[0];
1161 NORLAT.xn[1] += snext*pV[1];
1162 NORLAT.xn[2] += snext*pV[2];
aae6bcdd 1163 if (!gGeoManager->IsOnBoundary()) {
d11bf3ca 1164 // Next boundary further than proposed step, which is approved
4aba9d66 1165 if (saf>propStep) saf = propStep;
d11bf3ca 1166 retStep = propStep;
1167 sLt[lttcFlag] = propStep;
1168 return;
1169 }
aae6bcdd 1170 if (saf>snext) saf = snext; // Safety should be less than the proposed step if a boundary will be crossed
cefd9d9b 1171 gGeoManager->SetCurrentPoint(pSx,pSy,pSz);
d11bf3ca 1172 newLttc = (gGeoManager->IsOutside())?(TFlukaMCGeometry::kLttcOutside):gGeoManager->GetCurrentNodeId()+1;
aae6bcdd 1173 newReg = (gGeoManager->IsOutside())?(gMCGeom->NofVolumes()+2):gGeoManager->GetCurrentVolume()->GetNumber();
4aba9d66 1174 if (gMCGeom->IsDebugging()) printf("=> newReg=%i newLttc=%i\n", newReg, newLttc);
d11bf3ca 1175
1176 // We really crossed the boundary, but is it the same region ?
89125dc7 1177 gMCGeom->SetNextRegion(newReg, newLttc);
aae6bcdd 1178
4aba9d66 1179 if ( ((newReg==oldReg && newLttc!=olttc) || (oldReg!=newReg && olttc==newLttc) ) && pid!=-1) {
d11bf3ca 1180 // Virtual boundary between replicants
aae6bcdd 1181 newReg = gFluka->GetDummyRegion();
d11bf3ca 1182 newLttc = TFlukaMCGeometry::kLttcVirtual;
4aba9d66 1183 if (gMCGeom->IsDebugging()) printf("=> virtual boundary!! newReg=%i newLttc=%i\n", newReg, newLttc);
1184 }
1185
d11bf3ca 1186 retStep = snext;
1187 sLt[lttcFlag] = snext;
1188 lttcFlag++;
1189 jrLt[lttcFlag] = newLttc;
1190 sLt[lttcFlag] = snext;
1191 jrLt[lttcFlag+1] = -1;
4aba9d66 1192
1193 sLt[lttcFlag+1] = 0.;
87f4b393 1194 gGeoManager->SetOutside(kFALSE);
1195 gGeoManager->CdNode(olttc-1);
89125dc7 1196 if (gMCGeom->IsDebugging()) {
d11bf3ca 1197 printf("=> snext=%g safe=%g\n", snext, saf);
1198 for (Int_t i=0; i<lttcFlag+1; i++) printf(" jrLt[%i]=%i sLt[%i]=%g\n", i,jrLt[i],i,sLt[i]);
4aba9d66 1199 }
8495a208 1200}
1201
efde9b4d 1202//_____________________________________________________________________________
1203void g1rtwr()
1204{
4aba9d66 1205
89125dc7 1206 if (gMCGeom->IsDebugging()) printf("========== Dummy G1RTWR\n");
efde9b4d 1207}
1208
1209//_____________________________________________________________________________
4aba9d66 1210void conhwr(Int_t & intHist, Int_t & incrCount)
efde9b4d 1211{
4aba9d66 1212 if (gMCGeom->IsDebugging()) printf("========== Dummy CONHWR intHist=%d incrCount=%d currentNodeId=%d\n",
1213 intHist, incrCount, gGeoManager->GetCurrentNodeId()+1 );
1214// if( incrCount != -1 ) {
1215// if (intHist==0) gGeoManager->CdTop();
1216// else gGeoManager->CdNode(intHist-1);
1217// }
1218// intHist = gGeoManager->GetCurrentNodeId()+1;
efde9b4d 1219}
1220
1221//_____________________________________________________________________________
2573ac89 1222void inihwr(Int_t &intHist)
efde9b4d 1223{
4aba9d66 1224 if (gMCGeom->IsDebugging())
1225 printf("========== Inside INIHWR -> reinitializing history: %i \n", intHist);
2573ac89 1226 if (gGeoManager->IsOutside()) gGeoManager->CdTop();
4aba9d66 1227 if (intHist<0) {
2573ac89 1228// printf("=== wrong history number\n");
1229 return;
1230 }
1231 if (intHist==0) gGeoManager->CdTop();
1232 else gGeoManager->CdNode(intHist-1);
89125dc7 1233 if (gMCGeom->IsDebugging()) {
2bc4c610 1234 printf(" --- current path: %s\n", gGeoManager->GetPath());
1235 printf("<= INIHWR\n");
4aba9d66 1236 }
efde9b4d 1237}
1238
1239//_____________________________________________________________________________
1240void jomiwr(const Int_t & /*nge*/, const Int_t & /*lin*/, const Int_t & /*lou*/,
1241 Int_t &flukaReg)
1242{
1243// Geometry initialization wrapper called by FLUKAM. Provides to FLUKA the
1244// number of regions (volumes in TGeo)
1245 // build application geometry
89125dc7 1246 if (gMCGeom->IsDebugging()) printf("========== Inside JOMIWR\n");
aae6bcdd 1247 flukaReg = gGeoManager->GetListOfUVolumes()->GetEntriesFast()+1;
89125dc7 1248 if (gMCGeom->IsDebugging()) printf("<= JOMIWR: last region=%i\n", flukaReg);
efde9b4d 1249}
1250
1251//_____________________________________________________________________________
1252void lkdbwr(Double_t &pSx, Double_t &pSy, Double_t &pSz,
784c3bdd 1253 Double_t *pV, const Int_t &oldReg, const Int_t &oldLttc,
aae6bcdd 1254 Int_t &flagErr, Int_t &newReg, Int_t &newLttc)
efde9b4d 1255{
89125dc7 1256 if (gMCGeom->IsDebugging()) {
2bc4c610 1257 printf("========== Inside LKDBWR (%f, %f, %f)\n",pSx, pSy, pSz);
784c3bdd 1258 printf(" in: pV=(%f, %f, %f)\n", pV[0], pV[1], pV[2]);
2bc4c610 1259 printf(" in: oldReg=%i oldLttc=%i\n", oldReg, oldLttc);
1260 }
aae6bcdd 1261 lkwr(pSx,pSy,pSz,pV,oldReg,oldLttc,flagErr,newReg,newLttc);
efde9b4d 1262}
1263
1264//_____________________________________________________________________________
1265void lkfxwr(Double_t &pSx, Double_t &pSy, Double_t &pSz,
784c3bdd 1266 Double_t *pV, const Int_t &oldReg, const Int_t &oldLttc,
aae6bcdd 1267 Int_t &flagErr, Int_t &newReg, Int_t &newLttc)
efde9b4d 1268{
89125dc7 1269 if (gMCGeom->IsDebugging()) {
2bc4c610 1270 printf("========== Inside LKFXWR (%f, %f, %f)\n",pSx, pSy, pSz);
784c3bdd 1271 printf(" in: pV=(%f, %f, %f)\n", pV[0], pV[1], pV[2]);
2bc4c610 1272 printf(" in: oldReg=%i oldLttc=%i\n", oldReg, oldLttc);
1273 }
aae6bcdd 1274 lkwr(pSx,pSy,pSz,pV,oldReg,oldLttc,flagErr,newReg,newLttc);
efde9b4d 1275}
1276
1277//_____________________________________________________________________________
1278void lkmgwr(Double_t &pSx, Double_t &pSy, Double_t &pSz,
784c3bdd 1279 Double_t *pV, const Int_t &oldReg, const Int_t &oldLttc,
4aba9d66 1280 Int_t &flagErr, Int_t &newReg, Int_t &newLttc)
efde9b4d 1281{
89125dc7 1282 if (gMCGeom->IsDebugging()) {
2bc4c610 1283 printf("========== Inside LKMGWR (%f, %f, %f)\n",pSx, pSy, pSz);
784c3bdd 1284 printf(" in: pV=(%f, %f, %f)\n", pV[0], pV[1], pV[2]);
2bc4c610 1285 printf(" in: oldReg=%i oldLttc=%i\n", oldReg, oldLttc);
1286 }
aae6bcdd 1287 lkwr(pSx,pSy,pSz,pV,oldReg,oldLttc,flagErr,newReg,newLttc);
efde9b4d 1288}
1289
1290//_____________________________________________________________________________
1291void lkwr(Double_t &pSx, Double_t &pSy, Double_t &pSz,
784c3bdd 1292 Double_t *pV, const Int_t &oldReg, const Int_t &oldLttc,
4aba9d66 1293 Int_t &flagErr, Int_t &newReg, Int_t &newLttc)
efde9b4d 1294{
89125dc7 1295 if (gMCGeom->IsDebugging()) {
2bc4c610 1296 printf("========== Inside LKWR (%f, %f, %f)\n",pSx, pSy, pSz);
784c3bdd 1297 printf(" in: pV=(%f, %f, %f)\n", pV[0], pV[1], pV[2]);
2bc4c610 1298 printf(" in: oldReg=%i oldLttc=%i\n", oldReg, oldLttc);
1299 }
aae6bcdd 1300 flagErr = 0;
4b1c3976 1301 Double_t epsil = 1000.*TGeoShape::Tolerance();
1302 TGeoNode *node = gGeoManager->FindNode(pSx+epsil*pV[0], pSy+epsil*pV[1], pSz+epsil*pV[2]);
efde9b4d 1303 if (gGeoManager->IsOutside()) {
aae6bcdd 1304 newReg = gMCGeom->NofVolumes()+2;
1305 newLttc = TFlukaMCGeometry::kLttcOutside;
87f4b393 1306 gGeoManager->SetOutside(kFALSE);
1307 if (oldLttc>0 && oldLttc<newLttc) gGeoManager->CdNode(oldLttc-1);
05265ca9 1308 return;
efde9b4d 1309 }
87f4b393 1310 gGeoManager->SetOutside(kFALSE);
efde9b4d 1311 newReg = node->GetVolume()->GetNumber();
d11bf3ca 1312 newLttc = gGeoManager->GetCurrentNodeId()+1;
aae6bcdd 1313 if (oldLttc==TFlukaMCGeometry::kLttcOutside || oldLttc==0) return;
1314
1315 Int_t dummy = gFluka->GetDummyRegion();
1316 if (oldReg==dummy) {
1317 Int_t newreg1, newlttc1;
1318 gMCGeom->GetNextRegion(newreg1, newlttc1);
1319 if (newreg1==newReg && newlttc1==newLttc) {
1320 newReg = dummy;
1321 newLttc = TFlukaMCGeometry::kLttcVirtual;
4aba9d66 1322 flagErr = newReg;
1323 if (gMCGeom->IsDebugging()) printf(" virtual boundary (oldReg==dummy) !! newReg=%i newLttc=%i\n", newReg, newLttc);
1324 }
aae6bcdd 1325 return;
4aba9d66 1326 }
aae6bcdd 1327
1328 if (oldReg==newReg && oldLttc!=newLttc) {
4aba9d66 1329 newReg = dummy;
aae6bcdd 1330 newLttc = TFlukaMCGeometry::kLttcVirtual;
4aba9d66 1331 if (gMCGeom->IsDebugging()) printf(" virtual boundary!! newReg=%i newLttc=%i\n", newReg, newLttc);
1332 }
1333
1334 if( oldReg!=newReg && oldLttc==newLttc ) {
1335 // this should not happen!! ??? Ernesto
4b1c3976 1336// cout << " lkwr oldReg!=newReg ("<< oldReg <<"!="<< newReg
1337// << ") && oldLttc==newLttc ("<< newLttc <<") !!!!!!!!!!!!!!!!!" << endl;
4aba9d66 1338 newReg = dummy;
1339 newLttc = TFlukaMCGeometry::kLttcVirtual;
1340 flagErr = newReg;
1341 }
1342
89125dc7 1343 if (gMCGeom->IsDebugging()) {
aae6bcdd 1344 printf(" LKWR: newReg=%i newLttc=%i\n", newReg, newLttc);
2bc4c610 1345 }
efde9b4d 1346}
1347
1348//_____________________________________________________________________________
2573ac89 1349void nrmlwr(Double_t &pSx, Double_t &pSy, Double_t &pSz,
1350 Double_t &pVx, Double_t &pVy, Double_t &pVz,
4aba9d66 1351 Double_t *norml, const Int_t &oldReg,
1352 const Int_t &newReg, Int_t &flagErr)
efde9b4d 1353{
89125dc7 1354 if (gMCGeom->IsDebugging()) {
2bc4c610 1355 printf("========== Inside NRMLWR (%g, %g, %g, %g, %g, %g)\n", pSx,pSy,pSz,pVx,pVy,pVz);
4aba9d66 1356 printf(" (%g, %g, %g)\n", NORLAT.xn[0], NORLAT.xn[1], NORLAT.xn[2]);
2bc4c610 1357 printf(" oldReg=%i, newReg=%i\n", oldReg,newReg);
1358 }
784c3bdd 1359 gGeoManager->SetCurrentPoint(NORLAT.xn[0], NORLAT.xn[1], NORLAT.xn[2]);
aae6bcdd 1360 gGeoManager->SetCurrentDirection(pVx, pVy, pVz);
2573ac89 1361 Double_t *dnorm = gGeoManager->FindNormalFast();
1362 flagErr = 0;
1363 if (!dnorm) {
1364 printf(" ERROR: Cannot compute fast normal\n");
1365 flagErr = 1;
1366 norml[0] = -pVx;
1367 norml[1] = -pVy;
1368 norml[2] = -pVz;
aae6bcdd 1369 } else {
4aba9d66 1370 norml[0] = -dnorm[0];
1371 norml[1] = -dnorm[1];
1372 norml[2] = -dnorm[2];
aae6bcdd 1373 }
4aba9d66 1374
89125dc7 1375 if (gMCGeom->IsDebugging()) {
784c3bdd 1376 printf(" normal to boundary: (%g, %g, %g)\n", norml[0], norml[1], norml[2]);
2bc4c610 1377 printf("<= NRMLWR\n");
4aba9d66 1378 }
1379
efde9b4d 1380}
1381
1382//_____________________________________________________________________________
1383void rgrpwr(const Int_t & /*flukaReg*/, const Int_t & /*ptrLttc*/, Int_t & /*g4Reg*/,
1384 Int_t * /*indMother*/, Int_t * /*repMother*/, Int_t & /*depthFluka*/)
1385{
89125dc7 1386 if (gMCGeom->IsDebugging()) printf("=> Dummy RGRPWR\n");
efde9b4d 1387}
1388
1389//_____________________________________________________________________________
1390Int_t isvhwr(const Int_t &check, const Int_t & intHist)
1391{
1392// from FLUGG:
1393// Wrapper for saving current navigation history (fCheck=default)
1394// and returning its pointer. If fCheck=-1 copy of history pointed
1395// by intHist is made in NavHistWithCount object, and its pointer
1396// is returned. fCheck=1 and fCheck=2 cases are only in debugging
1397// version: an array is created by means of FGeometryInit functions
1398// (but could be a static int * ptrArray = new int[10000] with
1399// file scope as well) that stores a flag for deleted/undeleted
1400// histories and at the end of event is checked to verify that
1401// all saved history objects have been deleted.
1402
1403// For TGeo, just return the current node ID. No copy need to be made.
1404
4aba9d66 1405 if (gMCGeom->IsDebugging()) printf("=> Inside ISVHWR check=%d intHist=%d\n", check, intHist);
efde9b4d 1406 if (check<0) return intHist;
2573ac89 1407 Int_t histInt = gGeoManager->GetCurrentNodeId()+1;
89125dc7 1408 if (gMCGeom->IsDebugging()) printf("<= ISVHWR: history is: %i in: %s\n", histInt, gGeoManager->GetPath());
efde9b4d 1409 return histInt;
1410}
1411
1412
8495a208 1413
1414