]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TFluka/TFluka.cxx
unloading digits (Christian)
[u/mrichter/AliRoot.git] / TFluka / TFluka.cxx
CommitLineData
03ca248b 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$ */
03ca248b 17
eae0fe66 18#include <Riostream.h>
b9d0a01d 19
6d4d27f2 20#include "TClonesArray.h"
03ca248b 21#include "TFluka.h"
b9d0a01d 22#include "TCallf77.h" //For the fortran calls
23#include "Fdblprc.h" //(DBLPRC) fluka common
b9d0a01d 24#include "Fepisor.h" //(EPISOR) fluka common
fa3d1cc7 25#include "Ffinuc.h" //(FINUC) fluka common
26#include "Fiounit.h" //(IOUNIT) fluka common
27#include "Fpaprop.h" //(PAPROP) fluka common
f9cb2fec 28#include "Fpart.h" //(PART) fluka common
fa3d1cc7 29#include "Ftrackr.h" //(TRACKR) fluka common
6d4d27f2 30#include "Fpaprop.h" //(PAPROP) fluka common
fa3d1cc7 31#include "Ffheavy.h" //(FHEAVY) fluka common
b9d0a01d 32
fa3d1cc7 33#include "TVirtualMC.h"
bf3aa28e 34#include "TG4GeometryManager.h" //For the geometry management
35#include "TG4DetConstruction.h" //For the detector construction
36
37#include "FGeometryInit.hh"
fa3d1cc7 38#include "TLorentzVector.h"
6d4d27f2 39#include "FlukaVolume.h"
bf3aa28e 40
b9d0a01d 41// Fluka methods that may be needed.
42#ifndef WIN32
43# define flukam flukam_
44# define fluka_openinp fluka_openinp_
45# define fluka_closeinp fluka_closeinp_
f9cb2fec 46# define mcihad mcihad_
47# define mpdgha mpdgha_
b9d0a01d 48#else
49# define flukam FLUKAM
50# define fluka_openinp FLUKA_OPENINP
51# define fluka_closeinp FLUKA_CLOSEINP
f9cb2fec 52# define mcihad MCIHAD
53# define mpdgha MPDGHA
b9d0a01d 54#endif
55
56extern "C"
57{
58 //
59 // Prototypes for FLUKA functions
60 //
61 void type_of_call flukam(const int&);
62 void type_of_call fluka_openinp(const int&, DEFCHARA);
63 void type_of_call fluka_closeinp(const int&);
f9cb2fec 64 int type_of_call mcihad(const int&);
65 int type_of_call mpdgha(const int&);
b9d0a01d 66}
67
68//
69// Class implementation for ROOT
70//
03ca248b 71ClassImp(TFluka)
b9d0a01d 72
73//
bf3aa28e 74//----------------------------------------------------------------------------
75// TFluka constructors and destructors.
b9d0a01d 76//____________________________________________________________________________
77TFluka::TFluka()
78 :TVirtualMC(),
79 fVerbosityLevel(0),
1de0a072 80 sInputFileName(""),
27b2f7fe 81 fDetector(0),
82 fCurrentFlukaRegion(-1)
b9d0a01d 83{
84 //
85 // Default constructor
86 //
87}
88
22229ba5 89TFluka::TFluka(const char *title, Int_t verbosity, Bool_t isRootGeometrySupported)
90 :TVirtualMC("TFluka",title, isRootGeometrySupported),
b9d0a01d 91 fVerbosityLevel(verbosity),
1de0a072 92 sInputFileName(""),
24969d13 93 fTrackIsEntering(0),
94 fTrackIsExiting(0),
27b2f7fe 95 fDetector(0),
96 fCurrentFlukaRegion(-1)
b9d0a01d 97{
98 if (fVerbosityLevel >=3)
99 cout << "==> TFluka::TFluka(" << title << ") constructor called." << endl;
100
bf3aa28e 101
102 // create geometry manager
103 if (fVerbosityLevel >=2)
104 cout << "\t* Creating G4 Geometry manager..." << endl;
105 fGeometryManager = new TG4GeometryManager();
106 if (fVerbosityLevel >=2)
107 cout << "\t* Creating G4 Detector..." << endl;
108 fDetector = new TG4DetConstruction();
109 FGeometryInit* geominit = FGeometryInit::GetInstance();
110 if (geominit)
111 geominit->setDetConstruction(fDetector);
112 else {
113 cerr << "ERROR: Could not create FGeometryInit!" << endl;
114 cerr << " Exiting!!!" << endl;
115 abort();
116 }
117
b9d0a01d 118 if (fVerbosityLevel >=3)
119 cout << "<== TFluka::TFluka(" << title << ") constructor called." << endl;
6d4d27f2 120
121 fVolumeMediaMap = new TClonesArray("FlukaVolume",1000);
122 fNVolumes = 0;
123 fMediaByRegion = 0;
b9d0a01d 124}
125
bf3aa28e 126TFluka::~TFluka() {
127 if (fVerbosityLevel >=3)
128 cout << "==> TFluka::~TFluka() destructor called." << endl;
129
130 delete fGeometryManager;
6d4d27f2 131 fVolumeMediaMap->Delete();
132 delete fVolumeMediaMap;
133
bf3aa28e 134
135 if (fVerbosityLevel >=3)
136 cout << "<== TFluka::~TFluka() destructor called." << endl;
137}
138
139//
140//_____________________________________________________________________________
141// TFluka control methods
b9d0a01d 142//____________________________________________________________________________
143void TFluka::Init() {
1de0a072 144
b9d0a01d 145 if (fVerbosityLevel >=3)
146 cout << "==> TFluka::Init() called." << endl;
147
1de0a072 148 cout << "\t* InitPhysics() - Prepare input file to be called" << endl;
149 InitPhysics(); // prepare input file
5929ad29 150 cout << "\t* InitPhysics() - Prepare input file was called" << endl;
1de0a072 151
b9d0a01d 152 if (fVerbosityLevel >=2)
153 cout << "\t* Changing lfdrtr = (" << (GLOBAL.lfdrtr?'T':'F')
154 << ") in fluka..." << endl;
155 GLOBAL.lfdrtr = true;
156
157 if (fVerbosityLevel >=2)
1de0a072 158 cout << "\t* Opening file " << sInputFileName << endl;
159 const char* fname = sInputFileName;
b9d0a01d 160 fluka_openinp(lunin, PASSCHARA(fname));
161
162 if (fVerbosityLevel >=2)
163 cout << "\t* Calling flukam..." << endl;
bf3aa28e 164 flukam(1);
b9d0a01d 165
166 if (fVerbosityLevel >=2)
1de0a072 167 cout << "\t* Closing file " << sInputFileName << endl;
b9d0a01d 168 fluka_closeinp(lunin);
169
1de0a072 170 FinishGeometry();
171
b9d0a01d 172 if (fVerbosityLevel >=3)
173 cout << "<== TFluka::Init() called." << endl;
fa3d1cc7 174
b9d0a01d 175}
176
bf3aa28e 177void TFluka::FinishGeometry() {
6d4d27f2 178//
179// Build-up table with region to medium correspondance
180//
181 char tmp[5];
182
bf3aa28e 183 if (fVerbosityLevel >=3)
184 cout << "==> TFluka::FinishGeometry() called." << endl;
185
6d4d27f2 186// fGeometryManager->Ggclos();
bf3aa28e 187
6d4d27f2 188 FGeometryInit* flugg = FGeometryInit::GetInstance();
189
190 fMediaByRegion = new Int_t[fNVolumes+2];
191 for (Int_t i = 0; i < fNVolumes; i++)
192 {
193 FlukaVolume* vol = dynamic_cast<FlukaVolume*>((*fVolumeMediaMap)[i]);
194 TString volName = vol->GetName();
195 Int_t media = vol->GetMedium();
fee5ea25 196 if (fVerbosityLevel >= 3)
6d4d27f2 197 printf("Finish Geometry: volName, media %d %s %d \n", i, volName.Data(), media);
198 strcpy(tmp, volName.Data());
199 tmp[4] = '\0';
b0d8df96 200 flugg->SetMediumFromName(tmp, media, i+1);
201 fMediaByRegion[i] = media;
27b2f7fe 202 }
6d4d27f2 203
204 flugg->BuildMediaMap();
27b2f7fe 205
bf3aa28e 206 if (fVerbosityLevel >=3)
207 cout << "<== TFluka::FinishGeometry() called." << endl;
208}
209
210void TFluka::BuildPhysics() {
211 if (fVerbosityLevel >=3)
212 cout << "==> TFluka::BuildPhysics() called." << endl;
213
214
215 if (fVerbosityLevel >=3)
216 cout << "<== TFluka::BuildPhysics() called." << endl;
217}
218
b9d0a01d 219void TFluka::ProcessEvent() {
220 if (fVerbosityLevel >=3)
221 cout << "==> TFluka::ProcessEvent() called." << endl;
b0d8df96 222 fApplication->GeneratePrimaries();
223 EPISOR.lsouit = true;
224 flukam(1);
b9d0a01d 225 if (fVerbosityLevel >=3)
226 cout << "<== TFluka::ProcessEvent() called." << endl;
227}
228
bf3aa28e 229
b9d0a01d 230void TFluka::ProcessRun(Int_t nevent) {
231 if (fVerbosityLevel >=3)
232 cout << "==> TFluka::ProcessRun(" << nevent << ") called."
233 << endl;
234
235 if (fVerbosityLevel >=2) {
236 cout << "\t* GLOBAL.fdrtr = " << (GLOBAL.lfdrtr?'T':'F') << endl;
237 cout << "\t* Calling flukam again..." << endl;
238 }
b0d8df96 239 fApplication->InitGeometry();
240 fApplication->BeginEvent();
241 ProcessEvent();
242 fApplication->FinishEvent();
b9d0a01d 243 if (fVerbosityLevel >=3)
244 cout << "<== TFluka::ProcessRun(" << nevent << ") called."
245 << endl;
b0d8df96 246
b9d0a01d 247}
248
bf3aa28e 249//_____________________________________________________________________________
250// methods for building/management of geometry
251//____________________________________________________________________________
252// functions from GCONS
253void TFluka::Gfmate(Int_t imat, char *name, Float_t &a, Float_t &z,
254 Float_t &dens, Float_t &radl, Float_t &absl,
255 Float_t* ubuf, Int_t& nbuf) {
256//
257 fGeometryManager->Gfmate(imat, name, a, z, dens, radl, absl, ubuf, nbuf);
258}
259
260void TFluka::Gfmate(Int_t imat, char *name, Double_t &a, Double_t &z,
261 Double_t &dens, Double_t &radl, Double_t &absl,
262 Double_t* ubuf, Int_t& nbuf) {
263//
264 fGeometryManager->Gfmate(imat, name, a, z, dens, radl, absl, ubuf, nbuf);
265}
266
267// detector composition
268void TFluka::Material(Int_t& kmat, const char* name, Double_t a,
269 Double_t z, Double_t dens, Double_t radl, Double_t absl,
270 Float_t* buf, Int_t nwbuf) {
271//
272 fGeometryManager
273 ->Material(kmat, name, a, z, dens, radl, absl, buf, nwbuf);
274}
275void TFluka::Material(Int_t& kmat, const char* name, Double_t a,
276 Double_t z, Double_t dens, Double_t radl, Double_t absl,
277 Double_t* buf, Int_t nwbuf) {
278//
279 fGeometryManager
280 ->Material(kmat, name, a, z, dens, radl, absl, buf, nwbuf);
281}
282
283void TFluka::Mixture(Int_t& kmat, const char *name, Float_t *a,
284 Float_t *z, Double_t dens, Int_t nlmat, Float_t *wmat) {
285//
286 fGeometryManager
287 ->Mixture(kmat, name, a, z, dens, nlmat, wmat);
288}
289void TFluka::Mixture(Int_t& kmat, const char *name, Double_t *a,
290 Double_t *z, Double_t dens, Int_t nlmat, Double_t *wmat) {
291//
292 fGeometryManager
293 ->Mixture(kmat, name, a, z, dens, nlmat, wmat);
294}
295
296void TFluka::Medium(Int_t& kmed, const char *name, Int_t nmat,
297 Int_t isvol, Int_t ifield, Double_t fieldm, Double_t tmaxfd,
298 Double_t stemax, Double_t deemax, Double_t epsil,
299 Double_t stmin, Float_t* ubuf, Int_t nbuf) {
300 //
301 fGeometryManager
302 ->Medium(kmed, name, nmat, isvol, ifield, fieldm, tmaxfd, stemax, deemax,
303 epsil, stmin, ubuf, nbuf);
304}
305void TFluka::Medium(Int_t& kmed, const char *name, Int_t nmat,
306 Int_t isvol, Int_t ifield, Double_t fieldm, Double_t tmaxfd,
307 Double_t stemax, Double_t deemax, Double_t epsil,
308 Double_t stmin, Double_t* ubuf, Int_t nbuf) {
309 //
310 fGeometryManager
311 ->Medium(kmed, name, nmat, isvol, ifield, fieldm, tmaxfd, stemax, deemax,
312 epsil, stmin, ubuf, nbuf);
313}
314
315void TFluka::Matrix(Int_t& krot, Double_t thetaX, Double_t phiX,
316 Double_t thetaY, Double_t phiY, Double_t thetaZ,
317 Double_t phiZ) {
318//
319 fGeometryManager
320 ->Matrix(krot, thetaX, phiX, thetaY, phiY, thetaZ, phiZ);
321}
322
323void TFluka::Gstpar(Int_t itmed, const char *param, Double_t parval) {
324//
325 fGeometryManager->Gstpar(itmed, param, parval);
326}
327
328// functions from GGEOM
329Int_t TFluka::Gsvolu(const char *name, const char *shape, Int_t nmed,
330 Float_t *upar, Int_t np) {
331//
6d4d27f2 332// fVolumeMediaMap[TString(name)] = nmed;
fee5ea25 333 if (fVerbosityLevel >= 3)
b0d8df96 334 printf("TFluka::Gsvolu() name = %s, nmed = %d\n", name, nmed);
335
6d4d27f2 336 TClonesArray &lvols = *fVolumeMediaMap;
337 new(lvols[fNVolumes++])
338 FlukaVolume(name, nmed);
339 return fGeometryManager->Gsvolu(name, shape, nmed, upar, np);
bf3aa28e 340}
341Int_t TFluka::Gsvolu(const char *name, const char *shape, Int_t nmed,
342 Double_t *upar, Int_t np) {
343//
6d4d27f2 344 TClonesArray &lvols = *fVolumeMediaMap;
345 new(lvols[fNVolumes++])
346 FlukaVolume(name, nmed);
347
348 return fGeometryManager->Gsvolu(name, shape, nmed, upar, np);
bf3aa28e 349}
350
351void TFluka::Gsdvn(const char *name, const char *mother, Int_t ndiv,
352 Int_t iaxis) {
353//
b0d8df96 354// The medium of the daughter is the one of the mother
355 Int_t volid = TFluka::VolId(mother);
356 Int_t med = TFluka::VolId2Mate(volid);
357 TClonesArray &lvols = *fVolumeMediaMap;
358 new(lvols[fNVolumes++])
359 FlukaVolume(name, med);
6d4d27f2 360 fGeometryManager->Gsdvn(name, mother, ndiv, iaxis);
bf3aa28e 361}
362
363void TFluka::Gsdvn2(const char *name, const char *mother, Int_t ndiv,
364 Int_t iaxis, Double_t c0i, Int_t numed) {
365//
6d4d27f2 366 TClonesArray &lvols = *fVolumeMediaMap;
367 new(lvols[fNVolumes++])
368 FlukaVolume(name, numed);
369 fGeometryManager->Gsdvn2(name, mother, ndiv, iaxis, c0i, numed);
bf3aa28e 370}
371
372void TFluka::Gsdvt(const char *name, const char *mother, Double_t step,
373 Int_t iaxis, Int_t numed, Int_t ndvmx) {
6d4d27f2 374//
375 TClonesArray &lvols = *fVolumeMediaMap;
376 new(lvols[fNVolumes++])
377 FlukaVolume(name, numed);
378 fGeometryManager->Gsdvt(name, mother, step, iaxis, numed, ndvmx);
bf3aa28e 379}
380
381void TFluka::Gsdvt2(const char *name, const char *mother, Double_t step,
382 Int_t iaxis, Double_t c0, Int_t numed, Int_t ndvmx) {
383//
6d4d27f2 384 TClonesArray &lvols = *fVolumeMediaMap;
385 new(lvols[fNVolumes++])
386 FlukaVolume(name, numed);
387 fGeometryManager->Gsdvt2(name, mother, step, iaxis, c0, numed, ndvmx);
bf3aa28e 388}
389
390void TFluka::Gsord(const char *name, Int_t iax) {
391//
392 fGeometryManager->Gsord(name, iax);
393}
394
395void TFluka::Gspos(const char *name, Int_t nr, const char *mother,
396 Double_t x, Double_t y, Double_t z, Int_t irot,
397 const char *konly) {
398//
399 fGeometryManager->Gspos(name, nr, mother, x, y, z, irot, konly);
400}
401
402void TFluka::Gsposp(const char *name, Int_t nr, const char *mother,
403 Double_t x, Double_t y, Double_t z, Int_t irot,
404 const char *konly, Float_t *upar, Int_t np) {
405 //
406 fGeometryManager->Gsposp(name, nr, mother, x, y, z, irot, konly, upar, np);
407}
408void TFluka::Gsposp(const char *name, Int_t nr, const char *mother,
409 Double_t x, Double_t y, Double_t z, Int_t irot,
410 const char *konly, Double_t *upar, Int_t np) {
411 //
412 fGeometryManager->Gsposp(name, nr, mother, x, y, z, irot, konly, upar, np);
413}
414
415void TFluka::Gsbool(const char* onlyVolName, const char* manyVolName) {
416//
417 fGeometryManager->Gsbool(onlyVolName, manyVolName);
418}
419
420void TFluka::SetCerenkov(Int_t itmed, Int_t npckov, Float_t *ppckov,
421 Float_t *absco, Float_t *effic, Float_t *rindex) {
422//
423 fGeometryManager->SetCerenkov(itmed, npckov, ppckov, absco, effic, rindex);
424}
425void TFluka::SetCerenkov(Int_t itmed, Int_t npckov, Double_t *ppckov,
426 Double_t *absco, Double_t *effic, Double_t *rindex) {
427//
428 fGeometryManager->SetCerenkov(itmed, npckov, ppckov, absco, effic, rindex);
429}
430
431// Euclid
432void TFluka::WriteEuclid(const char* fileName, const char* topVol,
433 Int_t number, Int_t nlevel) {
434//
435 fGeometryManager->WriteEuclid(fileName, topVol, number, nlevel);
436}
437
438
439
27b2f7fe 440//_____________________________________________________________________________
441// methods needed by the stepping
442//____________________________________________________________________________
6d4d27f2 443
27b2f7fe 444Int_t TFluka::GetMedium() const {
b0d8df96 445//
446// Get the medium number for the current fluka region
447//
6d4d27f2 448 FGeometryInit* flugg = FGeometryInit::GetInstance();
449 return flugg->GetMedium(fCurrentFlukaRegion);
27b2f7fe 450}
bf3aa28e 451
452
453
454//____________________________________________________________________________
1de0a072 455// particle table usage
bf3aa28e 456// ID <--> PDG transformations
b9d0a01d 457//_____________________________________________________________________________
458Int_t TFluka::IdFromPDG(Int_t pdg) const
459{
72f84f29 460 //
461 // Return Fluka code from PDG and pseudo ENDF code
462
463 // Catch the feedback photons
464 if (pdg == 50000051) return (-1);
465 // MCIHAD() goes from pdg to fluka internal.
466 Int_t intfluka = mcihad(pdg);
467 // KPTOIP array goes from internal to official
468 return GetFlukaKPTOIP(intfluka);
b9d0a01d 469}
470
b9d0a01d 471Int_t TFluka::PDGFromId(Int_t id) const
472{
473 //
f9cb2fec 474 // Return PDG code and pseudo ENDF code from Fluka code
c230803a 475
5929ad29 476 // IPTOKP array goes from official to internal
f906eae0 477
478 if (id == -1) {
479// Cerenkov photon
480 if (fVerbosityLevel >= 1)
481 printf("\n PDGFromId: Cerenkov Photon \n");
482 return 50000050;
483 }
5929ad29 484// Error id
b0d8df96 485 if (id == 0) {
f906eae0 486 if (fVerbosityLevel >= 1)
487 printf("PDGFromId: Error id = 0\n");
b0d8df96 488 return -1;
489 }
5929ad29 490// Good id
f906eae0 491 Int_t intfluka = GetFlukaIPTOKP(id);
b0d8df96 492 if (intfluka == 0) {
f906eae0 493 if (fVerbosityLevel >= 1)
494 printf("PDGFromId: Error intfluka = 0: %d\n", id);
b0d8df96 495 return -1;
6015a930 496 } else if (intfluka < 0) {
f906eae0 497 if (fVerbosityLevel >= 1)
498 printf("PDGFromId: Error intfluka < 0: %d\n", id);
6015a930 499 return -1;
b0d8df96 500 }
fee5ea25 501 if (fVerbosityLevel >= 3)
f906eae0 502 printf("mpdgha called with %d %d \n", id, intfluka);
5929ad29 503 // MPDGHA() goes from fluka internal to pdg.
f906eae0 504 return mpdgha(intfluka);
6d4d27f2 505}
506
1de0a072 507//_____________________________________________________________________________
508// methods for physics management
509//____________________________________________________________________________
510//
511// set methods
512//
513
514void TFluka::SetProcess(const char* flagName, Int_t flagValue)
515{
516 Int_t i;
517 if (iNbOfProc < 100) {
518 for (i=0; i<iNbOfProc; i++) {
519 if (strcmp(&sProcessFlag[i][0],flagName) == 0) {
520 iProcessValue[iNbOfProc] = flagValue;
521 goto fin;
522 }
523 }
524 strcpy(&sProcessFlag[iNbOfProc][0],flagName);
525 iProcessValue[iNbOfProc++] = flagValue;
526 }
527 else
528 cout << "Nb of SetProcess calls exceeds 100 - ignored" << endl;
529fin:
530 iNbOfProc = iNbOfProc;
531}
532
533void TFluka::SetCut(const char* cutName, Double_t cutValue)
534{
535 Int_t i;
536 if (iNbOfCut < 100) {
537 for (i=0; i<iNbOfCut; i++) {
538 if (strcmp(&sCutFlag[i][0],cutName) == 0) {
539 fCutValue[iNbOfCut] = cutValue;
540 goto fin;
541 }
542 }
543 strcpy(&sCutFlag[iNbOfCut][0],cutName);
544 fCutValue[iNbOfCut++] = cutValue;
545 }
546 else
547 cout << "Nb of SetCut calls exceeds 100 - ignored" << endl;
548fin:
549 iNbOfCut = iNbOfCut;
550}
551
552Double_t TFluka::Xsec(char*, Double_t, Int_t, Int_t)
553{
554 printf("WARNING: Xsec not yet implemented !\n"); return -1.;
555}
556
557
558void TFluka::InitPhysics()
559{
560// Last material number taken from the "corealice.inp" file, presently 31
561// !!! it should be available from Flugg !!!
cbc3a17e 562 Int_t i, j, k;
563 Double_t fCut;
1de0a072 564 Float_t fLastMaterial = 31.0;
cbc3a17e 565
1de0a072 566// construct file names
567 TString sAliceInp = getenv("ALICE_ROOT");
568 sAliceInp +="/TFluka/input/";
569 TString sAliceCoreInp = sAliceInp;
570 sAliceInp += GetInputFileName();
571 sAliceCoreInp += GetCoreInputFileName();
572 ifstream AliceCoreInp(sAliceCoreInp.Data());
573 ofstream AliceInp(sAliceInp.Data());
574
575// copy core input file until (not included) START card
576 Char_t sLine[255];
577 Float_t fEventsPerRun;
578 while (AliceCoreInp.getline(sLine,255)) {
579 if (strncmp(sLine,"START",5) != 0)
580 AliceInp << sLine << endl;
581 else {
582 sscanf(sLine+10,"%10f",&fEventsPerRun);
583 goto fin;
584 }
585 } //end of while
586
587fin:
588// in G3 the process control values meaning can be different for
589// different processes, but for most of them is:
590// 0 process is not activated
591// 1 process is activated WITH generation of secondaries
592// 2 process is activated WITHOUT generation of secondaries
593// if process does not generate secondaries => 1 same as 2
594//
595// Exceptions:
596// MULS: also 3
597// LOSS: also 3, 4
598// RAYL: only 0,1
599// HADR: may be > 2
600//
601
602// Loop over number of SetProcess calls
603 AliceInp << "*----------------------------------------------------------------------------- ";
604 AliceInp << endl;
605 AliceInp << "*----- The following data are generated from SetProcess and SetCut calls ----- ";
606 AliceInp << endl;
607 AliceInp << "*----------------------------------------------------------------------------- ";
608 AliceInp << endl;
cbc3a17e 609 for (i=0; i<iNbOfProc; i++) {
1de0a072 610
611 // annihilation
612 // G3 default value: 1
613 // G4 processes: G4eplusAnnihilation/G4IeplusAnnihilation
614 // Particles: e+
615 // Physics: EM
cbc3a17e 616 // flag = 0 no annihilation
617 // flag = 1 annihilation, decays processed
618 // flag = 2 annihilation, no decay product stored
1de0a072 619 // gMC ->SetProcess("ANNI",1); // EMFCUT -1. 0. 0. 3. lastmat 0. ANNH-THR
cbc3a17e 620 if (strncmp(&sProcessFlag[i][0],"ANNI",4) == 0) {
621 if (iProcessValue[i] == 1 || iProcessValue[i] == 2) {
622 AliceInp << "*";
623 AliceInp << endl;
624 AliceInp << "*Kinetic energy threshold (GeV) for e+ annihilation - resets to default=0.";
625 AliceInp << endl;
626 AliceInp << "*Generated from call: SetProcess('ANNI',1) or SetProcess('ANNI',2)";
627 AliceInp << endl;
628 AliceInp << setw(10) << "EMFCUT ";
629 AliceInp << setiosflags(ios::scientific) << setprecision(5);
630 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
631 AliceInp << setw(10) << -1.0; // kinetic energy threshold (GeV) for e+ annihilation (resets to default=0)
632 AliceInp << setw(10) << 0.0; // not used
633 AliceInp << setw(10) << 0.0; // not used
634 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
635 AliceInp << setw(10) << setprecision(2);
636 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
637 AliceInp << setprecision(1);
638 AliceInp << setw(10) << 1.0; // step length in assigning indices
639 AliceInp << setw(8) << "ANNH-THR";
640 AliceInp << endl;
641 }
642 else if (iProcessValue[i] == 0) {
643 AliceInp << "*";
644 AliceInp << endl;
645 AliceInp << "*No annihilation - no FLUKA card generated";
646 AliceInp << endl;
647 AliceInp << "*Generated from call: SetProcess('ANNI',0)";
648 AliceInp << endl;
649 }
650 else {
651 AliceInp << "*";
652 AliceInp << endl;
653 AliceInp << "*Illegal flag value in SetProcess('ANNI',?) call.";
654 AliceInp << endl;
655 AliceInp << "*No FLUKA card generated";
656 AliceInp << endl;
657 }
1de0a072 658 }
659
cbc3a17e 660 // bremsstrahlung and pair production are both activated
1de0a072 661 // G3 default value: 1
662 // G4 processes: G4eBremsstrahlung/G4IeBremsstrahlung,
663 // G4MuBremsstrahlung/G4IMuBremsstrahlung,
664 // G4LowEnergyBremstrahlung
665 // Particles: e-/e+; mu+/mu-
666 // Physics: EM
cbc3a17e 667 // flag = 0 no bremsstrahlung
668 // flag = 1 bremsstrahlung, photon processed
669 // flag = 2 bremsstrahlung, no photon stored
1de0a072 670 // gMC ->SetProcess("BREM",1); // PAIRBREM 2. 0. 0. 3. lastmat
671 // EMFCUT -1. 0. 0. 3. lastmat 0. ELPO-THR
cbc3a17e 672 // G3 default value: 1
673 // G4 processes: G4GammaConversion,
674 // G4MuPairProduction/G4IMuPairProduction
675 // G4LowEnergyGammaConversion
676 // Particles: gamma, mu
677 // Physics: EM
678 // flag = 0 no delta rays
679 // flag = 1 delta rays, secondaries processed
680 // flag = 2 delta rays, no secondaries stored
681 // gMC ->SetProcess("PAIR",1); // PAIRBREM 1. 0. 0. 3. lastmat
682 // EMFCUT 0. 0. -1. 3. lastmat 0. PHOT-THR
683 else if ((strncmp(&sProcessFlag[i][0],"PAIR",4) == 0) && (iProcessValue[i] == 1 || iProcessValue[i] == 2)) {
684 for (j=0; j<iNbOfProc; j++) {
685 if ((strncmp(&sProcessFlag[j][0],"BREM",4) == 0) && (iProcessValue[j] == 1 || iProcessValue[j] == 2)) {
686 AliceInp << "*";
687 AliceInp << endl;
688 AliceInp << "*Bremsstrahlung and pair production by muons and charged hadrons both activated";
689 AliceInp << endl;
690 AliceInp << "*Generated from call: SetProcess('BREM',1) and SetProcess('PAIR',1)";
691 AliceInp << endl;
692 AliceInp << "*Energy threshold set by call SetCut('BCUTM',cut) or set to 0.";
693 AliceInp << endl;
694 AliceInp << "*Energy threshold set by call SetCut('PPCUTM',cut) or set to 0.";
695 AliceInp << endl;
696 AliceInp << setw(10) << "PAIRBREM ";
697 AliceInp << setiosflags(ios::scientific) << setprecision(5);
698 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
699 AliceInp << setw(10) << 3.0; // bremsstrahlung and pair production by muons and charged hadrons both are activated
700 // direct pair production by muons
701 // G4 particles: "e-", "e+"
702 // G3 default value: 0.01 GeV
703 //gMC ->SetCut("PPCUTM",cut); // total energy cut for direct pair prod. by muons
704 fCut = 0.0;
705 for (k=0; k<iNbOfCut; k++) {
706 if (strncmp(&sCutFlag[k][0],"PPCUTM",6) == 0) fCut = fCutValue[k];
707 }
708 AliceInp << setiosflags(ios::scientific) << setprecision(5);
709 AliceInp << setw(10) << fCut; // e+, e- kinetic energy threshold (in GeV) for explicit pair production.
710 // muon and hadron bremsstrahlung
711 // G4 particles: "gamma"
712 // G3 default value: CUTGAM=0.001 GeV
713 //gMC ->SetCut("BCUTM",cut); // cut for muon and hadron bremsstrahlung
714 fCut = 0.0;
715 for (k=0; k<iNbOfCut; k++) {
716 if (strncmp(&sCutFlag[k][0],"BCUTM",5) == 0) fCut = fCutValue[k];
717 }
718 AliceInp << setiosflags(ios::scientific) << setprecision(5);
719 AliceInp << setw(10) << fCut; // photon energy threshold (GeV) for explicit bremsstrahlung production
720 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
721 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
722 AliceInp << setw(10) << setprecision(2);
723 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
724 AliceInp << endl;
725
726 // for e+ and e-
727 AliceInp << "*";
728 AliceInp << endl;
729 AliceInp << "*Kinetic energy threshold (GeV) for e+/e- bremsstrahlung - resets to default=0.";
730 AliceInp << endl;
731 AliceInp << "*Generated from call: SetProcess('BREM',1);";
732 AliceInp << endl;
733 AliceInp << setw(10) << "EMFCUT ";
734 fCut = -1.0;
735 for (k=0; k<iNbOfCut; k++) {
736 if (strncmp(&sCutFlag[k][0],"BCUTE",5) == 0) fCut = fCutValue[k];
737 }
738 AliceInp << setiosflags(ios::scientific) << setprecision(5);
739 AliceInp << setw(10) << fCut; // kinetic energy threshold (GeV) for e+/e- bremsstrahlung (resets to default=0)
740 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
741 AliceInp << setw(10) << 0.0; // not used
742 AliceInp << setw(10) << 0.0; // not used
743 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
744 AliceInp << setw(10) << setprecision(2);
745 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
746 AliceInp << setprecision(1);
747 AliceInp << setw(10) << 1.0; // step length in assigning indices
748 AliceInp << setw(8) << "ELPO-THR";
749 AliceInp << endl;
750
751 // for e+ and e-
752 AliceInp << "*";
753 AliceInp << endl;
754 AliceInp << "*Pair production by electrons is activated";
755 AliceInp << endl;
756 AliceInp << "*Generated from call: SetProcess('PAIR',1);";
757 AliceInp << endl;
758 AliceInp << setw(10) << "EMFCUT ";
759 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
760 AliceInp << setw(10) << 0.0; // energy threshold (GeV) for Compton scattering (= 0.0 : ignored)
761 AliceInp << setw(10) << 0.0; // energy threshold (GeV) for Photoelectric (= 0.0 : ignored)
762 fCut = -1.0;
763 for (j=0; j<iNbOfCut; j++) {
764 if (strncmp(&sCutFlag[j][0],"CUTGAM",6) == 0) fCut = fCutValue[j];
765 }
766 AliceInp << setiosflags(ios::scientific) << setprecision(5);
767 AliceInp << setw(10) << fCut; // energy threshold (GeV) for gamma pair production (< 0.0 : resets to default, = 0.0 : ignored)
768 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
769 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
770 AliceInp << setprecision(2);
771 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
772 AliceInp << setprecision(1);
773 AliceInp << setw(10) << 1.0; // step length in assigning indices
774 AliceInp << setw(8) << "PHOT-THR";
775 AliceInp << endl;
776 goto BOTH;
777 } // end of if for BREM
778 } // end of loop for BREM
779
780 // only pair production by muons and charged hadrons is activated
781 AliceInp << "*";
782 AliceInp << endl;
783 AliceInp << "*Pair production by muons and charged hadrons is activated";
784 AliceInp << endl;
785 AliceInp << "*Generated from call: SetProcess('PAIR',1) or SetProcess('PAIR',2)";
1de0a072 786 AliceInp << endl;
cbc3a17e 787 AliceInp << "*Energy threshold set by call SetCut('PPCUTM',cut) or set to 0.";
1de0a072 788 AliceInp << endl;
789 AliceInp << setw(10) << "PAIRBREM ";
790 AliceInp << setiosflags(ios::scientific) << setprecision(5);
791 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
cbc3a17e 792 AliceInp << setw(10) << 1.0; // pair production by muons and charged hadrons is activated
793 // direct pair production by muons
794 // G4 particles: "e-", "e+"
795 // G3 default value: 0.01 GeV
796 //gMC ->SetCut("PPCUTM",cut); // total energy cut for direct pair prod. by muons
797 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
798 AliceInp << setw(10) << 0.0; // e+, e- kinetic energy threshold (in GeV) for explicit pair production.
1de0a072 799 AliceInp << setw(10) << 0.0; // no explicit bremsstrahlung production is simulated
800 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
cbc3a17e 801 AliceInp << setprecision(2);
1de0a072 802 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
803 AliceInp << endl;
cbc3a17e 804
1de0a072 805 // for e+ and e-
cbc3a17e 806 AliceInp << "*";
807 AliceInp << endl;
808 AliceInp << "*Pair production by electrons is activated";
1de0a072 809 AliceInp << endl;
cbc3a17e 810 AliceInp << "*Generated from call: SetProcess('PAIR',1) or SetProcess('PAIR',2)";
1de0a072 811 AliceInp << endl;
812 AliceInp << setw(10) << "EMFCUT ";
cbc3a17e 813 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
814 AliceInp << setw(10) << 0.0; // energy threshold (GeV) for Compton scattering (= 0.0 : ignored)
815 AliceInp << setw(10) << 0.0; // energy threshold (GeV) for Photoelectric (= 0.0 : ignored)
816
817 fCut = -1.0;
818 for (j=0; j<iNbOfCut; j++) {
819 if (strncmp(&sCutFlag[j][0],"CUTGAM",6) == 0) fCut = fCutValue[j];
820 }
1de0a072 821 AliceInp << setiosflags(ios::scientific) << setprecision(5);
cbc3a17e 822 AliceInp << setw(10) << fCut; // energy threshold (GeV) for gamma pair production (< 0.0 : resets to default, = 0.0 : ignored)
1de0a072 823 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1de0a072 824 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
cbc3a17e 825 AliceInp << setprecision(2);
1de0a072 826 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
827 AliceInp << setprecision(1);
cbc3a17e 828 AliceInp << setw(10) << 1.0; // step length in assigning indices
829 AliceInp << setw(8) << "PHOT-THR";
1de0a072 830 AliceInp << endl;
cbc3a17e 831
832BOTH:
833 k = 0;
834 } // end of if for PAIR
835
836
837
838 // bremsstrahlung
839 // G3 default value: 1
840 // G4 processes: G4eBremsstrahlung/G4IeBremsstrahlung,
841 // G4MuBremsstrahlung/G4IMuBremsstrahlung,
842 // G4LowEnergyBremstrahlung
843 // Particles: e-/e+; mu+/mu-
844 // Physics: EM
845 // flag = 0 no bremsstrahlung
846 // flag = 1 bremsstrahlung, photon processed
847 // flag = 2 bremsstrahlung, no photon stored
848 // gMC ->SetProcess("BREM",1); // PAIRBREM 2. 0. 0. 3. lastmat
849 // EMFCUT -1. 0. 0. 3. lastmat 0. ELPO-THR
850 else if (strncmp(&sProcessFlag[i][0],"BREM",4) == 0) {
851 for (j=0; j<iNbOfProc; j++) {
852 if ((strncmp(&sProcessFlag[j][0],"PAIR",4) == 0) && iProcessValue[j] == 1) goto NOBREM;
853 }
854 if (iProcessValue[i] == 1 || iProcessValue[i] == 2) {
855 AliceInp << "*";
856 AliceInp << endl;
857 AliceInp << "*Bremsstrahlung by muons and charged hadrons is activated";
858 AliceInp << endl;
859 AliceInp << "*Generated from call: SetProcess('BREM',1) or SetProcess('BREM',2)";
860 AliceInp << endl;
861 AliceInp << "*Energy threshold set by call SetCut('BCUTM',cut) or set to 0.";
862 AliceInp << endl;
863 AliceInp << setw(10) << "PAIRBREM ";
864 AliceInp << setiosflags(ios::scientific) << setprecision(5);
865 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
866 AliceInp << setw(10) << 2.0; // bremsstrahlung by muons and charged hadrons is activated
867 AliceInp << setw(10) << 0.0; // no meaning
868 // muon and hadron bremsstrahlung
869 // G4 particles: "gamma"
870 // G3 default value: CUTGAM=0.001 GeV
871 //gMC ->SetCut("BCUTM",cut); // cut for muon and hadron bremsstrahlung
872 fCut = 0.0;
873 for (j=0; j<iNbOfCut; j++) {
874 if (strncmp(&sCutFlag[j][0],"BCUTM",5) == 0) fCut = fCutValue[j];
875 }
876 AliceInp << setw(10) << fCut; // photon energy threshold (GeV) for explicit bremsstrahlung production
877 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
878 AliceInp << setw(10) << setprecision(2);
879 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
880 AliceInp << endl;
881
882 // for e+ and e-
883 AliceInp << "*";
884 AliceInp << endl;
885 AliceInp << "*Kinetic energy threshold (GeV) for e+/e- bremsstrahlung - resets to default=0.";
886 AliceInp << endl;
887 AliceInp << "*Generated from call: SetProcess('BREM',1);";
888 AliceInp << endl;
889 AliceInp << setw(10) << "EMFCUT ";
890 AliceInp << setiosflags(ios::scientific) << setprecision(5);
891 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
892 AliceInp << setw(10) << -1.0; // kinetic energy threshold (GeV) for e+/e- bremsstrahlung (resets to default=0)
893 AliceInp << setw(10) << 0.0; // not used
894 AliceInp << setw(10) << 0.0; // not used
895 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
896 AliceInp << setw(10) << setprecision(2);
897 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
898 AliceInp << setprecision(1);
899 AliceInp << setw(10) << 1.0; // step length in assigning indices
900 AliceInp << setw(8) << "ELPO-THR";
901 AliceInp << endl;
902 }
903 else if (iProcessValue[i] == 0) {
904 AliceInp << "*";
905 AliceInp << endl;
906 AliceInp << "*No bremsstrahlung - no FLUKA card generated";
907 AliceInp << endl;
908 AliceInp << "*Generated from call: SetProcess('BREM',0)";
909 AliceInp << endl;
910 }
911 else {
912 AliceInp << "*";
913 AliceInp << endl;
914 AliceInp << "*Illegal flag value in SetProcess('BREM',?) call.";
915 AliceInp << endl;
916 AliceInp << "*No FLUKA card generated";
917 AliceInp << endl;
918 }
919NOBREM:
920 j = 0;
921 } // end of else if (strncmp(&sProcessFlag[i][0],"BREM",4) == 0)
922
1de0a072 923
cbc3a17e 924 // Cerenkov photon generation
925 // G3 default value: 0
926 // G4 process: G4Cerenkov
927 //
928 // Particles: charged
929 // Physics: Optical
930 // flag = 0 no Cerenkov photon generation
931 // flag = 1 Cerenkov photon generation
932 // flag = 2 Cerenkov photon generation with primary stopped at each step
933 //xx gMC ->SetProcess("CKOV",1); // ??? Cerenkov photon generation
934 else if (strncmp(&sProcessFlag[i][0],"CKOV",4) == 0) {
935 if (iProcessValue[i] == 1 || iProcessValue[i] == 2) {
936 AliceInp << "*";
937 AliceInp << endl;
938 AliceInp << "*Cerenkov photon generation";
939 AliceInp << endl;
940 AliceInp << "*Generated from call: SetProcess('CKOV',1) or SetProcess('CKOV',2)";
941 AliceInp << endl;
942 AliceInp << setw(10) << "OPT-PROD ";
943 AliceInp << setiosflags(ios::scientific) << setprecision(5);
944 AliceInp << setw(10) << 2.07e-9 ; // minimum Cerenkov photon emission energy (in GeV!). Default: 2.07E-9 GeV (corresponding to 600 nm)
945 AliceInp << setw(10) << 4.96e-9; // maximum Cerenkov photon emission energy (in GeV!). Default: 4.96E-9 GeV (corresponding to 250 nm)
946 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
947 AliceInp << setw(10) << 0.0; // not used
948 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
949 AliceInp << setprecision(2);
950 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
951 AliceInp << setprecision(1);
952 AliceInp << setw(10) << 1.0; // step length in assigning indices
953 AliceInp << setw(8) << "CERENKOV";
954 AliceInp << endl;
955 }
956 else if (iProcessValue[i] == 0) {
957 AliceInp << "*";
958 AliceInp << endl;
959 AliceInp << "*No Cerenkov photon generation";
960 AliceInp << endl;
961 AliceInp << "*Generated from call: SetProcess('CKOV',0)";
962 AliceInp << endl;
963 AliceInp << setw(10) << "OPT-PROD ";
964 AliceInp << setiosflags(ios::scientific) << setprecision(5);
965 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
966 AliceInp << setw(10) << 0.0; // not used
967 AliceInp << setw(10) << 0.0; // not used
968 AliceInp << setw(10) << 0.0; // not used
969 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
970 AliceInp << setprecision(2);
971 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
972 AliceInp << setprecision(1);
973 AliceInp << setw(10) << 1.0; // step length in assigning indices
974 AliceInp << setw(8) << "CERE-OFF";
975 AliceInp << endl;
976 }
977 else {
978 AliceInp << "*";
979 AliceInp << endl;
980 AliceInp << "*Illegal flag value in SetProcess('CKOV',?) call.";
981 AliceInp << endl;
982 AliceInp << "*No FLUKA card generated";
983 AliceInp << endl;
984 }
985 } // end of else if (strncmp(&sProcessFlag[i][0],"CKOV",4) == 0)
986
987
1de0a072 988 // Compton scattering
989 // G3 default value: 1
990 // G4 processes: G4ComptonScattering,
991 // G4LowEnergyCompton,
992 // G4PolarizedComptonScattering
993 // Particles: gamma
cbc3a17e 994 // Physics: EM
995 // flag = 0 no Compton scattering
996 // flag = 1 Compton scattering, electron processed
997 // flag = 2 Compton scattering, no electron stored
1de0a072 998 // gMC ->SetProcess("COMP",1); // EMFCUT -1. 0. 0. 3. lastmat 0. PHOT-THR
cbc3a17e 999 else if (strncmp(&sProcessFlag[i][0],"COMP",4) == 0) {
1000 if (iProcessValue[i] == 1 || iProcessValue[i] == 2) {
1001 AliceInp << "*";
1002 AliceInp << endl;
1003 AliceInp << "*Energy threshold (GeV) for Compton scattering - resets to default=0.";
1004 AliceInp << endl;
1005 AliceInp << "*Generated from call: SetProcess('COMP',1);";
1006 AliceInp << endl;
1007 AliceInp << setw(10) << "EMFCUT ";
1008 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1009 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1010 AliceInp << setw(10) << -1.0; // energy threshold (GeV) for Compton scattering - resets to default=0.
1011 AliceInp << setw(10) << 0.0; // not used
1012 AliceInp << setw(10) << 0.0; // not used
1013 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
1014 AliceInp << setprecision(2);
1015 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
1016 AliceInp << setprecision(1);
1017 AliceInp << setw(10) << 1.0; // step length in assigning indices
1018 AliceInp << setw(8) << "PHOT-THR";
1019 AliceInp << endl;
1020 }
1021 else if (iProcessValue[i] == 0) {
1022 AliceInp << "*";
1023 AliceInp << endl;
1024 AliceInp << "*No Compton scattering - no FLUKA card generated";
1025 AliceInp << endl;
1026 AliceInp << "*Generated from call: SetProcess('COMP',0)";
1027 AliceInp << endl;
1028 }
1029 else {
1030 AliceInp << "*";
1031 AliceInp << endl;
1032 AliceInp << "*Illegal flag value in SetProcess('COMP',?) call.";
1033 AliceInp << endl;
1034 AliceInp << "*No FLUKA card generated";
1035 AliceInp << endl;
1036 }
1037 } // end of else if (strncmp(&sProcessFlag[i][0],"COMP",4) == 0)
1de0a072 1038
1039 // decay
1040 // G3 default value: 1
1041 // G4 process: G4Decay
1042 //
1043 // Particles: all which decay is applicable for
1044 // Physics: General
cbc3a17e 1045 // flag = 0 no decays
1046 // flag = 1 decays, secondaries processed
1047 // flag = 2 decays, no secondaries stored
1de0a072 1048 //gMC ->SetProcess("DCAY",1); // not available
1049 else if ((strncmp(&sProcessFlag[i][0],"DCAY",4) == 0) && iProcessValue[i] == 1)
1050 cout << "SetProcess for flag=" << &sProcessFlag[i][0] << " value=" << iProcessValue[i] << " not avaliable!" << endl;
1051
1052 // delta-ray
1053 // G3 default value: 2
1054 // !! G4 treats delta rays in different way
1055 // G4 processes: G4eIonisation/G4IeIonization,
1056 // G4MuIonisation/G4IMuIonization,
1057 // G4hIonisation/G4IhIonisation
cbc3a17e 1058 // Particles: charged
1de0a072 1059 // Physics: EM
cbc3a17e 1060 // flag = 0 no energy loss
1061 // flag = 1 restricted energy loss fluctuations
1062 // flag = 2 complete energy loss fluctuations
1063 // flag = 3 same as 1
1064 // flag = 4 no energy loss fluctuations
1de0a072 1065 // gMC ->SetProcess("DRAY",0); // DELTARAY 1.E+6 0. 0. 3. lastmat 0.
cbc3a17e 1066 else if (strncmp(&sProcessFlag[i][0],"DRAY",4) == 0) {
1067 if (iProcessValue[i] == 0 || iProcessValue[i] == 4) {
1068 AliceInp << "*";
1069 AliceInp << endl;
1070 AliceInp << "*Kinetic energy threshold (GeV) for delta ray production";
1071 AliceInp << endl;
1072 AliceInp << "*Generated from call: SetProcess('DRAY',0) or SetProcess('DRAY',4)";
1073 AliceInp << endl;
1074 AliceInp << "*No delta ray production by muons - threshold set artificially high";
1075 AliceInp << endl;
1076 AliceInp << setw(10) << "DELTARAY ";
1077 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1078 AliceInp << setw(10) << 1.0e+6; // kinetic energy threshold (GeV) for delta ray production (discrete energy transfer)
1079 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1080 AliceInp << setw(10) << 0.0; // ignored
1081 AliceInp << setw(10) << 0.0; // ignored
1082 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
1083 AliceInp << setw(10) << setprecision(2);
1084 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
1085 AliceInp << setprecision(1);
1086 AliceInp << setw(10) << 1.0; // step length in assigning indices
1087 AliceInp << endl;
1088 }
1089 else if (iProcessValue[i] == 1 || iProcessValue[i] == 2 || iProcessValue[i] == 3) {
1090 AliceInp << "*";
1091 AliceInp << endl;
1092 AliceInp << "*Kinetic energy threshold (GeV) for delta ray production";
1093 AliceInp << endl;
1094 AliceInp << "*Generated from call: SetProcess('DRAY',flag), flag=1,2,3";
1095 AliceInp << endl;
1096 AliceInp << "*Delta ray production by muons switched on";
1097 AliceInp << endl;
1098 AliceInp << "*Energy threshold set by call SetCut('DCUTM',cut) or set to 0.";
1099 AliceInp << endl;
1100 AliceInp << setw(10) << "DELTARAY ";
1101 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1102 fCut = 1.0e+6;
1103 for (j=0; j<iNbOfCut; j++) {
1104 if (strncmp(&sCutFlag[j][0],"DCUTM",5) == 0) fCut = fCutValue[j];
1105 }
1106 AliceInp << setw(10) << fCut; // kinetic energy threshold (GeV) for delta ray production (discrete energy transfer)
1107 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1108 AliceInp << setw(10) << 0.0; // ignored
1109 AliceInp << setw(10) << 0.0; // ignored
1110 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
1111 AliceInp << setw(10) << setprecision(2);
1112 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
1113 AliceInp << setprecision(1);
1114 AliceInp << setw(10) << 1.0; // step length in assigning indices
1115 AliceInp << endl;
1116 }
1117 else {
1118 AliceInp << "*";
1119 AliceInp << endl;
1120 AliceInp << "*Illegal flag value in SetProcess('DRAY',?) call.";
1121 AliceInp << endl;
1122 AliceInp << "*No FLUKA card generated";
1123 AliceInp << endl;
1124 }
1125 } // end of else if (strncmp(&sProcessFlag[i][0],"DRAY",4) == 0)
1de0a072 1126
cbc3a17e 1127 // hadronic process
1128 // G3 default value: 1
1129 // G4 processes: all defined by TG4PhysicsConstructorHadron
1130 //
1131 // Particles: hadrons
1132 // Physics: Hadron
1133 // flag = 0 no multiple scattering
1134 // flag = 1 hadronic interactions, secondaries processed
1135 // flag = 2 hadronic interactions, no secondaries stored
1136 // gMC ->SetProcess("HADR",1); // ??? hadronic process
1137 //Select pure GEANH (HADR 1) or GEANH/NUCRIN (HADR 3) ?????
1138 else if (strncmp(&sProcessFlag[i][0],"HADR",4) == 0) {
1139 if (iProcessValue[i] == 1 || iProcessValue[i] == 2) {
1140 AliceInp << "*";
1141 AliceInp << endl;
1142 AliceInp << "*Hadronic interaction is ON by default in FLUKA";
1143 AliceInp << endl;
1144 AliceInp << "*No FLUKA card generated";
1145 AliceInp << endl;
1146 }
1147 else if (iProcessValue[i] == 0) {
1148 AliceInp << "*";
1149 AliceInp << endl;
1150 AliceInp << "*Hadronic interaction is set OFF";
1151 AliceInp << endl;
1152 AliceInp << "*Generated from call: SetProcess('HADR',0);";
1153 AliceInp << endl;
1154 AliceInp << setw(10) << "MULSOPT ";
1155 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1156 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1157 AliceInp << setw(10) << 0.0; // ignored
1158 AliceInp << setw(10) << 3.0; // multiple scattering for hadrons and muons is completely suppressed
1159 AliceInp << setw(10) << 0.0; // no spin-relativistic corrections
1160 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
1161 AliceInp << setprecision(2);
1162 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
1163 AliceInp << endl;
1164
1165 }
1166 else {
1167 AliceInp << "*";
1168 AliceInp << endl;
1169 AliceInp << "*Illegal flag value in SetProcess('HADR',?) call.";
1170 AliceInp << endl;
1171 AliceInp << "*No FLUKA card generated";
1172 AliceInp << endl;
1173 }
1174 } // end of else if (strncmp(&sProcessFlag[i][0],"HADR",4) == 0)
1175
1176
1177 // energy loss
1178 // G3 default value: 2
1179 // G4 processes: G4eIonisation/G4IeIonization,
1180 // G4MuIonisation/G4IMuIonization,
1181 // G4hIonisation/G4IhIonisation
1de0a072 1182 //
cbc3a17e 1183 // Particles: charged
1184 // Physics: EM
1185 // flag=0 no energy loss
1186 // flag=1 restricted energy loss fluctuations
1187 // flag=2 complete energy loss fluctuations
1188 // flag=3 same as 1
1189 // flag=4 no energy loss fluctuations
1190 // If the value ILOSS is changed, then (in G3) cross-sections and energy
1191 // loss tables must be recomputed via the command 'PHYSI'
1192 // gMC ->SetProcess("LOSS",2); // ??? IONFLUCT ? energy loss
1193 else if (strncmp(&sProcessFlag[i][0],"LOSS",4) == 0) {
1194 if (iProcessValue[i] == 2) { // complete energy loss fluctuations
1195 AliceInp << "*";
1196 AliceInp << endl;
1197 AliceInp << "*Complete energy loss fluctuations do not exist in FLUKA";
1198 AliceInp << endl;
1199 AliceInp << "*Generated from call: SetProcess('LOSS',2);";
1200 AliceInp << endl;
1201 AliceInp << "*flag=2=complete energy loss fluctuations";
1202 AliceInp << endl;
1203 AliceInp << "*No input card generated";
1204 AliceInp << endl;
1205 }
1206 else if (iProcessValue[i] == 1 || iProcessValue[i] == 3) { // restricted energy loss fluctuations
1207 AliceInp << "*";
1208 AliceInp << endl;
1209 AliceInp << "*Restricted energy loss fluctuations";
1210 AliceInp << endl;
1211 AliceInp << "*Generated from call: SetProcess('LOSS',1) or SetProcess('LOSS',3)";
1212 AliceInp << endl;
1213 AliceInp << setw(10) << "IONFLUCT ";
1214 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1215 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1216 AliceInp << setw(10) << 1.0; // restricted energy loss fluctuations (for hadrons and muons) switched on
1217 AliceInp << setw(10) << 1.0; // restricted energy loss fluctuations (for e+ and e-) switched on
1218 AliceInp << setw(10) << 1.0; // minimal accuracy
1219 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
1220 AliceInp << setprecision(2);
1221 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
1222 AliceInp << endl;
1223 }
1224 else if (iProcessValue[i] == 4) { // no energy loss fluctuations
1225 AliceInp << "*";
1226 AliceInp << endl;
1227 AliceInp << "*No energy loss fluctuations";
1228 AliceInp << endl;
1229 AliceInp << "*Generated from call: SetProcess('LOSS',4)";
1230 AliceInp << endl;
1231 AliceInp << setw(10) << -1.0; // restricted energy loss fluctuations (for hadrons and muons) switched off
1232 AliceInp << setw(10) << -1.0; // restricted energy loss fluctuations (for e+ and e-) switched off
1233 AliceInp << setw(10) << 1.0; // minimal accuracy
1234 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
1235 AliceInp << setprecision(2);
1236 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
1237 AliceInp << endl;
1238 }
1239 else {
1240 AliceInp << "*";
1241 AliceInp << endl;
1242 AliceInp << "*Illegal flag value in SetProcess('LOSS',?) call.";
1243 AliceInp << endl;
1244 AliceInp << "*No FLUKA card generated";
1245 AliceInp << endl;
1246 }
1247 } // end of else if (strncmp(&sProcessFlag[i][0],"LOSS",4) == 0)
1248
1249
1250 // multiple scattering
1251 // G3 default value: 1
1252 // G4 process: G4MultipleScattering/G4IMultipleScattering
1253 //
1254 // Particles: charged
1255 // Physics: EM
1256 // flag = 0 no multiple scattering
1257 // flag = 1 Moliere or Coulomb scattering
1258 // flag = 2 Moliere or Coulomb scattering
1259 // flag = 3 Gaussian scattering
1260 // gMC ->SetProcess("MULS",1); // MULSOPT multiple scattering
1261 else if (strncmp(&sProcessFlag[i][0],"MULS",4) == 0) {
1262 if (iProcessValue[i] == 1 || iProcessValue[i] == 2 || iProcessValue[i] == 3) {
1263 AliceInp << "*";
1264 AliceInp << endl;
1265 AliceInp << "*Multiple scattering is ON by default for e+e- and for hadrons/muons";
1266 AliceInp << endl;
1267 AliceInp << "*No FLUKA card generated";
1268 AliceInp << endl;
1269 }
1270 else if (iProcessValue[i] == 0) {
1271 AliceInp << "*";
1272 AliceInp << endl;
1273 AliceInp << "*Multiple scattering is set OFF";
1274 AliceInp << endl;
1275 AliceInp << "*Generated from call: SetProcess('MULS',0);";
1276 AliceInp << endl;
1277 AliceInp << setw(10) << "MULSOPT ";
1278 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1279 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1280 AliceInp << setw(10) << 0.0; // ignored
1281 AliceInp << setw(10) << 3.0; // multiple scattering for hadrons and muons is completely suppressed
1282 AliceInp << setw(10) << 3.0; // multiple scattering for e+ and e- is completely suppressed
1283 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
1284 AliceInp << setprecision(2);
1285 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
1286 AliceInp << endl;
1287 }
1288 else {
1289 AliceInp << "*";
1290 AliceInp << endl;
1291 AliceInp << "*Illegal flag value in SetProcess('MULS',?) call.";
1292 AliceInp << endl;
1293 AliceInp << "*No FLUKA card generated";
1294 AliceInp << endl;
1295 }
1296 } // end of else if (strncmp(&sProcessFlag[i][0],"MULS",4) == 0)
1297
1de0a072 1298
1299 // muon nuclear interaction
1300 // G3 default value: 0
1301 // G4 processes: G4MuNuclearInteraction,
1302 // G4MuonMinusCaptureAtRest
1303 //
1304 // Particles: mu
1305 // Physics: Not set
cbc3a17e 1306 // flag = 0 no muon-nuclear interaction
1307 // flag = 1 nuclear interaction, secondaries processed
1308 // flag = 2 nuclear interaction, secondaries not processed
1de0a072 1309 // gMC ->SetProcess("MUNU",1); // MUPHOTON 1. 0. 0. 3. lastmat
cbc3a17e 1310 else if (strncmp(&sProcessFlag[i][0],"MUNU",4) == 0) {
1311 if (iProcessValue[i] == 1) {
1312 AliceInp << "*";
1313 AliceInp << endl;
1314 AliceInp << "*Muon nuclear interactions with production of secondary hadrons";
1315 AliceInp << endl;
1316 AliceInp << "*Generated from call: SetProcess('MUNU',1);";
1317 AliceInp << endl;
1318 AliceInp << setw(10) << "MUPHOTON ";
1319 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1320 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1321 AliceInp << setw(10) << 1.0; // full simulation of muon nuclear interactions and production of secondary hadrons
1322 AliceInp << setw(10) << 0.0; // ratio of longitudinal to transverse virtual photon cross-section - Default = 0.25.
1323 AliceInp << setw(10) << 0.0; // fraction of rho-like interactions ( must be < 1) - Default = 0.75.
1324 AliceInp << setprecision(1);
1325 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
1326 AliceInp << setprecision(2);
1327 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
1328 AliceInp << endl;
1329 }
1330 else if (iProcessValue[i] == 2) {
1331 AliceInp << "*";
1332 AliceInp << endl;
1333 AliceInp << "*Muon nuclear interactions without production of secondary hadrons";
1334 AliceInp << endl;
1335 AliceInp << "*Generated from call: SetProcess('MUNU',2);";
1336 AliceInp << endl;
1337 AliceInp << setw(10) << "MUPHOTON ";
1338 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1339 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1340 AliceInp << setw(10) << 2.0; // full simulation of muon nuclear interactions and production of secondary hadrons
1341 AliceInp << setw(10) << 0.0; // ratio of longitudinal to transverse virtual photon cross-section - Default = 0.25.
1342 AliceInp << setw(10) << 0.0; // fraction of rho-like interactions ( must be < 1) - Default = 0.75.
1343 AliceInp << setprecision(1);
1344 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
1345 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
1346 AliceInp << endl;
1347 }
1348 else if (iProcessValue[i] == 0) {
1349 AliceInp << "*";
1350 AliceInp << endl;
1351 AliceInp << "*No muon nuclear interaction - no FLUKA card generated";
1352 AliceInp << endl;
1353 AliceInp << "*Generated from call: SetProcess('MUNU',0)";
1354 AliceInp << endl;
1355 }
1356 else {
1357 AliceInp << "*";
1358 AliceInp << endl;
1359 AliceInp << "*Illegal flag value in SetProcess('MUNU',?) call.";
1360 AliceInp << endl;
1361 AliceInp << "*No FLUKA card generated";
1362 AliceInp << endl;
1363 }
1364 } // end of else if (strncmp(&sProcessFlag[i][0],"MUNU",4) == 0)
1de0a072 1365
1de0a072 1366
1367 // photofission
1368 // G3 default value: 0
1369 // G4 process: ??
1370 //
1371 // Particles: gamma
1372 // Physics: ??
1373 // gMC ->SetProcess("PFIS",0); // PHOTONUC -1. 0. 0. 3. lastmat 0.
cbc3a17e 1374 // flag = 0 no photon fission
1375 // flag = 1 photon fission, secondaries processed
1376 // flag = 2 photon fission, no secondaries stored
1377 else if (strncmp(&sProcessFlag[i][0],"PFIS",4) == 0) {
1378 if (iProcessValue[i] == 0) {
1379 AliceInp << "*";
1380 AliceInp << endl;
1381 AliceInp << "*No photonuclear interactions";
1382 AliceInp << endl;
1383 AliceInp << "*Generated from call: SetProcess('PFIS',0);";
1384 AliceInp << endl;
1385 AliceInp << setw(10) << "PHOTONUC ";
1386 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1387 AliceInp << setw(10) << -1.0; // no photonuclear interactions
1388 AliceInp << setw(10) << 0.0; // not used
1389 AliceInp << setw(10) << 0.0; // not used
1390 AliceInp << setw(10) << 3.0; // upper bound of the material indices in which the respective thresholds apply
1391 AliceInp << setprecision(2);
1392 AliceInp << setw(10) << fLastMaterial;
1393 AliceInp << setprecision(1); // upper bound of the material indices in which the respective thresholds apply
1394 AliceInp << setprecision(1);
1395 AliceInp << setw(10) << 1.0; // step length in assigning indices
1396 AliceInp << endl;
1397 }
1398 else if (iProcessValue[i] == 1) {
1399 AliceInp << "*";
1400 AliceInp << endl;
1401 AliceInp << "*Photon nuclear interactions are activated at all energies";
1402 AliceInp << endl;
1403 AliceInp << "*Generated from call: SetProcess('PFIS',1);";
1404 AliceInp << endl;
1405 AliceInp << setw(10) << "PHOTONUC ";
1406 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1407 AliceInp << setw(10) << 1.0; // photonuclear interactions are activated at all energies
1408 AliceInp << setw(10) << 0.0; // not used
1409 AliceInp << setw(10) << 0.0; // not used
1410 AliceInp << setprecision(2);
1411 AliceInp << setw(10) << 3.0; // upper bound of the material indices in which the respective thresholds apply
1412 AliceInp << setw(10) << fLastMaterial;
1413 AliceInp << setprecision(1); // upper bound of the material indices in which the respective thresholds apply
1414 AliceInp << setprecision(1);
1415 AliceInp << setw(10) << 1.0; // step length in assigning indices
1416 AliceInp << endl;
1417 }
1418 else if (iProcessValue[i] == 0) {
1419 AliceInp << "*";
1420 AliceInp << endl;
1421 AliceInp << "*No photofission - no FLUKA card generated";
1422 AliceInp << endl;
1423 AliceInp << "*Generated from call: SetProcess('PFIS',0)";
1424 AliceInp << endl;
1425 }
1426 else {
1427 AliceInp << "*";
1428 AliceInp << endl;
1429 AliceInp << "*Illegal flag value in SetProcess('PFIS',?) call.";
1430 AliceInp << endl;
1431 AliceInp << "*No FLUKA card generated";
1432 AliceInp << endl;
1433 }
1de0a072 1434 }
1435
cbc3a17e 1436
1de0a072 1437 // photo electric effect
1438 // G3 default value: 1
1439 // G4 processes: G4PhotoElectricEffect
1440 // G4LowEnergyPhotoElectric
1441 // Particles: gamma
1442 // Physics: EM
cbc3a17e 1443 // flag = 0 no photo electric effect
1444 // flag = 1 photo electric effect, electron processed
1445 // flag = 2 photo electric effect, no electron stored
1de0a072 1446 // gMC ->SetProcess("PHOT",1); // EMFCUT 0. -1. 0. 3. lastmat 0. PHOT-THR
cbc3a17e 1447 else if (strncmp(&sProcessFlag[i][0],"PHOT",4) == 0) {
1448 if (iProcessValue[i] == 1 || iProcessValue[i] == 2) {
1449 AliceInp << "*";
1450 AliceInp << endl;
1451 AliceInp << "*Photo electric effect is activated";
1452 AliceInp << endl;
1453 AliceInp << "*Generated from call: SetProcess('PHOT',1);";
1454 AliceInp << endl;
1455 AliceInp << setw(10) << "EMFCUT ";
1456 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1457 AliceInp << setw(10) << 0.0; // ignored
1458 AliceInp << setw(10) << -1.0; // resets to default=0.
1459 AliceInp << setw(10) << 0.0; // ignored
1460 AliceInp << setw(10) << 3.0; // upper bound of the material indices in which the respective thresholds apply
1461 AliceInp << setprecision(2);
1462 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
1463 AliceInp << setprecision(1);
1464 AliceInp << setw(10) << 1.0; // step length in assigning indices
1465 AliceInp << setw(8) << "PHOT-THR";
1466 AliceInp << endl;
1467 }
1468 else if (iProcessValue[i] == 0) {
1469 AliceInp << "*";
1470 AliceInp << endl;
1471 AliceInp << "*No photo electric effect - no FLUKA card generated";
1472 AliceInp << endl;
1473 AliceInp << "*Generated from call: SetProcess('PHOT',0)";
1474 AliceInp << endl;
1475 }
1476 else {
1477 AliceInp << "*";
1478 AliceInp << endl;
1479 AliceInp << "*Illegal flag value in SetProcess('PHOT',?) call.";
1480 AliceInp << endl;
1481 AliceInp << "*No FLUKA card generated";
1482 AliceInp << endl;
1483 }
1484 } // else if (strncmp(&sProcessFlag[i][0],"PHOT",4) == 0)
1de0a072 1485
5929ad29 1486
cbc3a17e 1487 // Rayleigh scattering
1de0a072 1488 // G3 default value: 0
cbc3a17e 1489 // G4 process: G4OpRayleigh
1de0a072 1490 //
cbc3a17e 1491 // Particles: optical photon
1de0a072 1492 // Physics: Optical
cbc3a17e 1493 // flag = 0 Rayleigh scattering off
1494 // flag = 1 Rayleigh scattering on
1495 //xx gMC ->SetProcess("RAYL",1);
1496 else if (strncmp(&sProcessFlag[i][0],"RAYL",4) == 0) {
1497 if (iProcessValue[i] == 1) {
1498 AliceInp << "*";
1499 AliceInp << endl;
1500 AliceInp << "*Rayleigh scattering is ON by default in FLUKA";
1501 AliceInp << endl;
1502 AliceInp << "*No FLUKA card generated";
1503 AliceInp << endl;
1504 }
1505 else if (iProcessValue[i] == 0) {
1506 AliceInp << "*";
1507 AliceInp << endl;
1508 AliceInp << "*Rayleigh scattering is set OFF";
1509 AliceInp << endl;
1510 AliceInp << "*Generated from call: SetProcess('RAYL',0);";
1511 AliceInp << endl;
1512 AliceInp << setw(10) << "EMFRAY ";
1513 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1514 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1515 AliceInp << setw(10) << -1.0; // no Rayleigh scattering and no binding corrections for Compton
1516 AliceInp << setw(10) << 3.0; // lower bound of the material indices in which the respective thresholds apply
1517 AliceInp << setprecision(2);
1518 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
1519 AliceInp << endl;
1520 }
1521 else {
1522 AliceInp << "*";
1523 AliceInp << endl;
1524 AliceInp << "*Illegal flag value in SetProcess('RAYL',?) call.";
1525 AliceInp << endl;
1526 AliceInp << "*No FLUKA card generated";
1527 AliceInp << endl;
1528 }
1529 } // end of else if (strncmp(&sProcessFlag[i][0],"RAYL",4) == 0)
1de0a072 1530
5929ad29 1531
1532 // synchrotron radiation in magnetic field
1533 // G3 default value: 0
1534 // G4 process: G4SynchrotronRadiation
1535 //
1536 // Particles: ??
1537 // Physics: Not set
1538 // flag = 0 no synchrotron radiation
1539 // flag = 1 synchrotron radiation
1540 //xx gMC ->SetProcess("SYNC",1); // synchrotron radiation generation
1541 else if (strncmp(&sProcessFlag[i][0],"SYNC",4) == 0) {
1542 AliceInp << "*";
1543 AliceInp << endl;
1544 AliceInp << "*Synchrotron radiation generation is NOT implemented in FLUKA";
1545 AliceInp << endl;
1546 AliceInp << "*No FLUKA card generated";
1547 AliceInp << endl;
1548 }
1549
cbc3a17e 1550
1551 // Automatic calculation of tracking medium parameters
1552 // flag = 0 no automatic calculation
1553 // flag = 1 automatic calculation
1554 //xx gMC ->SetProcess("AUTO",1); // ??? automatic computation of the tracking medium parameters
5929ad29 1555 else if (strncmp(&sProcessFlag[i][0],"AUTO",4) == 0) {
1556 AliceInp << "*";
1557 AliceInp << endl;
1558 AliceInp << "*Automatic calculation of tracking medium parameters is always ON in FLUKA";
1559 AliceInp << endl;
1560 AliceInp << "*No FLUKA card generated";
1561 AliceInp << endl;
1562 }
1563
1564
1565 // To control energy loss fluctuation model
1566 // flag = 0 Urban model
1567 // flag = 1 PAI model
1568 // flag = 2 PAI+ASHO model (not active at the moment)
1569 //xx gMC ->SetProcess("STRA",1); // ??? energy fluctuation model
1570 else if (strncmp(&sProcessFlag[i][0],"STRA",4) == 0) {
1571 if (iProcessValue[i] == 0 || iProcessValue[i] == 2 || iProcessValue[i] == 3) {
1572 AliceInp << "*";
1573 AliceInp << endl;
1574 AliceInp << "*Ionization energy losses calculation is activated";
1575 AliceInp << endl;
1576 AliceInp << "*Generated from call: SetProcess('STRA',n);, n=0,1,2";
1577 AliceInp << endl;
1578 AliceInp << setw(10) << "IONFLUCT ";
1579 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1580 AliceInp << setw(10) << 1.0; // restricted energy loss fluctuations
1581 // (for hadrons and muons) switched on
1582 AliceInp << setw(10) << 1.0; // restricted energy loss fluctuations
1583 // (for e+ and e-) switched on
1584 AliceInp << setw(10) << 1.0; // minimal accuracy
1585 AliceInp << setw(10) << 3.0; // upper bound of the material indices in
1586 // which the respective thresholds apply
1587 AliceInp << setprecision(2);
1588 AliceInp << setw(10) << fLastMaterial; // upper bound of the material indices in which the respective thresholds apply
1589 AliceInp << setprecision(1);
1590 AliceInp << setw(10) << 1.0; // step length in assigning indices
1591 AliceInp << endl;
1592 }
1593 else {
1594 AliceInp << "*";
1595 AliceInp << endl;
1596 AliceInp << "*Illegal flag value in SetProcess('STRA',?) call.";
1597 AliceInp << endl;
1598 AliceInp << "*No FLUKA card generated";
1599 AliceInp << endl;
1600 }
1601 } // else if (strncmp(&sProcessFlag[i][0],"STRA",4) == 0)
1602
1603
1604
1605
1606 else { // processes not yet treated
1de0a072 1607
cbc3a17e 1608 // light photon absorption (Cerenkov photons)
1de0a072 1609 // it is turned on when Cerenkov process is turned on
1610 // G3 default value: 0
1611 // G4 process: G4OpAbsorption, G4OpBoundaryProcess
1612 //
1613 // Particles: optical photon
1614 // Physics: Optical
cbc3a17e 1615 // flag = 0 no absorption of Cerenkov photons
1616 // flag = 1 absorption of Cerenkov photons
1de0a072 1617 // gMC ->SetProcess("LABS",2); // ??? Cerenkov light absorption
1618
1de0a072 1619
1de0a072 1620
1621 cout << "SetProcess for flag=" << &sProcessFlag[i][0] << " value=" << iProcessValue[i] << " not yet implemented!" << endl;
1622 }
1623 } //end of loop number of SetProcess calls
1624
1625
1626// Loop over number of SetCut calls
1627 for (Int_t i=0; i<iNbOfCut; i++) {
1628
cbc3a17e 1629 // cuts used in SetProcess calls
1630 if (strncmp(&sCutFlag[i][0],"BCUTM",5) == 0) continue;
1631 else if (strncmp(&sCutFlag[i][0],"BCUTE",5) == 0) continue;
1632 else if (strncmp(&sCutFlag[i][0],"DCUTM",5) == 0) continue;
1633 else if (strncmp(&sCutFlag[i][0],"PPCUTM",6) == 0) continue;
1634
1de0a072 1635 // gammas
1636 // G4 particles: "gamma"
1637 // G3 default value: 0.001 GeV
1638 //gMC ->SetCut("CUTGAM",cut); // cut for gammas
cbc3a17e 1639 else if (strncmp(&sCutFlag[i][0],"CUTGAM",6) == 0) {
1640 AliceInp << "*";
1641 AliceInp << endl;
1de0a072 1642 AliceInp << "*Cut for gamma";
1643 AliceInp << endl;
1644 AliceInp << "*Generated from call: SetCut('CUTGAM',cut);";
1645 AliceInp << endl;
1646 AliceInp << setw(10) << "PART-THR ";
1647 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1648 AliceInp << setw(10) << -fCutValue[i];
1649 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1650 AliceInp << setw(10) << 7.0;
1651 AliceInp << endl;
1652 }
1653
1654 // electrons
1655 // G4 particles: "e-"
1656 // ?? positrons
1657 // G3 default value: 0.001 GeV
1658 //gMC ->SetCut("CUTELE",cut); // cut for e+,e-
1659 else if (strncmp(&sCutFlag[i][0],"CUTELE",6) == 0) {
cbc3a17e 1660 AliceInp << "*";
1661 AliceInp << endl;
1de0a072 1662 AliceInp << "*Cut for electrons";
1663 AliceInp << endl;
1664 AliceInp << "*Generated from call: SetCut('CUTELE',cut);";
1665 AliceInp << endl;
1666 AliceInp << setw(10) << "PART-THR ";
1667 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1668 AliceInp << setw(10) << -fCutValue[i];
1669 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1670 AliceInp << setw(10) << 3.0;
1671 AliceInp << setw(10) << 4.0;
1672 AliceInp << setw(10) << 1.0;
1673 AliceInp << endl;
1674 }
1675
1676 // neutral hadrons
1677 // G4 particles: of type "baryon", "meson", "nucleus" with zero charge
1678 // G3 default value: 0.01 GeV
1679 //gMC ->SetCut("CUTNEU",cut); // cut for neutral hadrons
1680 else if (strncmp(&sCutFlag[i][0],"CUTNEU",6) == 0) {
cbc3a17e 1681 AliceInp << "*";
1682 AliceInp << endl;
1de0a072 1683 AliceInp << "*Cut for neutral hadrons";
1684 AliceInp << endl;
1685 AliceInp << "*Generated from call: SetCut('CUTNEU',cut);";
1686 AliceInp << endl;
1687 AliceInp << setw(10) << "PART-THR ";
1688 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1689 AliceInp << setw(10) << -fCutValue[i];
1690 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1691 AliceInp << setw(10) << 8.0; // Neutron
1692 AliceInp << setw(10) << 9.0; // Antineutron
1693 AliceInp << endl;
1694 AliceInp << setw(10) << "PART-THR ";
1695 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1696 AliceInp << setw(10) << -fCutValue[i];
1697 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(2);
1698 AliceInp << setw(10) << 12.0; // Kaon zero long
1699 AliceInp << setw(10) << 12.0; // Kaon zero long
1700 AliceInp << endl;
1701 AliceInp << setw(10) << "PART-THR ";
1702 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1703 AliceInp << setw(10) << -fCutValue[i];
1704 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(2);
1705 AliceInp << setw(10) << 17.0; // Lambda, 18=Antilambda
1706 AliceInp << setw(10) << 19.0; // Kaon zero short
1707 AliceInp << endl;
1708 AliceInp << setw(10) << "PART-THR ";
1709 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1710 AliceInp << setw(10) << -fCutValue[i];
1711 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(2);
1712 AliceInp << setw(10) << 22.0; // Sigma zero, Pion zero, Kaon zero
1713 AliceInp << setw(10) << 25.0; // Antikaon zero
1714 AliceInp << endl;
1715 AliceInp << setw(10) << "PART-THR ";
1716 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1717 AliceInp << setw(10) << -fCutValue[i];
1718 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(2);
1719 AliceInp << setw(10) << 32.0; // Antisigma zero
1720 AliceInp << setw(10) << 32.0; // Antisigma zero
1721 AliceInp << endl;
1722 AliceInp << setw(10) << "PART-THR ";
1723 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1724 AliceInp << setw(10) << -fCutValue[i];
1725 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(2);
1726 AliceInp << setw(10) << 34.0; // Xi zero
1727 AliceInp << setw(10) << 35.0; // AntiXi zero
1728 AliceInp << endl;
1729 AliceInp << setw(10) << "PART-THR ";
1730 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1731 AliceInp << setw(10) << -fCutValue[i];
1732 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(2);
1733 AliceInp << setw(10) << 47.0; // D zero
1734 AliceInp << setw(10) << 48.0; // AntiD zero
1735 AliceInp << endl;
1736 AliceInp << setw(10) << "PART-THR ";
1737 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1738 AliceInp << setw(10) << -fCutValue[i];
1739 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(2);
1740 AliceInp << setw(10) << 53.0; // Xi_c zero
1741 AliceInp << setw(10) << 53.0; // Xi_c zero
1742 AliceInp << endl;
1743 AliceInp << setw(10) << "PART-THR ";
1744 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1745 AliceInp << setw(10) << -fCutValue[i];
1746 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(2);
1747 AliceInp << setw(10) << 55.0; // Xi'_c zero
1748 AliceInp << setw(10) << 56.0; // Omega_c zero
1749 AliceInp << endl;
1750 AliceInp << setw(10) << "PART-THR ";
1751 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1752 AliceInp << setw(10) << -fCutValue[i];
1753 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(2);
1754 AliceInp << setw(10) << 59.0; // AntiXi_c zero
1755 AliceInp << setw(10) << 59.0; // AntiXi_c zero
1756 AliceInp << endl;
1757 AliceInp << setw(10) << "PART-THR ";
1758 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1759 AliceInp << setw(10) << -fCutValue[i];
1760 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(2);
1761 AliceInp << setw(10) << 61.0; // AntiXi'_c zero
1762 AliceInp << setw(10) << 62.0; // AntiOmega_c zero
1763 AliceInp << endl;
1764 }
1765
1766 // charged hadrons
1767 // G4 particles: of type "baryon", "meson", "nucleus" with non-zero charge
1768 // G3 default value: 0.01 GeV
1769 //gMC ->SetCut("CUTHAD",cut); // cut for charged hadrons
1770 else if (strncmp(&sCutFlag[i][0],"CUTHAD",6) == 0) {
cbc3a17e 1771 AliceInp << "*";
1772 AliceInp << endl;
1de0a072 1773 AliceInp << "*Cut for charged hadrons";
1774 AliceInp << endl;
1775 AliceInp << "*Generated from call: SetCut('CUTHAD',cut);";
1776 AliceInp << endl;
1777 AliceInp << setw(10) << "PART-THR ";
1778 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1779 AliceInp << setw(10) << -fCutValue[i];
1780 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1781 AliceInp << setw(10) << 1.0; // Proton
1782 AliceInp << setw(10) << 2.0; // Antiproton
1783 AliceInp << endl;
1784 AliceInp << setw(10) << "PART-THR ";
1785 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1786 AliceInp << setw(10) << -fCutValue[i];
1787 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(2);
1788 AliceInp << setw(10) << 13.0; // Positive Pion, Negative Pion, Positive Kaon
1789 AliceInp << setw(10) << 16.0; // Negative Kaon
1790 AliceInp << endl;
1791 AliceInp << setw(10) << "PART-THR ";
1792 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1793 AliceInp << setw(10) << -fCutValue[i];
1794 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(2);
1795 AliceInp << setw(10) << 20.0; // Negative Sigma
1796 AliceInp << setw(10) << 16.0; // Positive Sigma
1797 AliceInp << endl;
1798 AliceInp << setw(10) << "PART-THR ";
1799 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1800 AliceInp << setw(10) << -fCutValue[i];
1801 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(2);
1802 AliceInp << setw(10) << 31.0; // Antisigma minus
1803 AliceInp << setw(10) << 33.0; // Antisigma plus
1804 AliceInp << setprecision(1);
1805 AliceInp << setw(10) << 2.0; // step length
1806 AliceInp << endl;
1807 AliceInp << setw(10) << "PART-THR ";
1808 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1809 AliceInp << setw(10) << -fCutValue[i];
1810 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(2);
1811 AliceInp << setw(10) << 36.0; // Negative Xi, Positive Xi, Omega minus
1812 AliceInp << setw(10) << 39.0; // Antiomega
1813 AliceInp << endl;
1814 AliceInp << setw(10) << "PART-THR ";
1815 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1816 AliceInp << setw(10) << -fCutValue[i];
1817 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(2);
1818 AliceInp << setw(10) << 45.0; // D plus
1819 AliceInp << setw(10) << 46.0; // D minus
1820 AliceInp << endl;
1821 AliceInp << setw(10) << "PART-THR ";
1822 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1823 AliceInp << setw(10) << -fCutValue[i];
1824 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(2);
1825 AliceInp << setw(10) << 49.0; // D_s plus, D_s minus, Lambda_c plus
1826 AliceInp << setw(10) << 52.0; // Xi_c plus
1827 AliceInp << endl;
1828 AliceInp << setw(10) << "PART-THR ";
1829 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1830 AliceInp << setw(10) << -fCutValue[i];
1831 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(2);
1832 AliceInp << setw(10) << 54.0; // Xi'_c plus
1833 AliceInp << setw(10) << 60.0; // AntiXi'_c minus
1834 AliceInp << setprecision(1);
1835 AliceInp << setw(10) << 6.0; // step length
1836 AliceInp << endl;
1837 AliceInp << setw(10) << "PART-THR ";
1838 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1839 AliceInp << setw(10) << -fCutValue[i];
1840 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(2);
1841 AliceInp << setw(10) << 57.0; // Antilambda_c minus
1842 AliceInp << setw(10) << 58.0; // AntiXi_c minus
1843 AliceInp << endl;
1844 }
1845
1846 // muons
1847 // G4 particles: "mu+", "mu-"
1848 // G3 default value: 0.01 GeV
1849 //gMC ->SetCut("CUTMUO",cut); // cut for mu+, mu-
1850 else if (strncmp(&sCutFlag[i][0],"CUTMUO",6) == 0) {
cbc3a17e 1851 AliceInp << "*";
1852 AliceInp << endl;
1de0a072 1853 AliceInp << "*Cut for muons";
1854 AliceInp << endl;
1855 AliceInp << "*Generated from call: SetCut('CUTMUO',cut);";
1856 AliceInp << endl;
1857 AliceInp << setw(10) << "PART-THR ";
1858 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1859 AliceInp << setw(10) << -fCutValue[i];
1860 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1861 AliceInp << setprecision(2);
1862 AliceInp << setw(10) << 10.0;
1863 AliceInp << setw(10) << 11.0;
1864 AliceInp << endl;
1865 }
1de0a072 1866 // delta-rays by electrons
1867 // G4 particles: "e-"
1868 // G3 default value: 10**4 GeV
cbc3a17e 1869 // gMC ->SetCut("DCUTE",cut); // cut for deltarays by electrons ???????????????
1de0a072 1870 else if (strncmp(&sCutFlag[i][0],"DCUTE",5) == 0) {
cbc3a17e 1871 AliceInp << "*";
1de0a072 1872 AliceInp << endl;
cbc3a17e 1873 AliceInp << "*Cut for delta rays by electrons ????????????";
1de0a072 1874 AliceInp << endl;
cbc3a17e 1875 AliceInp << "*Generated from call: SetCut('DCUTE',cut);";
1de0a072 1876 AliceInp << endl;
cbc3a17e 1877 AliceInp << setw(10) << "EMFCUT ";
1de0a072 1878 AliceInp << setiosflags(ios::scientific) << setprecision(5);
cbc3a17e 1879 AliceInp << setw(10) << -fCutValue[i];
1de0a072 1880 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1881 AliceInp << setw(10) << 0.0;
1882 AliceInp << setw(10) << 0.0;
1883 AliceInp << setw(10) << 3.0;
1884 AliceInp << setprecision(2);
1885 AliceInp << setw(10) << fLastMaterial;
1886 AliceInp << setprecision(1);
1887 AliceInp << setw(10) << 1.0;
1888 AliceInp << endl;
1889 }
1890
cbc3a17e 1891 //
1de0a072 1892 // time of flight cut in seconds
1893 // G4 particles: all
1894 // G3 default value: 0.01 GeV
1895 //gMC ->SetCut("TOFMAX",tofmax); // time of flight cuts in seconds
1896 else if (strncmp(&sCutFlag[i][0],"TOFMAX",6) == 0) {
cbc3a17e 1897 AliceInp << "*";
1898 AliceInp << endl;
1de0a072 1899 AliceInp << "*Time of flight cuts in seconds";
1900 AliceInp << endl;
1901 AliceInp << "*Generated from call: SetCut('TOFMAX',tofmax);";
1902 AliceInp << endl;
1903 AliceInp << setw(10) << "TIME-CUT ";
1904 AliceInp << setiosflags(ios::scientific) << setprecision(5);
1905 AliceInp << setw(10) << fCutValue[i]*1.e9;
1906 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint) << setprecision(1);
1907 AliceInp << setw(10) << 0.0;
1908 AliceInp << setw(10) << 0.0;
1909 AliceInp << setw(10) << -6.0; // lower bound of the particle numbers for which the transport time cut-off and/or the start signal is to be applied
1910 AliceInp << setprecision(2);
1911 AliceInp << setw(10) << 64.0; // upper bound of the particle numbers for which the transport time cut-off and/or the start signal is to be applied
1912 AliceInp << setprecision(1);
1913 AliceInp << setw(10) << 1.0; // step length in assigning numbers
1914 AliceInp << endl;
1915 }
1916
1917 else {
1918 cout << "SetCut for flag=" << &sCutFlag[i][0] << " value=" << fCutValue[i] << " not yet implemented!" << endl;
1919 }
1920 } //end of loop over SeCut calls
1921
1922// Add START and STOP card
1923 AliceInp << setw(10) << "START ";
1924 AliceInp << setiosflags(ios::fixed) << setiosflags(ios::showpoint);
1925 AliceInp << setw(10) << fEventsPerRun;
1926 AliceInp << endl;
1927 AliceInp << setw(10) << "STOP ";
1928 AliceInp << endl;
1929
1930}
1931
cbc3a17e 1932
bc021b12 1933void TFluka::SetMaxStep(Double_t)
1934{
1935// SetMaxStep is dummy procedure in TFluka !
fee5ea25 1936 if (fVerbosityLevel >=3)
bc021b12 1937 cout << "SetMaxStep is dummy procedure in TFluka !" << endl;
1938}
1939
1940void TFluka::SetMaxNStep(Int_t)
1941{
1942// SetMaxNStep is dummy procedure in TFluka !
fee5ea25 1943 if (fVerbosityLevel >=3)
bc021b12 1944 cout << "SetMaxNStep is dummy procedure in TFluka !" << endl;
1945}
1946
1947void TFluka::SetUserDecay(Int_t)
1948{
1949// SetUserDecay is dummy procedure in TFluka !
fee5ea25 1950 if (fVerbosityLevel >=3)
bc021b12 1951 cout << "SetUserDecay is dummy procedure in TFluka !" << endl;
1952}
1953
fa3d1cc7 1954//
1955// dynamic properties
1956//
1957void TFluka::TrackPosition(TLorentzVector& position) const
1958{
1959// Return the current position in the master reference frame of the
1960// track being transported
1961// TRACKR.atrack = age of the particle
1962// TRACKR.xtrack = x-position of the last point
1963// TRACKR.ytrack = y-position of the last point
1964// TRACKR.ztrack = z-position of the last point
1de0a072 1965 Int_t caller = GetCaller();
12d57e74 1966 if (caller == 1 || caller == 3 || caller == 6 || caller == 11 || caller == 12) { //bxdraw,endraw,usdraw
1de0a072 1967 position.SetX(GetXsco());
1968 position.SetY(GetYsco());
1969 position.SetZ(GetZsco());
1970 position.SetT(TRACKR.atrack);
1971 }
1972 else if (caller == 4) { // mgdraw
1973 position.SetX(TRACKR.xtrack[TRACKR.ntrack]);
1974 position.SetY(TRACKR.ytrack[TRACKR.ntrack]);
1975 position.SetZ(TRACKR.ztrack[TRACKR.ntrack]);
1976 position.SetT(TRACKR.atrack);
1977 }
1978 else if (caller == 5) { // sodraw
1979 position.SetX(TRACKR.xtrack[TRACKR.ntrack]);
1980 position.SetY(TRACKR.ytrack[TRACKR.ntrack]);
1981 position.SetZ(TRACKR.ztrack[TRACKR.ntrack]);
1982 position.SetT(0);
1983 }
1984 else
1985 Warning("TrackPosition","position not available");
1986}
24969d13 1987
1de0a072 1988//
1989void TFluka::TrackPosition(Double_t& x, Double_t& y, Double_t& z) const
1990{
1991// Return the current position in the master reference frame of the
1992// track being transported
1993// TRACKR.atrack = age of the particle
1994// TRACKR.xtrack = x-position of the last point
1995// TRACKR.ytrack = y-position of the last point
1996// TRACKR.ztrack = z-position of the last point
1997 Int_t caller = GetCaller();
12d57e74 1998 if (caller == 1 || caller == 3 || caller == 6 || caller == 11 || caller == 12) { //bxdraw,endraw,usdraw
1de0a072 1999 x = GetXsco();
2000 y = GetYsco();
2001 z = GetZsco();
2002 }
2003 else if (caller == 4) { // mgdraw
2004 x = TRACKR.xtrack[TRACKR.ntrack];
2005 y = TRACKR.ytrack[TRACKR.ntrack];
2006 z = TRACKR.ztrack[TRACKR.ntrack];
2007 }
2008 else if (caller == 5) { // sodraw
2009 x = TRACKR.xtrack[TRACKR.ntrack];
2010 y = TRACKR.ytrack[TRACKR.ntrack];
2011 z = TRACKR.ztrack[TRACKR.ntrack];
2012 }
2013 else
2014 Warning("TrackPosition","position not available");
fa3d1cc7 2015}
2016
2017void TFluka::TrackMomentum(TLorentzVector& momentum) const
2018{
2019// Return the direction and the momentum (GeV/c) of the track
2020// currently being transported
2021// TRACKR.ptrack = momentum of the particle (not always defined, if
2022// < 0 must be obtained from etrack)
2023// TRACKR.cx,y,ztrck = direction cosines of the current particle
2024// TRACKR.etrack = total energy of the particle
2025// TRACKR.jtrack = identity number of the particle
2026// PAPROP.am[TRACKR.jtrack] = particle mass in gev
1de0a072 2027 Int_t caller = GetCaller();
2028 if (caller != 2) { // not eedraw
2029 if (TRACKR.ptrack >= 0) {
2030 momentum.SetPx(TRACKR.ptrack*TRACKR.cxtrck);
2031 momentum.SetPy(TRACKR.ptrack*TRACKR.cytrck);
2032 momentum.SetPz(TRACKR.ptrack*TRACKR.cztrck);
2033 momentum.SetE(TRACKR.etrack);
2034 return;
2035 }
2036 else {
2037 Double_t p = sqrt(TRACKR.etrack*TRACKR.etrack - PAPROP.am[TRACKR.jtrack+6]*PAPROP.am[TRACKR.jtrack+6]);
2038 momentum.SetPx(p*TRACKR.cxtrck);
2039 momentum.SetPy(p*TRACKR.cytrck);
2040 momentum.SetPz(p*TRACKR.cztrck);
2041 momentum.SetE(TRACKR.etrack);
2042 return;
2043 }
fa3d1cc7 2044 }
1de0a072 2045 else
2046 Warning("TrackMomentum","momentum not available");
2047}
2048
2049void TFluka::TrackMomentum(Double_t& px, Double_t& py, Double_t& pz, Double_t& e) const
2050{
2051// Return the direction and the momentum (GeV/c) of the track
2052// currently being transported
2053// TRACKR.ptrack = momentum of the particle (not always defined, if
2054// < 0 must be obtained from etrack)
2055// TRACKR.cx,y,ztrck = direction cosines of the current particle
2056// TRACKR.etrack = total energy of the particle
2057// TRACKR.jtrack = identity number of the particle
2058// PAPROP.am[TRACKR.jtrack] = particle mass in gev
2059 Int_t caller = GetCaller();
2060 if (caller != 2) { // not eedraw
2061 if (TRACKR.ptrack >= 0) {
2062 px = TRACKR.ptrack*TRACKR.cxtrck;
2063 py = TRACKR.ptrack*TRACKR.cytrck;
2064 pz = TRACKR.ptrack*TRACKR.cztrck;
2065 e = TRACKR.etrack;
2066 return;
2067 }
2068 else {
2069 Double_t p = sqrt(TRACKR.etrack*TRACKR.etrack - PAPROP.am[TRACKR.jtrack+6]*PAPROP.am[TRACKR.jtrack+6]);
2070 px = p*TRACKR.cxtrck;
2071 py = p*TRACKR.cytrck;
2072 pz = p*TRACKR.cztrck;
2073 e = TRACKR.etrack;
2074 return;
2075 }
fa3d1cc7 2076 }
1de0a072 2077 else
2078 Warning("TrackMomentum","momentum not available");
fa3d1cc7 2079}
2080
2081Double_t TFluka::TrackStep() const
2082{
2083// Return the length in centimeters of the current step
2084// TRACKR.ctrack = total curved path
1de0a072 2085 Int_t caller = GetCaller();
2086 if (caller == 1 || caller == 3 || caller == 6) //bxdraw,endraw,usdraw
2087 return 0.0;
2088 else if (caller == 4) //mgdraw
fa3d1cc7 2089 return TRACKR.ctrack;
1de0a072 2090 else
2091 return -1.0;
fa3d1cc7 2092}
2093
2094Double_t TFluka::TrackLength() const
2095{
5929ad29 2096// TRACKR.cmtrck = cumulative curved path since particle birth
1de0a072 2097 Int_t caller = GetCaller();
5929ad29 2098 if (caller == 1 || caller == 3 || caller == 4 || caller == 6) //bxdraw,endraw,mgdraw,usdraw
2099 return TRACKR.cmtrck;
1de0a072 2100 else
2101 return -1.0;
fa3d1cc7 2102}
2103
2104Double_t TFluka::TrackTime() const
2105{
2106// Return the current time of flight of the track being transported
2107// TRACKR.atrack = age of the particle
1de0a072 2108 Int_t caller = GetCaller();
2109 if (caller == 1 || caller == 3 || caller == 4 || caller == 6) //bxdraw,endraw,mgdraw,usdraw
2110 return TRACKR.atrack;
2111 else
2112 return -1;
fa3d1cc7 2113}
2114
2115Double_t TFluka::Edep() const
2116{
2117// Energy deposition
2118// if TRACKR.ntrack = 0, TRACKR.mtrack = 0:
2119// -->local energy deposition (the value and the point are not recorded in TRACKR)
2120// but in the variable "rull" of the procedure "endraw.cxx"
2121// if TRACKR.ntrack > 0, TRACKR.mtrack = 0:
2122// -->no energy loss along the track
2123// if TRACKR.ntrack > 0, TRACKR.mtrack > 0:
2124// -->energy loss distributed along the track
2125// TRACKR.dtrack = energy deposition of the jth deposition even
1de0a072 2126 Double_t sum = 0;
2127 for ( Int_t j=0;j<TRACKR.mtrack;j++) {
2128 sum +=TRACKR.dtrack[j];
2129 }
fa3d1cc7 2130 if (TRACKR.ntrack == 0 && TRACKR.mtrack == 0)
1de0a072 2131 return fRull + sum;
fa3d1cc7 2132 else {
fa3d1cc7 2133 return sum;
2134 }
2135}
2136
2137Int_t TFluka::TrackPid() const
2138{
2139// Return the id of the particle transported
2140// TRACKR.jtrack = identity number of the particle
1de0a072 2141 Int_t caller = GetCaller();
2142 if (caller != 2) // not eedraw
2143 return PDGFromId(TRACKR.jtrack);
2144 else
2145 return -1000;
fa3d1cc7 2146}
2147
2148Double_t TFluka::TrackCharge() const
2149{
2150// Return charge of the track currently transported
2151// PAPROP.ichrge = electric charge of the particle
bc021b12 2152// TRACKR.jtrack = identity number of the particle
1de0a072 2153 Int_t caller = GetCaller();
2154 if (caller != 2) // not eedraw
2155 return PAPROP.ichrge[TRACKR.jtrack+6];
2156 else
2157 return -1000.0;
fa3d1cc7 2158}
2159
2160Double_t TFluka::TrackMass() const
2161{
2162// PAPROP.am = particle mass in GeV
bc021b12 2163// TRACKR.jtrack = identity number of the particle
1de0a072 2164 Int_t caller = GetCaller();
2165 if (caller != 2) // not eedraw
2166 return PAPROP.am[TRACKR.jtrack+6];
2167 else
2168 return -1000.0;
fa3d1cc7 2169}
2170
2171Double_t TFluka::Etot() const
2172{
2173// TRACKR.etrack = total energy of the particle
1de0a072 2174 Int_t caller = GetCaller();
2175 if (caller != 2) // not eedraw
2176 return TRACKR.etrack;
2177 else
2178 return -1000.0;
fa3d1cc7 2179}
2180
2181//
2182// track status
2183//
2184Bool_t TFluka::IsNewTrack() const
2185{
5929ad29 2186// True if the track has positive cummulative length
1de0a072 2187 Int_t caller = GetCaller();
5929ad29 2188 if (caller != 2) { // not eedraw
2189 if (TRACKR.cmtrck > 0.0)
2190 return 1;
2191 else
2192 return 0;
2193 }
1de0a072 2194 else
5929ad29 2195 return 0;
fa3d1cc7 2196}
2197
2198Bool_t TFluka::IsTrackInside() const
2199{
2200// True if the track is not at the boundary of the current volume
2201// In Fluka a step is always inside one kind of material
2202// If the step would go behind the region of one material,
2203// it will be shortened to reach only the boundary.
2204// Therefore IsTrackInside() is always true.
1de0a072 2205 Int_t caller = GetCaller();
2206 if (caller == 1) // bxdraw
2207 return 0;
2208 else
2209 return 1;
fa3d1cc7 2210}
2211
2212Bool_t TFluka::IsTrackEntering() const
2213{
2214// True if this is the first step of the track in the current volume
cbc3a17e 2215
1de0a072 2216 Int_t caller = GetCaller();
12d57e74 2217 if (caller == 11) // bxdraw entering
1de0a072 2218 return 1;
fa3d1cc7 2219 else return 0;
2220}
2221
2222Bool_t TFluka::IsTrackExiting() const
2223{
1de0a072 2224 Int_t caller = GetCaller();
2225 if (caller == 12) // bxdraw exiting
2226 return 1;
fa3d1cc7 2227 else return 0;
2228}
2229
2230Bool_t TFluka::IsTrackOut() const
2231{
2232// True if the track is out of the setup
2233// means escape
2234// Icode = 14: escape - call from Kaskad
2235// Icode = 23: escape - call from Emfsco
2236// Icode = 32: escape - call from Kasneu
2237// Icode = 40: escape - call from Kashea
2238// Icode = 51: escape - call from Kasoph
70541a80 2239 if (fIcode == 14 ||
2240 fIcode == 23 ||
2241 fIcode == 32 ||
2242 fIcode == 40 ||
2243 fIcode == 51) return 1;
fa3d1cc7 2244 else return 0;
2245}
2246
2247Bool_t TFluka::IsTrackDisappeared() const
2248{
2249// means all inelastic interactions and decays
70541a80 2250// fIcode from usdraw
2251 if (fIcode == 101 || // inelastic interaction
2252 fIcode == 102 || // particle decay
2253 fIcode == 214 || // in-flight annihilation
2254 fIcode == 215 || // annihilation at rest
2255 fIcode == 217 || // pair production
2256 fIcode == 221) return 1;
fa3d1cc7 2257 else return 0;
2258}
2259
2260Bool_t TFluka::IsTrackStop() const
2261{
2262// True if the track energy has fallen below the threshold
2263// means stopped by signal or below energy threshold
2264// Icode = 12: stopping particle - call from Kaskad
2265// Icode = 15: time kill - call from Kaskad
2266// Icode = 21: below threshold, iarg=1 - call from Emfsco
2267// Icode = 22: below threshold, iarg=2 - call from Emfsco
2268// Icode = 24: time kill - call from Emfsco
2269// Icode = 31: below threshold - call from Kasneu
2270// Icode = 33: time kill - call from Kasneu
2271// Icode = 41: time kill - call from Kashea
2272// Icode = 52: time kill - call from Kasoph
70541a80 2273 if (fIcode == 12 ||
2274 fIcode == 15 ||
2275 fIcode == 21 ||
2276 fIcode == 22 ||
2277 fIcode == 24 ||
2278 fIcode == 31 ||
2279 fIcode == 33 ||
2280 fIcode == 41 ||
2281 fIcode == 52) return 1;
fa3d1cc7 2282 else return 0;
2283}
2284
2285Bool_t TFluka::IsTrackAlive() const
2286{
2287// means not disappeared or not out
2288 if (IsTrackDisappeared() || IsTrackOut() ) return 0;
2289 else return 1;
2290}
2291
2292//
2293// secondaries
2294//
2295
2296Int_t TFluka::NSecondaries() const
2297// Number of secondary particles generated in the current step
bc021b12 2298// FINUC.np = number of secondaries except light and heavy ions
b8b430a9 2299// FHEAVY.npheav = number of secondaries for light and heavy secondary ions
fa3d1cc7 2300{
1de0a072 2301 Int_t caller = GetCaller();
2302 if (caller == 6) // valid only after usdraw
2303 return FINUC.np + FHEAVY.npheav;
2304 else
2305 return 0;
2306} // end of NSecondaries
fa3d1cc7 2307
2308void TFluka::GetSecondary(Int_t isec, Int_t& particleId,
2309 TLorentzVector& position, TLorentzVector& momentum)
fa3d1cc7 2310{
1de0a072 2311 Int_t caller = GetCaller();
2312 if (caller == 6) { // valid only after usdraw
2313 if (isec >= 0 && isec < FINUC.np) {
2314 particleId = PDGFromId(FINUC.kpart[isec]);
2315 position.SetX(fXsco);
2316 position.SetY(fYsco);
2317 position.SetZ(fZsco);
2318 position.SetT(TRACKR.atrack);
2319// position.SetT(TRACKR.atrack+FINUC.agesec[isec]); //not yet implem.
2320 momentum.SetPx(FINUC.plr[isec]*FINUC.cxr[isec]);
2321 momentum.SetPy(FINUC.plr[isec]*FINUC.cyr[isec]);
2322 momentum.SetPz(FINUC.plr[isec]*FINUC.czr[isec]);
2323 momentum.SetE(FINUC.tki[isec] + PAPROP.am[FINUC.kpart[isec]+6]);
bc021b12 2324 }
1de0a072 2325 else if (isec >= FINUC.np && isec < FINUC.np + FHEAVY.npheav) {
2326 Int_t jsec = isec - FINUC.np;
2327 particleId = FHEAVY.kheavy[jsec]; // this is Fluka id !!!
2328 position.SetX(fXsco);
2329 position.SetY(fYsco);
2330 position.SetZ(fZsco);
2331 position.SetT(TRACKR.atrack);
2332// position.SetT(TRACKR.atrack+FHEAVY.agheav[jsec]); //not yet implem.
2333 momentum.SetPx(FHEAVY.pheavy[jsec]*FHEAVY.cxheav[jsec]);
2334 momentum.SetPy(FHEAVY.pheavy[jsec]*FHEAVY.cyheav[jsec]);
2335 momentum.SetPz(FHEAVY.pheavy[jsec]*FHEAVY.czheav[jsec]);
2336 if (FHEAVY.tkheav[jsec] >= 3 && FHEAVY.tkheav[jsec] <= 6)
2337 momentum.SetE(FHEAVY.tkheav[jsec] + PAPROP.am[jsec+6]);
2338 else if (FHEAVY.tkheav[jsec] > 6)
2339 momentum.SetE(FHEAVY.tkheav[jsec] + FHEAVY.amnhea[jsec]); // to be checked !!!
2340 }
2341 else
2342 Warning("GetSecondary","isec out of range");
2343 }
2344 else
2345 Warning("GetSecondary","no secondaries available");
2346} // end of GetSecondary
fa3d1cc7 2347
adbc5ae1 2348TMCProcess TFluka::ProdProcess(Int_t) const
fa3d1cc7 2349// Name of the process that has produced the secondary particles
2350// in the current step
bc021b12 2351{
1de0a072 2352 const TMCProcess kIpNoProc = kPNoProcess;
2353 const TMCProcess kIpPDecay = kPDecay;
2354 const TMCProcess kIpPPair = kPPair;
2355// const TMCProcess kIpPPairFromPhoton = kPPairFromPhoton;
2356// const TMCProcess kIpPPairFromVirtualPhoton = kPPairFromVirtualPhoton;
2357 const TMCProcess kIpPCompton = kPCompton;
2358 const TMCProcess kIpPPhotoelectric = kPPhotoelectric;
2359 const TMCProcess kIpPBrem = kPBrem;
2360// const TMCProcess kIpPBremFromHeavy = kPBremFromHeavy;
2361// const TMCProcess kIpPBremFromElectronOrPositron = kPBremFromElectronOrPositron;
2362 const TMCProcess kIpPDeltaRay = kPDeltaRay;
2363// const TMCProcess kIpPMoller = kPMoller;
2364// const TMCProcess kIpPBhabha = kPBhabha;
2365 const TMCProcess kIpPAnnihilation = kPAnnihilation;
2366// const TMCProcess kIpPAnnihilInFlight = kPAnnihilInFlight;
2367// const TMCProcess kIpPAnnihilAtRest = kPAnnihilAtRest;
2368 const TMCProcess kIpPHadronic = kPHadronic;
2369 const TMCProcess kIpPMuonNuclear = kPMuonNuclear;
2370 const TMCProcess kIpPPhotoFission = kPPhotoFission;
2371 const TMCProcess kIpPRayleigh = kPRayleigh;
b0d8df96 2372// const TMCProcess kIpPCerenkov = kPCerenkov;
2373// const TMCProcess kIpPSynchrotron = kPSynchrotron;
bc021b12 2374
1de0a072 2375 Int_t mugamma = TRACKR.jtrack == 7 || TRACKR.jtrack == 10 || TRACKR.jtrack == 11;
70541a80 2376 if (fIcode == 102) return kIpPDecay;
2377 else if (fIcode == 104 || fIcode == 217) return kIpPPair;
2378// else if (fIcode == 104) return kIpPairFromPhoton;
2379// else if (fIcode == 217) return kIpPPairFromVirtualPhoton;
2380 else if (fIcode == 219) return kIpPCompton;
2381 else if (fIcode == 221) return kIpPPhotoelectric;
2382 else if (fIcode == 105 || fIcode == 208) return kIpPBrem;
2383// else if (fIcode == 105) return kIpPBremFromHeavy;
2384// else if (fIcode == 208) return kPBremFromElectronOrPositron;
2385 else if (fIcode == 103 || fIcode == 400) return kIpPDeltaRay;
2386 else if (fIcode == 210 || fIcode == 212) return kIpPDeltaRay;
2387// else if (fIcode == 210) return kIpPMoller;
2388// else if (fIcode == 212) return kIpPBhabha;
2389 else if (fIcode == 214 || fIcode == 215) return kIpPAnnihilation;
2390// else if (fIcode == 214) return kIpPAnnihilInFlight;
2391// else if (fIcode == 215) return kIpPAnnihilAtRest;
2392 else if (fIcode == 101) return kIpPHadronic;
2393 else if (fIcode == 101) {
1de0a072 2394 if (!mugamma) return kIpPHadronic;
2395 else if (TRACKR.jtrack == 7) return kIpPPhotoFission;
2396 else return kIpPMuonNuclear;
2397 }
70541a80 2398 else if (fIcode == 225) return kIpPRayleigh;
bc021b12 2399// Fluka codes 100, 300 and 400 still to be investigasted
1de0a072 2400 else return kIpNoProc;
bc021b12 2401}
fa3d1cc7 2402
2403//Int_t StepProcesses(TArrayI &proc) const
2404// Return processes active in the current step
2405//{
2406//ck = total energy of the particl ????????????????
2407//}
2408
2409
b0d8df96 2410Int_t TFluka::VolId2Mate(Int_t id) const
2411{
2412//
2413// Returns the material number for a given volume ID
2414//
fee5ea25 2415 if (fVerbosityLevel >= 3)
12d57e74 2416 printf("VolId2Mate %d %d\n", id, fMediaByRegion[id-1]);
b0d8df96 2417 return fMediaByRegion[id-1];
2418}
2419
2420const char* TFluka::VolName(Int_t id) const
2421{
2422//
2423// Returns the volume name for a given volume ID
2424//
2425 FlukaVolume* vol = dynamic_cast<FlukaVolume*>((*fVolumeMediaMap)[id-1]);
2426 const char* name = vol->GetName();
fee5ea25 2427 if (fVerbosityLevel >= 3)
b0d8df96 2428 printf("VolName %d %s \n", id, name);
2429 return name;
2430}
2431
2432Int_t TFluka::VolId(const Text_t* volName) const
2433{
2434//
2435// Converts from volume name to volume ID.
2436// Time consuming. (Only used during set-up)
2437// Could be replaced by hash-table
2438//
2439 char tmp[5];
2440 Int_t i =0;
2441 for (i = 0; i < fNVolumes; i++)
2442 {
2443 FlukaVolume* vol = dynamic_cast<FlukaVolume*>((*fVolumeMediaMap)[i]);
2444 TString name = vol->GetName();
2445 strcpy(tmp, name.Data());
2446 tmp[4] = '\0';
2447 if (!strcmp(tmp, volName)) break;
2448 }
2449 i++;
2450
2451 return i;
2452}
2453
2454
2455Int_t TFluka::CurrentVolID(Int_t& copyNo) const
2456{
2457//
2458// Return the logical id and copy number corresponding to the current fluka region
2459//
2460 int ir = fCurrentFlukaRegion;
2461 int id = (FGeometryInit::GetInstance())->CurrentVolID(ir, copyNo);
12d57e74 2462 copyNo++;
fee5ea25 2463 if (fVerbosityLevel >= 3)
b0d8df96 2464 printf("CurrentVolID: %d %d %d \n", ir, id, copyNo);
2465 return id;
b0d8df96 2466}
2467
2468Int_t TFluka::CurrentVolOffID(Int_t off, Int_t& copyNo) const
2469{
2470//
2471// Return the logical id and copy number of off'th mother
2472// corresponding to the current fluka region
2473//
2474 if (off == 0)
2475 return CurrentVolID(copyNo);
2476
2477 int ir = fCurrentFlukaRegion;
2478 int id = (FGeometryInit::GetInstance())->CurrentVolOffID(ir, off, copyNo);
12d57e74 2479 copyNo++;
fee5ea25 2480 if (fVerbosityLevel >= 3)
b0d8df96 2481 printf("CurrentVolOffID: %d %d %d \n", ir, id, copyNo);
2482 if (id == -1)
fee5ea25 2483 if (fVerbosityLevel >= 0)
b0d8df96 2484 printf("CurrentVolOffID: Warning Mother not found !!!\n");
2485 return id;
2486}
2487
2488
2489const char* TFluka::CurrentVolName() const
2490{
2491//
2492// Return the current volume name
2493//
2494 Int_t copy;
2495 Int_t id = TFluka::CurrentVolID(copy);
2496 const char* name = TFluka::VolName(id);
fee5ea25 2497 if (fVerbosityLevel >= 3)
b0d8df96 2498 printf("CurrentVolumeName: %d %s \n", fCurrentFlukaRegion, name);
2499 return name;
2500}
2501
2502const char* TFluka::CurrentVolOffName(Int_t off) const
2503{
2504//
2505// Return the volume name of the off'th mother of the current volume
2506//
2507 Int_t copy;
2508 Int_t id = TFluka::CurrentVolOffID(off, copy);
2509 const char* name = TFluka::VolName(id);
fee5ea25 2510 if (fVerbosityLevel >= 3)
b0d8df96 2511 printf("CurrentVolumeOffName: %d %s \n", fCurrentFlukaRegion, name);
2512 return name;
2513}
2514
2515Int_t TFluka::CurrentMaterial(Float_t &a, Float_t &z,
2516 Float_t &dens, Float_t &radl, Float_t &absl) const
2517{
2518//
2519// Return the current medium number
2520//
2521 Int_t copy;
2522 Int_t id = TFluka::CurrentVolID(copy);
2523 Int_t med = TFluka::VolId2Mate(id);
fee5ea25 2524 if (fVerbosityLevel >= 3)
b0d8df96 2525 printf("CurrentMaterial: %d %d \n", fCurrentFlukaRegion, med);
2526 return med;
2527}
2528
dc37cac6 2529void TFluka::Gmtod(Float_t* xm, Float_t* xd, Int_t iflag)
2530 {
2531// Transforms a position from the world reference frame
2532// to the current volume reference frame.
2533//
2534// Geant3 desription:
2535// ==================
2536// Computes coordinates XD (in DRS)
2537// from known coordinates XM in MRS
2538// The local reference system can be initialized by
2539// - the tracking routines and GMTOD used in GUSTEP
2540// - a call to GMEDIA(XM,NUMED)
2541// - a call to GLVOLU(NLEVEL,NAMES,NUMBER,IER)
2542// (inverse routine is GDTOM)
2543//
2544// If IFLAG=1 convert coordinates
2545// IFLAG=2 convert direction cosinus
2546//
2547// ---
2548 Double_t xmD[3], xdD[3];
2549 xmD[0] = xm[0]; xmD[1] = xm[1]; xmD[2] = xm[2];
2550 (FGeometryInit::GetInstance())->Gmtod(xmD, xdD, iflag);
2551 xd[0] = xdD[0]; xd[1] = xdD[1]; xd[2] = xdD[2];
2552 }
2553
2554
2555void TFluka::Gmtod(Double_t* xm, Double_t* xd, Int_t iflag)
2556 {
2557// Transforms a position from the world reference frame
2558// to the current volume reference frame.
2559//
2560// Geant3 desription:
2561// ==================
2562// Computes coordinates XD (in DRS)
2563// from known coordinates XM in MRS
2564// The local reference system can be initialized by
2565// - the tracking routines and GMTOD used in GUSTEP
2566// - a call to GMEDIA(XM,NUMED)
2567// - a call to GLVOLU(NLEVEL,NAMES,NUMBER,IER)
2568// (inverse routine is GDTOM)
2569//
2570// If IFLAG=1 convert coordinates
2571// IFLAG=2 convert direction cosinus
2572//
2573// ---
72f84f29 2574 (FGeometryInit::GetInstance())->Gmtod(xm, xd, iflag);
dc37cac6 2575 }
2576
2577void TFluka::Gdtom(Float_t* xd, Float_t* xm, Int_t iflag)
2578 {
2579// Transforms a position from the current volume reference frame
2580// to the world reference frame.
2581//
2582// Geant3 desription:
2583// ==================
2584// Computes coordinates XM (Master Reference System
2585// knowing the coordinates XD (Detector Ref System)
2586// The local reference system can be initialized by
2587// - the tracking routines and GDTOM used in GUSTEP
2588// - a call to GSCMED(NLEVEL,NAMES,NUMBER)
2589// (inverse routine is GMTOD)
2590//
2591// If IFLAG=1 convert coordinates
2592// IFLAG=2 convert direction cosinus
2593//
2594// ---
72f84f29 2595 Double_t xmD[3], xdD[3];
2596 xdD[0] = xd[0]; xdD[1] = xd[1]; xdD[2] = xd[2];
2597 (FGeometryInit::GetInstance())->Gdtom(xdD, xmD, iflag);
2598 xm[0] = xmD[0]; xm[1] = xmD[1]; xm[2] = xmD[2];
dc37cac6 2599 }
2600void TFluka::Gdtom(Double_t* xd, Double_t* xm, Int_t iflag)
2601 {
2602// Transforms a position from the current volume reference frame
2603// to the world reference frame.
2604//
2605// Geant3 desription:
2606// ==================
2607// Computes coordinates XM (Master Reference System
2608// knowing the coordinates XD (Detector Ref System)
2609// The local reference system can be initialized by
2610// - the tracking routines and GDTOM used in GUSTEP
2611// - a call to GSCMED(NLEVEL,NAMES,NUMBER)
2612// (inverse routine is GMTOD)
2613//
2614// If IFLAG=1 convert coordinates
2615// IFLAG=2 convert direction cosinus
2616//
2617// ---
2618
72f84f29 2619 (FGeometryInit::GetInstance())->Gdtom(xd, xm, iflag);
dc37cac6 2620 }
b0d8df96 2621
fa3d1cc7 2622// ===============================================================
2623void TFluka::FutoTest()
2624{
fee5ea25 2625 Int_t icode, mreg, newreg, particleId;
2626 Double_t rull, xsco, ysco, zsco;
2627 TLorentzVector position, momentum;
2628 icode = GetIcode();
2629 if (icode == 0) {
2630 if (fVerbosityLevel >=3)
2631 cout << " icode=" << icode << endl;
2632 } else if (icode > 0 && icode <= 5) {
fa3d1cc7 2633// mgdraw
fee5ea25 2634 mreg = GetMreg();
2635 if (fVerbosityLevel >=3)
2636 cout << " icode=" << icode
2637 << " mreg=" << mreg
2638 << endl;
2639 TrackPosition(position);
2640 TrackMomentum(momentum);
2641 if (fVerbosityLevel >=3) {
2642 cout << "TLorentzVector positionX=" << position.X()
2643 << "positionY=" << position.Y()
2644 << "positionZ=" << position.Z()
2645 << "timeT=" << position.T() << endl;
2646 cout << "TLorentzVector momentumX=" << momentum.X()
2647 << "momentumY=" << momentum.Y()
2648 << "momentumZ=" << momentum.Z()
2649 << "energyE=" << momentum.E() << endl;
2650 cout << "TrackStep=" << TrackStep() << endl;
2651 cout << "TrackLength=" << TrackLength() << endl;
2652 cout << "TrackTime=" << TrackTime() << endl;
2653 cout << "Edep=" << Edep() << endl;
2654 cout << "TrackPid=" << TrackPid() << endl;
2655 cout << "TrackCharge=" << TrackCharge() << endl;
2656 cout << "TrackMass=" << TrackMass() << endl;
2657 cout << "Etot=" << Etot() << endl;
2658 cout << "IsNewTrack=" << IsNewTrack() << endl;
2659 cout << "IsTrackInside=" << IsTrackInside() << endl;
2660 cout << "IsTrackEntering=" << IsTrackEntering() << endl;
2661 cout << "IsTrackExiting=" << IsTrackExiting() << endl;
2662 cout << "IsTrackOut=" << IsTrackOut() << endl;
2663 cout << "IsTrackDisappeared=" << IsTrackDisappeared() << endl;
2664 cout << "IsTrackAlive=" << IsTrackAlive() << endl;
2665 }
2666
2667 Float_t x = position.X();
2668 Float_t y = position.Y();
2669 Float_t z = position.Z();
2670 Float_t xm[3];
2671 Float_t xd[3];
2672 xm[0] = x; xm[1] = y; xm[2] = z;
2673 if (fVerbosityLevel >= 3)
2674 printf("Global trackPosition: %f %f %f \n", x, y, z);
2675 Gmtod(xm, xd, 1);
2676 if (fVerbosityLevel >= 3)
2677 printf("Local trackPosition: %f %f %f \n", xd[0], xd[1], xd[2]);
2678 Gdtom(xd, xm, 1);
2679 if (fVerbosityLevel >= 3)
2680 printf("New trackPosition: %f %f %f \n", xm[0], xm[1], xm[2]);
2681 } else if((icode >= 10 && icode <= 15) ||
2682 (icode >= 20 && icode <= 24) ||
2683 (icode >= 30 && icode <= 33) ||
2684 (icode >= 40 && icode <= 41) ||
2685 (icode >= 50 && icode <= 52)) {
fa3d1cc7 2686// endraw
fee5ea25 2687 mreg = GetMreg();
2688 rull = GetRull();
2689 xsco = GetXsco();
2690 ysco = GetYsco();
2691 zsco = GetZsco();
2692
2693 if (fVerbosityLevel >=3) {
2694 cout << " icode=" << icode
2695 << " mreg=" << mreg
2696 << " rull=" << rull
2697 << " xsco=" << xsco
2698 << " ysco=" << ysco
2699 << " zsco=" << zsco << endl;
2700 }
2701 TrackPosition(position);
2702 TrackMomentum(momentum);
2703 if (fVerbosityLevel >=3) {
2704 cout << "Edep=" << Edep() << endl;
2705 cout << "Etot=" << Etot() << endl;
2706 cout << "TrackPid=" << TrackPid() << endl;
2707 cout << "TrackCharge=" << TrackCharge() << endl;
2708 cout << "TrackMass=" << TrackMass() << endl;
2709 cout << "IsTrackOut=" << IsTrackOut() << endl;
2710 cout << "IsTrackDisappeared=" << IsTrackDisappeared() << endl;
2711 cout << "IsTrackStop=" << IsTrackStop() << endl;
2712 cout << "IsTrackAlive=" << IsTrackAlive() << endl;
2713 }
2714 } else if((icode >= 100 && icode <= 105) ||
2715 (icode == 208) ||
2716 (icode == 210) ||
2717 (icode == 212) ||
2718 (icode >= 214 && icode <= 215) ||
2719 (icode == 217) ||
2720 (icode == 219) ||
2721 (icode == 221) ||
2722 (icode == 225) ||
2723 (icode == 300) ||
2724 (icode == 400)) {
fa3d1cc7 2725// usdraw
fee5ea25 2726 mreg = GetMreg();
2727 xsco = GetXsco();
2728 ysco = GetYsco();
2729 zsco = GetZsco();
2730
2731 if (fVerbosityLevel >=3) {
2732 cout << " icode=" << icode
2733 << " mreg=" << mreg
2734 << " xsco=" << xsco
2735 << " ysco=" << ysco
2736 << " zsco=" << zsco << endl;
2737 cout << "TrackPid=" << TrackPid() << endl;
2738 cout << "NSecondaries=" << NSecondaries() << endl;
2739 }
2740
2741 for (Int_t isec=0; isec< NSecondaries(); isec++) {
2742 TFluka::GetSecondary(isec, particleId, position, momentum);
2743 if (fVerbosityLevel >=3) {
2744 cout << "TLorentzVector positionX=" << position.X()
2745 << "positionY=" << position.Y()
2746 << "positionZ=" << position.Z()
2747 << "timeT=" << position.T() << endl;
2748 cout << "TLorentzVector momentumX=" << momentum.X()
2749 << "momentumY=" << momentum.Y()
2750 << "momentumZ=" << momentum.Z()
2751 << "energyE=" << momentum.E() << endl;
2752 cout << "TrackPid=" << particleId << endl;
2753 }
2754 }
2755 } else if((icode == 19) ||
2756 (icode == 29) ||
2757 (icode == 39) ||
2758 (icode == 49) ||
2759 (icode == 59)) {
2760 mreg = GetMreg();
2761 newreg = GetNewreg();
2762 xsco = GetXsco();
2763 ysco = GetYsco();
2764 zsco = GetZsco();
2765 if (fVerbosityLevel >=3) {
2766 cout << " icode=" << icode
2767 << " mreg=" << mreg
2768 << " newreg=" << newreg
2769 << " xsco=" << xsco
2770 << " ysco=" << ysco
2771 << " zsco=" << zsco << endl;
2772 }
fa3d1cc7 2773 }
fa3d1cc7 2774} // end of FutoTest
b0d8df96 2775