loadlibs macros


{
  #include <stdio.h>
  #include <stdlib.h>
  
  TUnixSystem *sys = (TUnixSystem*) gSystem;	
  sys->Load("libPhysics.so");
  
  char *home = sys->Getenv("HOME");

  char libstr[255];
  sprintf( libstr, "%s/lib/libmath_add.so", home );			
  gSystem->Load(libstr);

  sprintf( libstr, "%s/lib/libphys_add.so", home );			
  gSystem->Load(libstr);

  sprintf( libstr, "%s/lib/libkine.so", home );			
  gSystem->Load(libstr);

  sprintf( libstr, "%s/lib/libsyskinet.so", home );			
  gSystem->Load(libstr);

  sprintf( libstr, "%s/lib/libdipgen.so", home);
  gSystem->Load(libstr);
}


If you have any comments or suggestions about this class contact Mikhail Zhabitsky


ROOT page - Class index - Class Hierarchy - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.