Metadata-Version: 2.1
Name: root-report
Version: 0.1.3
Summary: Simple package to produce HTML reports out of PyROOT scripts
Home-page: https://github.com/landerlini/root_report
Author: Lucio Anderlini
Author-email: l.anderlini@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# root_report
Simple python package to create HTML report out of Cern ROOT scripts.

## Example 
```
from root_report import Report 
import ROOT

ROOT.SetBatch(1) 

report = Report ( "name_of_the_report", "/some/browser-accessible/path/" ) 
report.outputTitle ( "Title of the Report" )

f1 = ROOT.TF1 ( "parab", "x**2", -1, 1)
f1.Draw()

report.outputCanvas ( "figureIdentifier" ) 
report << "Some <B>HTML</B> description here. " << report.br 

report.close() 
```


