https://github.com/root-project/root
Raw File
Tip revision: 413eb4d0ffec71073a269d60d4a334453e7ed1c9 authored by Fons Rademakers on 03 April 2014, 21:36:50 UTC
Make ROOT 6 Beta 3 (5.99.06).
Tip revision: 413eb4d
eventload.cxx
// @(#)root/test:$Id$
// Author: Rene Brun   10/01/97

{
//  This macro loads the shared library libEvent.so provided in $ROOTSYS/test.
//  Before executing this macro, we assume that:
//     - you have changed your current directory to $ROOTSYS/test.
//     - you have executed Event.
//  If not, go to directory test and issue the commands:
//       make Event      to generate the executable module and shared library
//       Event           to produce the file Event.root
//

//   Load shared library created in $ROOTSYS/test/libEvent.so
   gSystem.Load("libEvent");
}
back to top