]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TFluka/eedraw.cxx
- Rapidity shift calculated in AliGenMC::Init()
[u/mrichter/AliRoot.git] / TFluka / eedraw.cxx
1 #include <Riostream.h>
2 #include "TVirtualMCApplication.h"
3 #include "TFluka.h"
4 #ifndef WIN32
5 # define eedraw eedraw_
6 #else
7 # define eedraw EEDRAW
8 #endif
9 extern "C" {
10 void eedraw(Int_t& icode)
11 {
12   ((TFluka*) gMC)->SetIcode(icode);
13   cout << endl << " !!! I am in eedraw - calling Stepping()" << endl;
14   ((TFluka*) gMC)->FutoTest();
15   (TVirtualMCApplication::Instance())->Stepping();
16 } // end of eedraw
17 } // end of extern "C"
18