rntviewer/README.md

53 lines
1.5 KiB
Markdown
Raw Normal View History

2024-07-16 15:03:56 +00:00
<img src="example.png" width="500px"/>
## rntviewer
This is a work-in-progress interactive visualization tool for [RNTuple](https://root.cern.ch/doc/v618/md_tree_ntuple_v7_doc_README.html).
### Getting the repo
Clone this repository with
```
$ git clone --recurse-submodules <repo_url>
```
### Dependencies
rntviewer currently only works on Linux (PRs welcome).
The dependencies are:
- GLFW3 (`libglfw3-dev` on debian, `glfw-devel` on fedora, `glfw` on arch)
- ROOT (likely bleeding edge version, compiled from sources)
- libxxhash3-dev
2024-07-16 15:03:56 +00:00
Other than those, rntviewer depends on Dear ImGui and GLAD (both included in the source tree).
The machine must support OpenGL 3.3 or higher.
2024-07-16 15:03:56 +00:00
### Building
Building is done with `make`. Make sure to `source /path/to/root/bin/thisroot.sh` before running it.
You probably want to build the release version:
```
$ make r
```
You can test that the tool is working properly with:
```
$ ./rntviewer ntpl lmext1.root
```
2024-07-16 15:03:56 +00:00
### Usage
2024-07-25 16:02:31 +00:00
Basic usage is:
2024-07-16 15:03:56 +00:00
```
$ ./rntviewer <ntuple_name> <ntuple_file.root>
```
2024-07-25 16:02:31 +00:00
This will open a window and let you browse the RNTuple, jump around its sections and get some
information about them.
There is also a non-interactive non-graphical mode that can be used in a terminal (useful
e.g. for ssh sessions):
```
$ ./rntviewer -t <ntuple_name> <ntuple_file.root>
```
The `-t` flag enables terminal mode. Use `./rntviewer -h` to get a help message about the
other flags that rntviewer accepts and are particularly useful in non-interactive mode.