#include #include "TVirtualMCApplication.h" #include "TVirtualMCStack.h" #include "TFluka.h" // Fluka include #include "Fdimpar.h" //(DIMPAR) fluka include #include "Fdblprc.h" //(DBLPRC) fluka common #include "Ftrackr.h" //(TRACKR) fluka common #include "Fopphst.h" //(OPPHST) fluka common #include "Fstack.h" //(STACK) fluka common #ifndef WIN32 # define mgdraw mgdraw_ #else # define mgdraw MGDRAW #endif extern "C" { void mgdraw(Int_t& icode, Int_t& mreg) { TFluka* fluka = (TFluka*) gMC; // Int_t verbosityLevel = fluka->GetVerbosityLevel(); // // Make sure that stack has currrent track Id Int_t trackId = -1; TVirtualMCStack* cppstack = fluka->GetStack(); if (TRACKR.jtrack == -1) { // Optical photons // // Try first to get the track ID from the FLUKA stack for optical photons trackId = OPPHST.LOUOPP[OPPHST.LSTOPP]; if (trackId == 0) { // This might be a feedback photon or similar that was put on the VMC stack first trackId = STACK.ispark[STACK.lstack][mkbmx2-1]; } } else { trackId = TRACKR.ispusr[mkbmx2-1]; } cppstack->SetCurrentTrack(trackId); // // fluka->SetMreg(mreg); fluka->SetNewreg(mreg); fluka->SetIcode(icode); fluka->SetCaller(4); // if (verbosityLevel >= 3) { // cout << endl << " !!! I am in mgdraw - calling Stepping()" << endl; // cout << endl << " Track Id =" << trackId << endl; // } (TVirtualMCApplication::Instance())->Stepping(); fluka->SetTrackIsNew(kFALSE); } // end of mgdraw } // end of extern "C"