N.B.: the branch mk-moss-event-converter-addstatusMOSS is equivalent to mk-moss-event-converter, but it has a MOSSStatusEvent2StdEventConverter.cc that Lukas added.
mkdir build
cd build
cmake .. -DEUDAQ_BUILD_PYTHON=ON -DUSER_ITS3_BUILD=ON -DEUDAQ_BUILD_STDEVENT_MONITOR=ON && make -j `nproc` && make install
Installation with the container
Setup Docker and download the data:
sudo apt-get update && sudo apt-get install docker-ce docker-ce-cli containerd.io
git clone ssh://git@gitlab.cern.ch:7999/ginnocen/its-corryvreckan-tools.git
cd its-corryvreckan-tools
git checkout TBJuly2023
./run_container.sh
Installation without the container
PREREQUISITES → ROOT
git clone --branch latest-stable --depth=1 https://github.com/root-project/root.git root_src
cd root_src
git checkout -b v6-26-00
cd ..
mkdir root_build root_install && cd root_build
cd root_build
cmake -DCMAKE_INSTALL_PREFIX=../root_install ../root_src -Dbuiltin_glew=ON
cmake --build . -- install -j16
INSTALL EUDAQ2
git clone https://gitlab.cern.ch/alice-its3-wp3/eudaq2.git
cd eudaq2
git checkout mk-moss-event-converter-addstatusMOSS
mkdir build
cd build
cmake .. -DEUDAQ_BUILD_PYTHON=ON -DUSER_ITS3_BUILD=ON -DEUDAQ_BUILD_STDEVENT_MONITOR=ON && make -j `nproc` && make install
make install
INSTALL CORRY
git clone https://gitlab.cern.ch/alice-its3-wp3/corryvreckan.git
cd corryvreckan
mkdir build
cd build