Difference between revisions of "ROOT"

From NEClusterWiki
Jump to navigation Jump to search
Line 13: Line 13:
 
</pre>
 
</pre>
  
You can add the above to your <pre>~/.bashrc</pre>, so it will get executed any time you log in.
+
You can add the above to your <code>~/.bashrc</code>, so it will get executed any time you log in.
  
 
Then run ROOT by: $ root
 
Then run ROOT by: $ root

Revision as of 07:52, 12 February 2012

About ROOT

The ROOT system is a set of C++ object oriented frameworks with all the functionality needed to handle and analyze large amounts of data in a very efficient way. The code is open source, it is developed at CERN, and widely used for data acquisition, analysis, simulations, etc. in nuclear physics and related fields.

MURE code available from RSICC uses the ROOT framework for time-stepping of MCNP calculations.

Running ROOT

First set environmental variable $ROOTSYS to /opt/root/, add search path to the ROOT binaries, and libraries:

export ROOTSYS=/opt/root
export PATH=${PATH}:${ROOTSYS}/bin
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${ROOTSYS}/lib

You can add the above to your ~/.bashrc, so it will get executed any time you log in.

Then run ROOT by: $ root

Help with ROOT

ROOT manuals and tutorials are available on the ROOT webpage.