00001 #include "GeneratorInterface/TopRexInterface/interface/ToprexWrapper.h" 00002 #include <string.h> 00004 // Sergey.Slabospitsky@cern.ch, July 2006 00005 // Wrapper for FORTRAN version of TopReX 00006 00007 // Initialization routine 00008 00009 //-------------------------------------------------------------------------- 00010 // TopReX routine declaration 00011 00012 #define toprex toprex_ 00013 00014 // define methods to hide the subtle syntax necessary to call fortran from C++ 00015 void call_toprex( const char* frame, const char* beam, const char* target, 00016 double win ) 00017 { toprex( frame,beam,target, &win,strlen(frame),strlen(beam),strlen(target) );} 00018 00019