]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TFluka/mgdraw.cxx
User stepping methods added (E. Futo)
[u/mrichter/AliRoot.git] / TFluka / mgdraw.cxx
CommitLineData
fa3d1cc7 1#include <Riostream.h>
2#include "AliRun.h"
3#include "TFluka.h"
4#ifndef WIN32
5# define mgdraw mgdraw_
6#else
7# define mgdraw MGDRAW
8#endif
9
10extern "C" {
11void mgdraw(Int_t& icode, Int_t& mreg)
12{
13 ((TFluka*) gMC)->SetIcode(icode);
14 ((TFluka*) gMC)->SetMreg(mreg);
15 cout << endl << " !!! I am in mgdraw - calling gAlice->Stepping()" << endl;
16 ((TFluka*) gMC)->FutoTest();
17// gAlice->Stepping();
18} // end of mgdraw
19} // end of extern "C"
20