Installation
GluinoAnalysis requires no installation to run locally, but the following third-party applications are required:- ROOT (Compiled with PyROOT) 5.26 or later
- Python 2.6 or later
Remember to test if python finds the ROOT libraries and supports multiprocessing by executing:
python -c "import ROOT; import multiprocessing"If you get a clean execution without errors, everything is fine, otherwise check your environment variables:
In .bashrc (for bash users, assuming ROOT installed in /usr/local):
export ROOTSYS=/usr/local
export LD_LIBRARY_PATH=$ROOTSYS/lib:$ROOTSYS/lib/root:
$PYTHONDIR/lib:$LD_LIBRARY_PATH
export PYTHONPATH=$ROOTSYS/lib:$ROOTSYS/lib/root:$PYTHONPATH
More information here
Proceed to Examples...
