Last active
August 29, 2015 14:21
-
-
Save jdbrice/8247ab872820dd779127 to your computer and use it in GitHub Desktop.
Example Config for the HistoAnalyzer Boiler plate class
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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