Skip to content

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

License

Notifications You must be signed in to change notification settings

landerlini/root_report

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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() 

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages