Skip to content

Instantly share code, notes, and snippets.

@jdbrice
Last active August 29, 2015 14:21
Show Gist options
  • Save jdbrice/8247ab872820dd779127 to your computer and use it in GitHub Desktop.
Save jdbrice/8247ab872820dd779127 to your computer and use it in GitHub Desktop.
Example Config for the HistoAnalyzer Boiler plate class
<?xml version="1.0" encoding="UTF-8"?>
<!-- A root node is required -->
<!-- It can be anything <root></root>, it just has to exist -->
<config>
<HistoAnalyzer>
<!-- Use an input tag for Specifying the input data file - it will be loaded for you -->
<input>
<data url="input.root"/>
</input>
<output path="./">
<data>rootOutput.root</data>
</output>
<Reporter>
<output url="rpHistoAnalyzer.pdf"/>
</Reporter>
<Logger logLevel="all" globalLogLevel="info" />
<histograms>
<Histo name="pt" title="p_T [GeV]" nBinsX="100" minX="0" maxX="10" />
<Histo name="pt1" title="p_T [GeV]" nBinsX="100" minX="0" maxX="10" />
<Histo name="pt2" title="p_T [GeV]" nBinsX="100" minX="0" maxX="10" />
<Histo name="pt3" title="p_T [GeV]" nBinsX="100" minX="0" maxX="10" />
</histograms>
</HistoAnalyzer>
</config>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment