Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wavewave/hroot
HROOT: Haskell binding to ROOT
https://github.com/wavewave/hroot
Last synced: 22 days ago
JSON representation
HROOT: Haskell binding to ROOT
- Host: GitHub
- URL: https://github.com/wavewave/hroot
- Owner: wavewave
- Created: 2011-09-19T08:39:18.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2023-07-29T02:22:11.000Z (over 1 year ago)
- Last Synced: 2024-04-30T12:48:35.176Z (6 months ago)
- Language: Haskell
- Homepage:
- Size: 3.34 MB
- Stars: 11
- Watchers: 5
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HROOT
Haskell binding to [ROOT](https://root.cern.ch).
[ROOT](https://root.cern.ch) is a modular scientific software toolkit providing all the functionalities needed to deal with big data processing, statistical analysis, visualisation and storage. It is mainly written in C++ but integrated with other languages.
HROOT is a haskell binding to the [ROOT](https://root.cern.ch) library. A haskell script called HROOT-generate using [fficxx](https://github.com/wavewave/fficxx) generates HROOT packages. Once generated, each package can be directly installable as a cabal package. Currently, C++ interface is defined as a haskell data structure as one can see, for example, in the module [HROOT.Data.Core.Class](HROOT-generate/lib/HROOT/Data/Core/Class.hs).
## Development and testing
For dev-shell, try:
```
$ nix develop .#ghc942.dev
$ cd workspace
$ ./build.sh
```For those who use HROOT as library directly, try
```
$ nix develop .#ghc942.env
```
and in the shell, one can see all HROOT-* (including HROOT) packages are available.