https://github.com/root-project/root
Raw File
Tip revision: 7e576dde453d4e2c5ef4dbbcd8d1dfaf67470de6 authored by Philippe Canal on 28 March 2007, 09:54:14 UTC
Remove memory leak in the case where the buffer is not compressible (rare)
Tip revision: 7e576dd
eventload.cxx
// @(#)root/test:$Name$:$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