]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TFluka/TFluka.cxx
Add ADC offset and change default digitazation parameters
[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
16/*
17$Log$
c230803a 18Revision 1.9 2002/12/06 12:41:29 morsch
19Mess from last merge cleaned up.
20
a7e55c80 21Revision 1.8 2002/12/06 12:28:44 morsch
22Region to media mapping corrected and improved.
23
6d4d27f2 24Revision 1.7 2002/12/06 12:21:32 morsch
25User stepping methods added (E. Futo)
26
fa3d1cc7 27Revision 1.6 2002/11/21 18:40:06 iglez2
28Media handling added
29
27b2f7fe 30Revision 1.5 2002/11/07 17:59:10 iglez2
31Included the geometry through geant4_vmc/FLUGG
32
bf3aa28e 33Revision 1.4 2002/11/04 16:00:46 iglez2
34The conversion between ID and PDG now uses Fluka routines and arrays which is more consistent.
35
f9cb2fec 36Revision 1.3 2002/10/22 15:12:14 alibrary
37Introducing Riostream.h
38
eae0fe66 39Revision 1.2 2002/10/14 14:57:40 hristov
40Merging the VirtualMC branch to the main development branch (HEAD)
41
b9d0a01d 42Revision 1.1.2.8 2002/10/08 16:33:17 iglez2
43LSOUIT is set to true before the second call to flukam.
44
45Revision 1.1.2.7 2002/10/08 09:30:37 iglez2
46Solved stupid missing ;
47
48Revision 1.1.2.6 2002/10/07 13:40:22 iglez2
49First implementations of the PDG <--> Fluka Id conversion routines
50
51Revision 1.1.2.5 2002/09/26 16:26:03 iglez2
52Added verbosity
53Call to gAlice->Generator()->Generate()
54
55Revision 1.1.2.4 2002/09/26 13:22:23 iglez2
56Naive implementation of ProcessRun and ProcessEvent
57Opening/Closing of input file (fInputFileName) with FORTRAN unit 5 before/after the first call to flukam inside Init()
58
59Revision 1.1.2.3 2002/09/20 15:35:51 iglez2
60Modification of LFDRTR. Value is passed to FLUKA !!!
61
62Revision 1.1.2.2 2002/09/18 14:34:44 iglez2
63Revised version with all pure virtual methods implemented
64
65Revision 1.1.2.1 2002/07/24 08:49:41 alibrary
66Adding TFluka to VirtualMC
67
68Revision 1.1 2002/07/05 13:10:07 morsch
69First commit of Fluka interface.
70
03ca248b 71*/
72
eae0fe66 73#include <Riostream.h>
b9d0a01d 74
6d4d27f2 75#include "TClonesArray.h"
03ca248b 76#include "TFluka.h"
b9d0a01d 77#include "TCallf77.h" //For the fortran calls
78#include "Fdblprc.h" //(DBLPRC) fluka common
b9d0a01d 79#include "Fepisor.h" //(EPISOR) fluka common
fa3d1cc7 80#include "Ffinuc.h" //(FINUC) fluka common
81#include "Fiounit.h" //(IOUNIT) fluka common
82#include "Fpaprop.h" //(PAPROP) fluka common
f9cb2fec 83#include "Fpart.h" //(PART) fluka common
fa3d1cc7 84#include "Ftrackr.h" //(TRACKR) fluka common
6d4d27f2 85#include "Fpaprop.h" //(PAPROP) fluka common
fa3d1cc7 86#include "Ffheavy.h" //(FHEAVY) fluka common
b9d0a01d 87
fa3d1cc7 88#include "TVirtualMC.h"
bf3aa28e 89#include "TG4GeometryManager.h" //For the geometry management
90#include "TG4DetConstruction.h" //For the detector construction
91
92#include "FGeometryInit.hh"
fa3d1cc7 93#include "TLorentzVector.h"
6d4d27f2 94#include "FlukaVolume.h"
bf3aa28e 95
b9d0a01d 96// Fluka methods that may be needed.
97#ifndef WIN32
98# define flukam flukam_
99# define fluka_openinp fluka_openinp_
100# define fluka_closeinp fluka_closeinp_
f9cb2fec 101# define mcihad mcihad_
102# define mpdgha mpdgha_
b9d0a01d 103#else
104# define flukam FLUKAM
105# define fluka_openinp FLUKA_OPENINP
106# define fluka_closeinp FLUKA_CLOSEINP
f9cb2fec 107# define mcihad MCIHAD
108# define mpdgha MPDGHA
b9d0a01d 109#endif
110
111extern "C"
112{
113 //
114 // Prototypes for FLUKA functions
115 //
116 void type_of_call flukam(const int&);
117 void type_of_call fluka_openinp(const int&, DEFCHARA);
118 void type_of_call fluka_closeinp(const int&);
f9cb2fec 119 int type_of_call mcihad(const int&);
120 int type_of_call mpdgha(const int&);
b9d0a01d 121}
122
123//
124// Class implementation for ROOT
125//
03ca248b 126ClassImp(TFluka)
b9d0a01d 127
128//
bf3aa28e 129//----------------------------------------------------------------------------
130// TFluka constructors and destructors.
b9d0a01d 131//____________________________________________________________________________
132TFluka::TFluka()
133 :TVirtualMC(),
134 fVerbosityLevel(0),
bf3aa28e 135 fInputFileName(""),
27b2f7fe 136 fDetector(0),
137 fCurrentFlukaRegion(-1)
b9d0a01d 138{
139 //
140 // Default constructor
141 //
142}
143
b9d0a01d 144TFluka::TFluka(const char *title, Int_t verbosity)
145 :TVirtualMC("TFluka",title),
146 fVerbosityLevel(verbosity),
bf3aa28e 147 fInputFileName(""),
27b2f7fe 148 fDetector(0),
149 fCurrentFlukaRegion(-1)
b9d0a01d 150{
151 if (fVerbosityLevel >=3)
152 cout << "==> TFluka::TFluka(" << title << ") constructor called." << endl;
153
bf3aa28e 154
155 // create geometry manager
156 if (fVerbosityLevel >=2)
157 cout << "\t* Creating G4 Geometry manager..." << endl;
158 fGeometryManager = new TG4GeometryManager();
159 if (fVerbosityLevel >=2)
160 cout << "\t* Creating G4 Detector..." << endl;
161 fDetector = new TG4DetConstruction();
162 FGeometryInit* geominit = FGeometryInit::GetInstance();
163 if (geominit)
164 geominit->setDetConstruction(fDetector);
165 else {
166 cerr << "ERROR: Could not create FGeometryInit!" << endl;
167 cerr << " Exiting!!!" << endl;
168 abort();
169 }
170
b9d0a01d 171 if (fVerbosityLevel >=3)
172 cout << "<== TFluka::TFluka(" << title << ") constructor called." << endl;
6d4d27f2 173
174 fVolumeMediaMap = new TClonesArray("FlukaVolume",1000);
175 fNVolumes = 0;
176 fMediaByRegion = 0;
b9d0a01d 177}
178
bf3aa28e 179TFluka::~TFluka() {
180 if (fVerbosityLevel >=3)
181 cout << "==> TFluka::~TFluka() destructor called." << endl;
182
183 delete fGeometryManager;
6d4d27f2 184 fVolumeMediaMap->Delete();
185 delete fVolumeMediaMap;
186
bf3aa28e 187
188 if (fVerbosityLevel >=3)
189 cout << "<== TFluka::~TFluka() destructor called." << endl;
190}
191
192//
193//_____________________________________________________________________________
194// TFluka control methods
b9d0a01d 195//____________________________________________________________________________
196void TFluka::Init() {
197 if (fVerbosityLevel >=3)
198 cout << "==> TFluka::Init() called." << endl;
199
200 if (fVerbosityLevel >=2)
201 cout << "\t* Changing lfdrtr = (" << (GLOBAL.lfdrtr?'T':'F')
202 << ") in fluka..." << endl;
203 GLOBAL.lfdrtr = true;
204
205 if (fVerbosityLevel >=2)
206 cout << "\t* Opening file " << fInputFileName << endl;
207 const char* fname = fInputFileName;
208 fluka_openinp(lunin, PASSCHARA(fname));
209
210 if (fVerbosityLevel >=2)
211 cout << "\t* Calling flukam..." << endl;
bf3aa28e 212 flukam(1);
b9d0a01d 213
214 if (fVerbosityLevel >=2)
215 cout << "\t* Closing file " << fInputFileName << endl;
216 fluka_closeinp(lunin);
217
218 if (fVerbosityLevel >=3)
219 cout << "<== TFluka::Init() called." << endl;
fa3d1cc7 220
6d4d27f2 221 FinishGeometry();
222
b9d0a01d 223}
224
bf3aa28e 225void TFluka::FinishGeometry() {
6d4d27f2 226//
227// Build-up table with region to medium correspondance
228//
229 char tmp[5];
230
bf3aa28e 231 if (fVerbosityLevel >=3)
232 cout << "==> TFluka::FinishGeometry() called." << endl;
233
6d4d27f2 234// fGeometryManager->Ggclos();
bf3aa28e 235
6d4d27f2 236 FGeometryInit* flugg = FGeometryInit::GetInstance();
237
238 fMediaByRegion = new Int_t[fNVolumes+2];
239 for (Int_t i = 0; i < fNVolumes; i++)
240 {
241 FlukaVolume* vol = dynamic_cast<FlukaVolume*>((*fVolumeMediaMap)[i]);
242 TString volName = vol->GetName();
243 Int_t media = vol->GetMedium();
244 printf("Finish Geometry: volName, media %d %s %d \n", i, volName.Data(), media);
245 strcpy(tmp, volName.Data());
246 tmp[4] = '\0';
247 flugg->SetMediumFromName(tmp, media);
27b2f7fe 248 }
6d4d27f2 249
250 flugg->BuildMediaMap();
27b2f7fe 251
bf3aa28e 252 if (fVerbosityLevel >=3)
253 cout << "<== TFluka::FinishGeometry() called." << endl;
254}
255
256void TFluka::BuildPhysics() {
257 if (fVerbosityLevel >=3)
258 cout << "==> TFluka::BuildPhysics() called." << endl;
259
260
261 if (fVerbosityLevel >=3)
262 cout << "<== TFluka::BuildPhysics() called." << endl;
263}
264
b9d0a01d 265void TFluka::ProcessEvent() {
266 if (fVerbosityLevel >=3)
267 cout << "==> TFluka::ProcessEvent() called." << endl;
268
269 if (fVerbosityLevel >=3)
270 cout << "<== TFluka::ProcessEvent() called." << endl;
271}
272
bf3aa28e 273
b9d0a01d 274void TFluka::ProcessRun(Int_t nevent) {
275 if (fVerbosityLevel >=3)
276 cout << "==> TFluka::ProcessRun(" << nevent << ") called."
277 << endl;
278
279 if (fVerbosityLevel >=2) {
280 cout << "\t* GLOBAL.fdrtr = " << (GLOBAL.lfdrtr?'T':'F') << endl;
281 cout << "\t* Calling flukam again..." << endl;
282 }
283 fApplication->GeneratePrimaries();
284 EPISOR.lsouit = true;
bf3aa28e 285 flukam(1);
b9d0a01d 286
287 if (fVerbosityLevel >=3)
288 cout << "<== TFluka::ProcessRun(" << nevent << ") called."
289 << endl;
290}
291
bf3aa28e 292//_____________________________________________________________________________
293// methods for building/management of geometry
294//____________________________________________________________________________
295// functions from GCONS
296void TFluka::Gfmate(Int_t imat, char *name, Float_t &a, Float_t &z,
297 Float_t &dens, Float_t &radl, Float_t &absl,
298 Float_t* ubuf, Int_t& nbuf) {
299//
300 fGeometryManager->Gfmate(imat, name, a, z, dens, radl, absl, ubuf, nbuf);
301}
302
303void TFluka::Gfmate(Int_t imat, char *name, Double_t &a, Double_t &z,
304 Double_t &dens, Double_t &radl, Double_t &absl,
305 Double_t* ubuf, Int_t& nbuf) {
306//
307 fGeometryManager->Gfmate(imat, name, a, z, dens, radl, absl, ubuf, nbuf);
308}
309
310// detector composition
311void TFluka::Material(Int_t& kmat, const char* name, Double_t a,
312 Double_t z, Double_t dens, Double_t radl, Double_t absl,
313 Float_t* buf, Int_t nwbuf) {
314//
315 fGeometryManager
316 ->Material(kmat, name, a, z, dens, radl, absl, buf, nwbuf);
317}
318void TFluka::Material(Int_t& kmat, const char* name, Double_t a,
319 Double_t z, Double_t dens, Double_t radl, Double_t absl,
320 Double_t* buf, Int_t nwbuf) {
321//
322 fGeometryManager
323 ->Material(kmat, name, a, z, dens, radl, absl, buf, nwbuf);
324}
325
326void TFluka::Mixture(Int_t& kmat, const char *name, Float_t *a,
327 Float_t *z, Double_t dens, Int_t nlmat, Float_t *wmat) {
328//
329 fGeometryManager
330 ->Mixture(kmat, name, a, z, dens, nlmat, wmat);
331}
332void TFluka::Mixture(Int_t& kmat, const char *name, Double_t *a,
333 Double_t *z, Double_t dens, Int_t nlmat, Double_t *wmat) {
334//
335 fGeometryManager
336 ->Mixture(kmat, name, a, z, dens, nlmat, wmat);
337}
338
339void TFluka::Medium(Int_t& kmed, const char *name, Int_t nmat,
340 Int_t isvol, Int_t ifield, Double_t fieldm, Double_t tmaxfd,
341 Double_t stemax, Double_t deemax, Double_t epsil,
342 Double_t stmin, Float_t* ubuf, Int_t nbuf) {
343 //
344 fGeometryManager
345 ->Medium(kmed, name, nmat, isvol, ifield, fieldm, tmaxfd, stemax, deemax,
346 epsil, stmin, ubuf, nbuf);
347}
348void TFluka::Medium(Int_t& kmed, const char *name, Int_t nmat,
349 Int_t isvol, Int_t ifield, Double_t fieldm, Double_t tmaxfd,
350 Double_t stemax, Double_t deemax, Double_t epsil,
351 Double_t stmin, Double_t* ubuf, Int_t nbuf) {
352 //
353 fGeometryManager
354 ->Medium(kmed, name, nmat, isvol, ifield, fieldm, tmaxfd, stemax, deemax,
355 epsil, stmin, ubuf, nbuf);
356}
357
358void TFluka::Matrix(Int_t& krot, Double_t thetaX, Double_t phiX,
359 Double_t thetaY, Double_t phiY, Double_t thetaZ,
360 Double_t phiZ) {
361//
362 fGeometryManager
363 ->Matrix(krot, thetaX, phiX, thetaY, phiY, thetaZ, phiZ);
364}
365
366void TFluka::Gstpar(Int_t itmed, const char *param, Double_t parval) {
367//
368 fGeometryManager->Gstpar(itmed, param, parval);
369}
370
371// functions from GGEOM
372Int_t TFluka::Gsvolu(const char *name, const char *shape, Int_t nmed,
373 Float_t *upar, Int_t np) {
374//
6d4d27f2 375// fVolumeMediaMap[TString(name)] = nmed;
376 TClonesArray &lvols = *fVolumeMediaMap;
377 new(lvols[fNVolumes++])
378 FlukaVolume(name, nmed);
379 return fGeometryManager->Gsvolu(name, shape, nmed, upar, np);
bf3aa28e 380}
381Int_t TFluka::Gsvolu(const char *name, const char *shape, Int_t nmed,
382 Double_t *upar, Int_t np) {
383//
6d4d27f2 384 TClonesArray &lvols = *fVolumeMediaMap;
385 new(lvols[fNVolumes++])
386 FlukaVolume(name, nmed);
387
388 return fGeometryManager->Gsvolu(name, shape, nmed, upar, np);
bf3aa28e 389}
390
391void TFluka::Gsdvn(const char *name, const char *mother, Int_t ndiv,
392 Int_t iaxis) {
393//
6d4d27f2 394 fGeometryManager->Gsdvn(name, mother, ndiv, iaxis);
bf3aa28e 395}
396
397void TFluka::Gsdvn2(const char *name, const char *mother, Int_t ndiv,
398 Int_t iaxis, Double_t c0i, Int_t numed) {
399//
6d4d27f2 400 TClonesArray &lvols = *fVolumeMediaMap;
401 new(lvols[fNVolumes++])
402 FlukaVolume(name, numed);
403 fGeometryManager->Gsdvn2(name, mother, ndiv, iaxis, c0i, numed);
bf3aa28e 404}
405
406void TFluka::Gsdvt(const char *name, const char *mother, Double_t step,
407 Int_t iaxis, Int_t numed, Int_t ndvmx) {
6d4d27f2 408//
409 TClonesArray &lvols = *fVolumeMediaMap;
410 new(lvols[fNVolumes++])
411 FlukaVolume(name, numed);
412 fGeometryManager->Gsdvt(name, mother, step, iaxis, numed, ndvmx);
bf3aa28e 413}
414
415void TFluka::Gsdvt2(const char *name, const char *mother, Double_t step,
416 Int_t iaxis, Double_t c0, Int_t numed, Int_t ndvmx) {
417//
6d4d27f2 418 TClonesArray &lvols = *fVolumeMediaMap;
419 new(lvols[fNVolumes++])
420 FlukaVolume(name, numed);
421 fGeometryManager->Gsdvt2(name, mother, step, iaxis, c0, numed, ndvmx);
bf3aa28e 422}
423
424void TFluka::Gsord(const char *name, Int_t iax) {
425//
426 fGeometryManager->Gsord(name, iax);
427}
428
429void TFluka::Gspos(const char *name, Int_t nr, const char *mother,
430 Double_t x, Double_t y, Double_t z, Int_t irot,
431 const char *konly) {
432//
433 fGeometryManager->Gspos(name, nr, mother, x, y, z, irot, konly);
434}
435
436void TFluka::Gsposp(const char *name, Int_t nr, const char *mother,
437 Double_t x, Double_t y, Double_t z, Int_t irot,
438 const char *konly, Float_t *upar, Int_t np) {
439 //
440 fGeometryManager->Gsposp(name, nr, mother, x, y, z, irot, konly, upar, np);
441}
442void TFluka::Gsposp(const char *name, Int_t nr, const char *mother,
443 Double_t x, Double_t y, Double_t z, Int_t irot,
444 const char *konly, Double_t *upar, Int_t np) {
445 //
446 fGeometryManager->Gsposp(name, nr, mother, x, y, z, irot, konly, upar, np);
447}
448
449void TFluka::Gsbool(const char* onlyVolName, const char* manyVolName) {
450//
451 fGeometryManager->Gsbool(onlyVolName, manyVolName);
452}
453
454void TFluka::SetCerenkov(Int_t itmed, Int_t npckov, Float_t *ppckov,
455 Float_t *absco, Float_t *effic, Float_t *rindex) {
456//
457 fGeometryManager->SetCerenkov(itmed, npckov, ppckov, absco, effic, rindex);
458}
459void TFluka::SetCerenkov(Int_t itmed, Int_t npckov, Double_t *ppckov,
460 Double_t *absco, Double_t *effic, Double_t *rindex) {
461//
462 fGeometryManager->SetCerenkov(itmed, npckov, ppckov, absco, effic, rindex);
463}
464
465// Euclid
466void TFluka::WriteEuclid(const char* fileName, const char* topVol,
467 Int_t number, Int_t nlevel) {
468//
469 fGeometryManager->WriteEuclid(fileName, topVol, number, nlevel);
470}
471
472
473
27b2f7fe 474//_____________________________________________________________________________
475// methods needed by the stepping
476//____________________________________________________________________________
6d4d27f2 477
27b2f7fe 478Int_t TFluka::GetMedium() const {
6d4d27f2 479 FGeometryInit* flugg = FGeometryInit::GetInstance();
480 return flugg->GetMedium(fCurrentFlukaRegion);
27b2f7fe 481}
bf3aa28e 482
483
484
485//____________________________________________________________________________
486// ID <--> PDG transformations
b9d0a01d 487//_____________________________________________________________________________
488Int_t TFluka::IdFromPDG(Int_t pdg) const
489{
490 //
f9cb2fec 491 // Return Fluka code from PDG and pseudo ENDF code
492
493 // MCIHAD() goes from pdg to fluka internal.
494 Int_t intfluka = mcihad(pdg);
495 // KPTOIP array goes from internal to official
496 return GetFlukaKPTOIP(intfluka);
b9d0a01d 497}
498
b9d0a01d 499Int_t TFluka::PDGFromId(Int_t id) const
500{
501 //
f9cb2fec 502 // Return PDG code and pseudo ENDF code from Fluka code
c230803a 503 // IPTOKP array goes from official to internal
504
505 Int_t intfluka = GetFlukaIPTOKP(id);
b9d0a01d 506
c230803a 507 if (! intfluka) {
508 printf("\n Warning PDGFromId: internal id of %d is zero \n", id);
509 return -1;
510 }
511
512 //MPKDHA() goes from internal to PDG
513 return mpdgha(intfluka);
6d4d27f2 514}
515
fa3d1cc7 516//_____________________________________________________________________________
517// methods for step management
518//____________________________________________________________________________
519//
520// dynamic properties
521//
522void TFluka::TrackPosition(TLorentzVector& position) const
523{
524// Return the current position in the master reference frame of the
525// track being transported
526// TRACKR.atrack = age of the particle
527// TRACKR.xtrack = x-position of the last point
528// TRACKR.ytrack = y-position of the last point
529// TRACKR.ztrack = z-position of the last point
530 position.SetX(TRACKR.xtrack[TRACKR.ntrack]);
531 position.SetY(TRACKR.ytrack[TRACKR.ntrack]);
532 position.SetZ(TRACKR.ztrack[TRACKR.ntrack]);
533 position.SetT(TRACKR.atrack);
534}
535
536void TFluka::TrackMomentum(TLorentzVector& momentum) const
537{
538// Return the direction and the momentum (GeV/c) of the track
539// currently being transported
540// TRACKR.ptrack = momentum of the particle (not always defined, if
541// < 0 must be obtained from etrack)
542// TRACKR.cx,y,ztrck = direction cosines of the current particle
543// TRACKR.etrack = total energy of the particle
544// TRACKR.jtrack = identity number of the particle
545// PAPROP.am[TRACKR.jtrack] = particle mass in gev
546 if (TRACKR.ptrack >= 0) {
547 momentum.SetPx(TRACKR.ptrack*TRACKR.cxtrck);
548 momentum.SetPy(TRACKR.ptrack*TRACKR.cytrck);
549 momentum.SetPz(TRACKR.ptrack*TRACKR.cztrck);
550 momentum.SetE(TRACKR.etrack);
551 return;
552 }
553 else {
554 Double_t p = sqrt(TRACKR.etrack*TRACKR.etrack - PAPROP.am[TRACKR.jtrack]*PAPROP.am[TRACKR.jtrack]);
555 momentum.SetPx(p*TRACKR.cxtrck);
556 momentum.SetPy(p*TRACKR.cytrck);
557 momentum.SetPz(p*TRACKR.cztrck);
558 momentum.SetE(TRACKR.etrack);
559 return;
560 }
561}
562
563Double_t TFluka::TrackStep() const
564{
565// Return the length in centimeters of the current step
566// TRACKR.ctrack = total curved path
567 return TRACKR.ctrack;
568}
569
570Double_t TFluka::TrackLength() const
571{
572// It is wrong
573// should be the sum of all steps starting from the beginning of the track
574// for the time being returns only the length in centimeters of the current step
575 return TRACKR.ctrack;
576}
577
578Double_t TFluka::TrackTime() const
579{
580// Return the current time of flight of the track being transported
581// TRACKR.atrack = age of the particle
582 return TRACKR.atrack;
583}
584
585Double_t TFluka::Edep() const
586{
587// Energy deposition
588// if TRACKR.ntrack = 0, TRACKR.mtrack = 0:
589// -->local energy deposition (the value and the point are not recorded in TRACKR)
590// but in the variable "rull" of the procedure "endraw.cxx"
591// if TRACKR.ntrack > 0, TRACKR.mtrack = 0:
592// -->no energy loss along the track
593// if TRACKR.ntrack > 0, TRACKR.mtrack > 0:
594// -->energy loss distributed along the track
595// TRACKR.dtrack = energy deposition of the jth deposition even
596 if (TRACKR.ntrack == 0 && TRACKR.mtrack == 0)
597 return fRull;
598 else {
599 Double_t sum = 0;
600 for ( Int_t j=0;j<TRACKR.mtrack;j++) {
601 sum +=TRACKR.dtrack[j];
602 }
603 return sum;
604 }
605}
606
607Int_t TFluka::TrackPid() const
608{
609// Return the id of the particle transported
610// TRACKR.jtrack = identity number of the particle
611 return PDGFromId(TRACKR.jtrack);
612}
613
614Double_t TFluka::TrackCharge() const
615{
616// Return charge of the track currently transported
617// PAPROP.ichrge = electric charge of the particle
618 return PAPROP.ichrge[TRACKR.jtrack+6];
619}
620
621Double_t TFluka::TrackMass() const
622{
623// PAPROP.am = particle mass in GeV
624 return PAPROP.am[TRACKR.jtrack+6];
625}
626
627Double_t TFluka::Etot() const
628{
629// TRACKR.etrack = total energy of the particle
630 return TRACKR.etrack;
631}
632
633//
634// track status
635//
636Bool_t TFluka::IsNewTrack() const
637{
638// ???????????????,
639// True if the track is not at the boundary of the current volume
640// Not true in some cases in bxdraw - to be solved
641 return 1;
642}
643
644Bool_t TFluka::IsTrackInside() const
645{
646// True if the track is not at the boundary of the current volume
647// In Fluka a step is always inside one kind of material
648// If the step would go behind the region of one material,
649// it will be shortened to reach only the boundary.
650// Therefore IsTrackInside() is always true.
651// Not true in some cases in bxdraw - to be solved
652 return 1;
653}
654
655Bool_t TFluka::IsTrackEntering() const
656{
657// True if this is the first step of the track in the current volume
658// Boundary- (X) crossing
659// Icode = 19: boundary crossing - call from Kaskad
660// Icode = 29: boundary crossing - call from Emfsco
661// Icode = 39: boundary crossing - call from Kasneu
662// Icode = 49: boundary crossing - call from Kashea
663// Icode = 59: boundary crossing - call from Kasoph
664 if (fIcode == 19 ||
665 fIcode == 29 ||
666 fIcode == 39 ||
667 fIcode == 49 ||
668 fIcode == 59) return 1;
669 else return 0;
670}
671
672Bool_t TFluka::IsTrackExiting() const
673{
674// True if this is the last step of the track in the current volume
675// Boundary- (X) crossing
676// Icode = 19: boundary crossing - call from Kaskad
677// Icode = 29: boundary crossing - call from Emfsco
678// Icode = 39: boundary crossing - call from Kasneu
679// Icode = 49: boundary crossing - call from Kashea
680// Icode = 59: boundary crossing - call from Kasoph
681 if (fIcode == 19 ||
682 fIcode == 29 ||
683 fIcode == 39 ||
684 fIcode == 49 ||
685 fIcode == 59) return 1;
686 else return 0;
687}
688
689Bool_t TFluka::IsTrackOut() const
690{
691// True if the track is out of the setup
692// means escape
693// Icode = 14: escape - call from Kaskad
694// Icode = 23: escape - call from Emfsco
695// Icode = 32: escape - call from Kasneu
696// Icode = 40: escape - call from Kashea
697// Icode = 51: escape - call from Kasoph
698 if (fIcode == 14 ||
699 fIcode == 23 ||
700 fIcode == 32 ||
701 fIcode == 40 ||
702 fIcode == 51) return 1;
703 else return 0;
704}
705
706Bool_t TFluka::IsTrackDisappeared() const
707{
708// means all inelastic interactions and decays
709// fIcode from usdraw
710 if (fIcode == 101 || // inelastic interaction
711 fIcode == 102 || // particle decay
712 fIcode == 214 || // in-flight annihilation
713 fIcode == 215 || // annihilation at rest
714 fIcode == 217 || // pair production
715 fIcode == 221) return 1;
716 else return 0;
717}
718
719Bool_t TFluka::IsTrackStop() const
720{
721// True if the track energy has fallen below the threshold
722// means stopped by signal or below energy threshold
723// Icode = 12: stopping particle - call from Kaskad
724// Icode = 15: time kill - call from Kaskad
725// Icode = 21: below threshold, iarg=1 - call from Emfsco
726// Icode = 22: below threshold, iarg=2 - call from Emfsco
727// Icode = 24: time kill - call from Emfsco
728// Icode = 31: below threshold - call from Kasneu
729// Icode = 33: time kill - call from Kasneu
730// Icode = 41: time kill - call from Kashea
731// Icode = 52: time kill - call from Kasoph
732 if (fIcode == 12 ||
733 fIcode == 15 ||
734 fIcode == 21 ||
735 fIcode == 22 ||
736 fIcode == 24 ||
737 fIcode == 31 ||
738 fIcode == 33 ||
739 fIcode == 41 ||
740 fIcode == 52) return 1;
741 else return 0;
742}
743
744Bool_t TFluka::IsTrackAlive() const
745{
746// means not disappeared or not out
747 if (IsTrackDisappeared() || IsTrackOut() ) return 0;
748 else return 1;
749}
750
751//
752// secondaries
753//
754
755Int_t TFluka::NSecondaries() const
756// Number of secondary particles generated in the current step
757// fIcode = 100 = elastic interaction
758// fIcode = 101 = inelastic interaction
759// fIcode = 102 = particle decay
760// fIcode = 103 = delta ray
761// fIcode = 104 = pair production
762// fIcode = 105 = bremsstrahlung
763{
764 if (fIcode >= 100 && fIcode <= 105)
765 return FINUC.np + FHEAVY.npheav;
766 else
767 return -1;
768}
769
770void TFluka::GetSecondary(Int_t isec, Int_t& particleId,
771 TLorentzVector& position, TLorentzVector& momentum)
772//
773// fIcode = 100 = elastic interaction
774// fIcode = 101 = inelastic interaction
775// fIcode = 102 = particle decay
776// fIcode = 103 = delta ray
777// fIcode = 104 = pair production
778// fIcode = 105 = bremsstrahlung
779{
780 if (fIcode >= 100 && fIcode <= 105) {
781 if (isec >= 0 && isec < FINUC.np) {
782 particleId = PDGFromId(FINUC.kpart[isec]);
783 position.SetX(fXsco);
784 position.SetY(fYsco);
785 position.SetZ(fZsco);
786 position.SetT(FINUC.agesec[isec]);
787 momentum.SetPx(FINUC.plr[isec]*FINUC.cxr[isec]);
788 momentum.SetPy(FINUC.plr[isec]*FINUC.cyr[isec]);
789 momentum.SetPz(FINUC.plr[isec]*FINUC.czr[isec]);
790 momentum.SetE(FINUC.tki[isec] + PAPROP.am[FINUC.kpart[isec]+6]);
791 }
792 if (isec >= FINUC.np && isec < FINUC.np + FHEAVY.npheav) {
793 Int_t jsec = isec - FINUC.np;
794 particleId = FHEAVY.kheavy[jsec]; // this is Fluka id !!!
795 position.SetX(fXsco);
796 position.SetY(fYsco);
797 position.SetZ(fZsco);
798 position.SetT(FHEAVY.agheav[jsec]);
799 momentum.SetPx(FHEAVY.pheavy[jsec]*FHEAVY.cxheav[jsec]);
800 momentum.SetPy(FHEAVY.pheavy[jsec]*FHEAVY.cyheav[jsec]);
801 momentum.SetPz(FHEAVY.pheavy[jsec]*FHEAVY.czheav[jsec]);
802 if (FHEAVY.tkheav[jsec] >= 3 && FHEAVY.tkheav[jsec] <= 6)
803 momentum.SetE(FHEAVY.tkheav[jsec] + PAPROP.am[jsec+6]);
804 else if (FHEAVY.tkheav[jsec] > 6)
805 momentum.SetE(FHEAVY.tkheav[jsec] + FHEAVY.amnhea[jsec]); // to be checked !!!
806 }
807 }
808}
809
810//TMCProcess ProdProcess(Int_t isec) const
811// Name of the process that has produced the secondary particles
812// in the current step
813//{
814// will come from FINUC when called from USDRAW
815//}
816
817//Int_t StepProcesses(TArrayI &proc) const
818// Return processes active in the current step
819//{
820//ck = total energy of the particl ????????????????
821//}
822
823
824// ===============================================================
825void TFluka::FutoTest()
826{
827 Int_t icode, mreg, newreg, particleId;
828// Int_t medium;
829 Double_t rull, xsco, ysco, zsco;
830 TLorentzVector position, momentum;
831 icode = GetIcode();
832 if (icode == 0) {
833 cout << " icode=" << icode << endl;
834 /*
835 cout << "TLorentzVector positionX=" << position.X()
836 << "positionY=" << position.Y()
837 << "positionZ=" << position.Z()
838 << "timeT=" << position.T() << endl;
839 cout << "TLorentzVector momentumX=" << momentum.X()
840 << "momentumY=" << momentum.Y()
841 << "momentumZ=" << momentum.Z()
842 << "energyE=" << momentum.E() << endl;
843 cout << "TrackPid=" << TrackPid() << endl;
844 */
845 }
846
847 else if (icode > 0 && icode <= 5) {
848// mgdraw
849 mreg = GetMreg();
850// medium = GetMedium();
851 cout << " icode=" << icode
852 << " mreg=" << mreg
853// << " medium=" << medium
854 << endl;
855 TrackPosition(position);
856 TrackMomentum(momentum);
857 cout << "TLorentzVector positionX=" << position.X()
858 << "positionY=" << position.Y()
859 << "positionZ=" << position.Z()
860 << "timeT=" << position.T() << endl;
861 cout << "TLorentzVector momentumX=" << momentum.X()
862 << "momentumY=" << momentum.Y()
863 << "momentumZ=" << momentum.Z()
864 << "energyE=" << momentum.E() << endl;
865 cout << "TrackStep=" << TrackStep() << endl;
866 cout << "TrackLength=" << TrackLength() << endl;
867 cout << "TrackTime=" << TrackTime() << endl;
868 cout << "Edep=" << Edep() << endl;
869 cout << "TrackPid=" << TrackPid() << endl;
870 cout << "TrackCharge=" << TrackCharge() << endl;
871 cout << "TrackMass=" << TrackMass() << endl;
872 cout << "Etot=" << Etot() << endl;
873 cout << "IsNewTrack=" << IsNewTrack() << endl;
874 cout << "IsTrackInside=" << IsTrackInside() << endl;
875 cout << "IsTrackEntering=" << IsTrackEntering() << endl;
876 cout << "IsTrackExiting=" << IsTrackExiting() << endl;
877 cout << "IsTrackOut=" << IsTrackOut() << endl;
878 cout << "IsTrackDisappeared=" << IsTrackDisappeared() << endl;
879 cout << "IsTrackAlive=" << IsTrackAlive() << endl;
880 }
881
882 else if((icode >= 10 && icode <= 15) ||
883 (icode >= 20 && icode <= 24) ||
884 (icode >= 30 && icode <= 33) ||
885 (icode >= 40 && icode <= 41) ||
886 (icode >= 50 && icode <= 52)) {
887// endraw
888 mreg = GetMreg();
889// medium = GetMedium();
890 rull = GetRull();
891 xsco = GetXsco();
892 ysco = GetYsco();
893 zsco = GetZsco();
894 cout << " icode=" << icode
895 << " mreg=" << mreg
896// << " medium=" << medium
897 << " rull=" << rull
898 << " xsco=" << xsco
899 << " ysco=" << ysco
900 << " zsco=" << zsco << endl;
901 TrackPosition(position);
902 TrackMomentum(momentum);
903 cout << "Edep=" << Edep() << endl;
904 cout << "Etot=" << Etot() << endl;
905 cout << "TrackPid=" << TrackPid() << endl;
906 cout << "TrackCharge=" << TrackCharge() << endl;
907 cout << "TrackMass=" << TrackMass() << endl;
908 cout << "IsTrackOut=" << IsTrackOut() << endl;
909 cout << "IsTrackDisappeared=" << IsTrackDisappeared() << endl;
910 cout << "IsTrackStop=" << IsTrackStop() << endl;
911 cout << "IsTrackAlive=" << IsTrackAlive() << endl;
912 }
913
914 else if((icode >= 100 && icode <= 105) ||
915 (icode == 208) ||
916 (icode == 210) ||
917 (icode == 212) ||
918 (icode >= 214 && icode <= 215) ||
919 (icode == 217) ||
920 (icode == 219) ||
921 (icode == 221) ||
922 (icode == 225) ||
923 (icode == 300) ||
924 (icode == 400)) {
925// usdraw
926 mreg = GetMreg();
927// medium = GetMedium();
928 xsco = GetXsco();
929 ysco = GetYsco();
930 zsco = GetZsco();
931 cout << " icode=" << icode
932 << " mreg=" << mreg
933// << " medium=" << medium
934 << " xsco=" << xsco
935 << " ysco=" << ysco
936 << " zsco=" << zsco << endl;
937 cout << "TrackPid=" << TrackPid() << endl;
938 cout << "NSecondaries=" << NSecondaries() << endl;
939 for (Int_t isec=0; isec< NSecondaries(); isec++) {
940//void TFluka::GetSecondary(Int_t isec, Int_t& particleId,
941// TLorentzVector& position, TLorentzVector& momentum)
942 TFluka::GetSecondary(isec, particleId, position, momentum);
943 cout << "TLorentzVector positionX=" << position.X()
944 << "positionY=" << position.Y()
945 << "positionZ=" << position.Z()
946 << "timeT=" << position.T() << endl;
947 cout << "TLorentzVector momentumX=" << momentum.X()
948 << "momentumY=" << momentum.Y()
949 << "momentumZ=" << momentum.Z()
950 << "energyE=" << momentum.E() << endl;
951 cout << "TrackPid=" << particleId << endl;
952
953 }
954 }
955
956 else if((icode == 19) ||
957 (icode == 29) ||
958 (icode == 39) ||
959 (icode == 49) ||
960 (icode == 59)) {
961 mreg = GetMreg();
962// medium = GetMedium();
963 newreg = GetNewreg();
964 xsco = GetXsco();
965 ysco = GetYsco();
966 zsco = GetZsco();
967 cout << " icode=" << icode
968 << " mreg=" << mreg
969// << " medium=" << medium
970 << " newreg=" << newreg
971 << " xsco=" << xsco
972 << " ysco=" << ysco
973 << " zsco=" << zsco << endl;
974 }
975//
976// ====================================================================
977//
978
979
980
981} // end of FutoTest