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