https://github.com/root-project/root
Raw File
Tip revision: a87b186ad7148c9641edb575a89a9f0a8076706c authored by Axel Naumann on 15 May 2018, 08:10:45 UTC
Update ROOT version files to v6.13/06.
Tip revision: a87b186
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