Skip to content
Snippets Groups Projects

[RTADPA BW Tests] Introducing an Hlt1-bandwidth test via Moore_in_Allen

Merged Luke Grazette requested to merge lugrazet-BW-initialhlt1test into master
1 file
+ 11
3
Compare changes
  • Side-by-side
  • Inline
@@ -45,6 +45,14 @@ options.conddb_tag = 'sim-20171127-vc-md100'
options.persistreco_version = 0.0
configure_input(options)
_descriptives(
sprucing_lines if options.input_process == "Spruce" else hlt2_lines,
options.input_process.lower())
if not options.input_process == 'Hlt1':
_descriptives(
sprucing_lines if options.input_process == "Spruce" else hlt2_lines,
options.input_process.lower())
else: #Line Descriptives doesn't make sense in the context of Hlt1
descript = pd.DataFrame(
index=['Hlt1Line'], columns=['PersistReco', 'ExtraOutput'])
descript['PersistReco']['Hlt1Line'] = False
descript['ExtraOutput']['Hlt1Line'] = False
with open(FileNameHelper(options.input_process.lower()).line_descr_path(), 'w') as f:
f.write(descript.to_html(justify='left'))
Loading