Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Installing CMake

It is likely your system already has a recent enough version of CMake installed on it.

If not then follow the Installing CMake guide to build it.

Installing LCIO

No Format
cd workdir
svn co svn://svn.freehep.org/lcio/trunk lcio-trunk
cd lcio-trunk
mkdir build
cd build
cmake -DINSTALL_DOC=OFF -DINSTALL_JAR=OFF ..
make
cd ..
export LCIO=$PWD

Installing ROOT

Follow the instructions at the ROOT website to install it.  Then you will want to source the setup script which will set the ROOTSYS variable.

No Format
. bin/thisroot.sh

Installing GBL

No Format
cd workdir
svn checkout http://svnsrv.desy.de/public/GeneralBrokenLines/tags/V01-16-02 GeneralBrokenLines
cd GeneralBrokenLines/cpp
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=../.. ..
make
cd ../..
export GBL_DIR=$PWD

Getting the Source Code

The project is stored in a public github repository. The code can be "cloned" i.e. copied to a users local machine by issuing the following commands from a terminal.

...