Metadata-Version: 2.1
Name: pyjano
Version: 1.0.1
Summary: JANA2 python control tool
Home-page: https://github.com/eic/pyjano
Author: Dmitry Romanov
Author-email: romanov@jlab.org
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# pyjano


![Pyjano](logo.png) 

Pyjano stands for **Py**thon **Jan**a **O**rchestrator. Python wrapper over 
[jana2](https://github.com/JeffersonLab/JANA2) framework to make configuration
 and running convenient. 


```bash
pip install pyjano
```

Usage:

```python
from pyjano.jana import Jana
jana = Jana()

# Plugins configuration 
jana.plugin('beagle_reader')\
    .plugin('vmeson')\
    .plugin('event_writer')\
    .plugin('jana', nevents=10000, output='beagle.root')\
    .source('../data/beagle_eD.txt')

# Run
jana.run()
```


