Revision 1ed5b2319a500de0d0e5815c2a17615c134c863d authored by Danilo Piparo on 04 October 2023, 09:17:39 UTC, committed by Danilo Piparo on 04 October 2023, 19:02:58 UTC
by removing invocations to the root-config executable.
This executable was invoked twice to check if RDataFrame was available.
Such a behaviour causes a severe slowdown, especially on cvmfs. This
has been replaced by a simple string comparison.
1 parent d4024b9
Raw File
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