If you are on lxplus, all the necessary software is preinstalled.
On Mac OS or Ubuntu, you need to install the following software.
Install ROOT 6.04 and set up your ROOT environment:
source <root_path>/bin/thisroot.sh
Check the python version by doing:
python --version
Check that the yaml python module is available
python
>>> import yaml
If the import goes fine (no message), you're all set. If not, you need to install yaml. For that, you need to:
1- install the C++ yaml library, which is used by the python module. On Mac OS, The easiest way to do that is to use homebrew (install homebrew if you don't have it yet):
brew install libyaml
2- install the python yaml module (first install pip if you don't have it yet)
pip install yaml
Check that you can now import the yaml module in python.
Before building and installing this package, and everytime you need to use it, do:
source init.sh
After setting up a separate build and install area, the build can be triggered.
mkdir build
mkdir install
cd build
cmake -DCMAKE_INSTALL_PREFIX=../install ..
make -j 4 install
To see a list of options, do this in the build-directory:
cmake -LH ..
The examples are for creating a file "example.root"
../install/examples/write
And reading it again
../install/examples/read
If you want to invoke the data model creator use python/podio_class_generator.py
and look into tests/datalayout.yaml
for inspiration
After compilation you can run rudimentary tests with
make test
In order to run the unit tests you have to enable them at configuration time with the flag tests
. Note that GTest is needed. On lxplus the necessary environment is set up with the init.sh
. On MacOS, you'll have to point cmake to your installation if it is local, see the option in braces below assuming you installed it in <g_test_path>
.
To configure with unit tests enabled, do:
cmake -DCMAKE_INSTALL_PREFIX=../install -Dpodio_tests=1 (-DCMAKE_PREFIX_PATH=<g_test_path>/install) ..
make test