https://github.com/root-project/root
Raw File
Tip revision: 82b3f69c86e48963e5666b18f03a163bab44b958 authored by Danilo Piparo on 18 June 2024, 04:13:52 UTC
Updated 'latest-stable' branch to v6-32-02
Tip revision: 82b3f69
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