Descriptions of the Current Directory

Root: An OO Framework for Large Scale Data Analysis


[0] News

[1] Origin

ftp://root.cern.ch/root/root_v2.00.MkLinux.2.1.24.tar.gz

[2] How to Install ROOT

It's just expanding a tarball:
# tar -zxvf root_v2.00.MkLinux.2.1.24.tar.gz -C /usr/local


[3] Getting Started with ROOT

First thing you should do is go through the README file:
$ less /usr/local/root/AA_README
Then do
$ export ROOTSYS=/usr/local/root
$ export PATH=$PATH:$ROOTSYS/bin
You can put them into your .bash_profile or .bashrc. You should also tell the system where to find the ROOT shared libraries:
$ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ROOTSYS/lib
or you can add /usr/local/root/lib to /etc/ld.so.conf and do "ldconfig".

Then you can try out a ROOT interactive session:

$ cd <somewhere>/
$ cp -R $ROOTSYS/tutorials .
$ cd tutorials
$ ./root
  *******************************************
  *                                         *
  *        W E L C O M E  to  R O O T       *
  *                                         *
  *   Version   2.00/05     21 April 1998   *
  *                                         *
  *  You are welcome to visit our Web site  *
  *          http://root.cern.ch            *
  *                                         *
  *******************************************

CINT/ROOT C/C++ Interpreter version 5.13.46, Mar 22 1998
Type ? for help. Commands must be C++ statements.
Enclose multiple statements between { }.
root [1] .x demos.C
-- Click on Help on Demos.
-- Click on Hsimple first. Then in any order.
-- Move the objects on the canvas around using the mouse.
-- You want also try "first" to see how the C++ interpreter
-- works interactively.
root [2] .q
$

Enjoy!


Back to Keisuke Fujii's MkLinux Page
fujiik@jlcuxf.kek.jp Apr. 25, 1998