Set of useful functions and classes that can be used in any C++ application to simplify the work with ROOT6's various classes, such as TF1, TCanvas, TFile, TThreadedObject, etc., or to extend their usage. This repository is still in progress, and some of its features are yet to be finished/added. But everything described in the documentation is finished and it works fine.
To check the version of C++ that was used for the compilation of the ROOT run (you may need to head into the bin directory in the ROOT install directory if ROOT was not installed with the package manager)
If ROOT6 was not installed with a package manager on your system, you also need to set path to the directory in which root was installed ($ROOT_PATH) in your profile (.bashrc, .zshrc, or other) or configure the paths in CMakeLists.txt or etc/Makefile.am.
Run in your working directory to copy the repository
First run in the downloaded directory to generate Makefile
Then run to compile the libraries (you can use option -jN to compile on multiple threads)
Or you can use Makefile from etc directory
You can view the detailed documentation at https://sergeyir.github.io/documentation/ROOTTools/. (see Namespaces / Namespaces List / ROOTTools). Since this repository is not designed to be used on its own and is intended to be used as a set of libraries, every class, method, and variable is all in the ROOTTools namespace scope.
If the link is inaccessible, you can generate the documentation yourself with Doxygen. To do this run while in the root of the repository
To view the generated html file open html/index.html with any browser or simply run to automaticaly open it on linux
In order to use functions and classes from this project while compiling link libraries libTCanvasTools.so, libFitTools.so, libGUIFit.so, libThrObj.so, libTFileTools.so (see $ROOT_TOOLS_LIB in Makefile and Makefile.inc for more detail or see CMakeLists.txt), and don't forget to include the needed header files (see the list of files in documentation https://sergeyir.github.io/documentation/ROOTTools/files.html).