#include #include "hgeoinitialize.h" // Global class to stores the input read from the initialization-file // "geoinifile.cmd". HGeoInput geoInput("geoinifile.cmd"); void hgeoinitialize() { if (geoInput.readFileNames()==HSUCCESS) geoInput.showFileNames(); else cerr << "cannot read files from geoinifile.cmd" << endl; } #ifdef WITHGEANT // wrapping of the c++ routine as Fortran-subroutine using cfortran.h // of Cern-library FCALLSCSUB0(hgeoinitialize,HGEOINITIALIZE,hgeoinitialize) #endif