I have been having some trouble parsing output files from qbox/qball with python's XML parsers. The offending lines have attributes without values in them, such as:
<FORKTD expectation set>
In order parse these files I have been adding some extra underscores (e.g., <FORKTD expectation set> to <FORKTD_expectation_set>).
My questions for you are:
- Do you also view the inability to read the output files with Python as an issue?
- Is adding underscores to the output statements of offending tags an acceptable fix? I am not a qball user, so I'm not 100% sure what these tags mean
- Do you mind if I attempt to make the changes? I see that these lines are output in EhrenSampleStepper.C. Am I missing anywhere?
I have been having some trouble parsing output files from qbox/qball with python's XML parsers. The offending lines have attributes without values in them, such as:
<FORKTD expectation set>In order parse these files I have been adding some extra underscores (e.g.,
<FORKTD expectation set>to<FORKTD_expectation_set>).My questions for you are: