PicoDst - lightweight data format specifically created for the Flow analysis in MPD (NICA) experiment.

Peter Parfenov 7748b8526a small fix in README il y a 2 ans
bin d98dadfc88 Added exporting CPATH in setPicoDst.sh so now readPicoDst.C can be run both as a macro and compiled code via ROOT il y a 4 ans
converter cab9b5acc3 Added '--all' option to write every event in PicoDst. By default, only events with at least 1 reco track will be written il y a 4 ans
include 194d4aeaba Fixed Clear() function - it is no longer virtual since it is called in the class destructor il y a 4 ans
macros d98dadfc88 Added exporting CPATH in setPicoDst.sh so now readPicoDst.C can be run both as a macro and compiled code via ROOT il y a 4 ans
src 6c109db697 First version of PicoDst format + converter il y a 4 ans
CMakeLists.txt a061aa8652 Commented out specified c++ standard (supported std=c++11,14,17) il y a 4 ans
README.md 7748b8526a small fix in README il y a 2 ans

README.md

PicoDst

Data format for the Flow Analysis at MPD(NICA)

Installation

  • Get the source code:

    git clone https://devel.mephi.ru/PEParfenov/PicoDst.git
    
  • Create build directory and build project:

    cd PicoDst/
    mkdir build/
    cd build/
    cmake ..
    make
    

    CMakeLists.txt file automatically checks if FairRoot is installed.

    • if FairRoot is installed both libPicoDst.so and PicoDstConverter will be compiled
    • if FairRoot is not installed only libPicoDst.so will be compiled

Usage

PicoDst data format

After installation setPicoDst.sh will be generated. This script contains most of the needed information for the system to find PicoDst library. For comfortable usage of the PicoDst package (to automatically load libPicoDst.so in every ROOT session, export usefull environment variables and aliases in the system), source setPicoDst.sh:

source setPicoDst.sh

It also contains usefull aliases for all executables.

Basic information about PicoDst package: PicoDst-config

Like root-config command, PicoDst-config contains information about version and paths to the source code and build directories. After sourcing setPicoDst.sh one can just use the following command in bash:

PicoDst-config --version --incdir --srcdir --bindir
Convert MpdDst data to PicoDst:

If FairRoot (and MpdRoot) is installed PicoDstConverter is compiled. After sourcing setPicoDst.sh one can use command:

PicoDstConverter -i input_mpddst.root -o output_picodst.root