You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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:
The text was updated successfully, but these errors were encountered: