Skip to content
Snippets Groups Projects
Commit 7202cf28 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

correct figures; simplify do_show

parent a3b4498a
No related branches found
No related tags found
1 merge request!1699Provide infrastructure and convert examples for configuring Python example scripts using embedded Ruby (#554)
...@@ -27,8 +27,9 @@ add_custom_target(excopy ...@@ -27,8 +27,9 @@ add_custom_target(excopy
#################################################################################################### ####################################################################################################
macro(parse_example example) macro(parse_example example)
cmake_path(SET EXAMPLE_SCRIPT NORMALIZE ${EXAMPLES_TEST_DIR}/${example}.py) cmake_path(SET MINI_SCRIPT NORMALIZE ${EXAMPLES_TEST_DIR}/${example}.py)
get_filename_component(EXAMPLE_NAME ${EXAMPLE_SCRIPT} NAME_WE) cmake_path(SET PUBL_SCRIPT NORMALIZE ${EXAMPLES_PUBL_DIR}/${example}.py)
get_filename_component(EXAMPLE_NAME ${MINI_SCRIPT} NAME_WE)
get_filename_component(EXAMPLE_SUBDIR ${example} DIRECTORY) get_filename_component(EXAMPLE_SUBDIR ${example} DIRECTORY)
endmacro() endmacro()
...@@ -43,10 +44,10 @@ function(run_example example) ...@@ -43,10 +44,10 @@ function(run_example example)
parse_example(${example}) parse_example(${example})
string(REPLACE "/" "." TARGET_NAME Example.${example}.fig) string(REPLACE "/" "." TARGET_NAME Example.${example}.fig)
add_test(NAME Example.run.${EXAMPLE_NAME} add_test(NAME Example.run.${EXAMPLE_NAME}
${launch_env} ${launch_py} ${EXAMPLE_SCRIPT} show=n) ${launch_env} ${launch_py} ${MINI_SCRIPT} show=n)
add_custom_target(${TARGET_NAME} add_custom_target(${TARGET_NAME}
${launch_env} ${launch_py} ${EXAMPLE_SCRIPT} ${launch_env} ${launch_py} ${PUBL_SCRIPT}
figfile=${FIG_DIR}/${EXAMPLE_SUBDIR}/${EXAMPLE_NAME}.png) show=n figfile=${FIG_DIR}/${EXAMPLE_SUBDIR}/${EXAMPLE_NAME}.png)
add_dependencies(figures ${TARGET_NAME}) add_dependencies(figures ${TARGET_NAME})
endfunction() endfunction()
...@@ -55,7 +56,7 @@ function(run_plotless example) ...@@ -55,7 +56,7 @@ function(run_plotless example)
parse_example(${example}) parse_example(${example})
string(REPLACE "/" "." TARGET_NAME Example.${example}.run) string(REPLACE "/" "." TARGET_NAME Example.${example}.run)
add_test(NAME ${TARGET_NAME} add_test(NAME ${TARGET_NAME}
${launch_env} ${launch_py} ${EXAMPLE_SCRIPT} ${launch_env} ${launch_py} ${MINI_SCRIPT}
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}) WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
endfunction() endfunction()
...@@ -65,7 +66,7 @@ function(run_manually example) ...@@ -65,7 +66,7 @@ function(run_manually example)
string(REPLACE "/" "." TARGET_NAME Example.${example}.run) string(REPLACE "/" "." TARGET_NAME Example.${example}.run)
add_custom_target(${TARGET_NAME} add_custom_target(${TARGET_NAME}
COMMAND echo "\n### MANUAL TEST: EXAMPLE ${EXAMPLE_NAME}\n\n" COMMAND echo "\n### MANUAL TEST: EXAMPLE ${EXAMPLE_NAME}\n\n"
${launch_env} ${launch_py} ${EXAMPLE_SCRIPT} ${launch_env} ${launch_py} ${MINI_SCRIPT}
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}) WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
add_dependencies(manualtest ${TARGET_NAME}) add_dependencies(manualtest ${TARGET_NAME})
endfunction() endfunction()
...@@ -77,12 +78,12 @@ function(test_equality example reference tolerance) ...@@ -77,12 +78,12 @@ function(test_equality example reference tolerance)
cmake_path(SET outfile NORMALIZE ${TEST_OUTPUT_DIR_PY_PERSIST}/${example}) cmake_path(SET outfile NORMALIZE ${TEST_OUTPUT_DIR_PY_PERSIST}/${example})
cmake_path(SET reffile NORMALIZE ${REFERENCE_DIR_EXAMPLES_MINI}/${reference}) cmake_path(SET reffile NORMALIZE ${REFERENCE_DIR_EXAMPLES_MINI}/${reference})
add_test(NAME ${TARGET_NAME} add_test(NAME ${TARGET_NAME}
${launch_env} ${launch_py} ${EXAMPLE_SCRIPT} show=n datfile=${outfile} ${launch_env} ${launch_py} ${MINI_SCRIPT} show=n datfile=${outfile}
run_tolerance=${tolerance} run_reference=${reffile} run_tolerance=${tolerance} run_reference=${reffile}
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}) WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
add_custom_target(${TARGET_NAME} add_custom_target(${TARGET_NAME}
${launch_env} ${launch_py} ${EXAMPLE_SCRIPT} ${launch_env} ${launch_py} ${PUBL_SCRIPT}
figfile=${FIG_DIR}/${EXAMPLE_SUBDIR}/${EXAMPLE_NAME}.png) show=n figfile=${FIG_DIR}/${EXAMPLE_SUBDIR}/${EXAMPLE_NAME}.png)
add_dependencies(figures ${TARGET_NAME}) add_dependencies(figures ${TARGET_NAME})
endfunction() endfunction()
......
...@@ -53,6 +53,10 @@ rc('text', usetex=usetex_default) ...@@ -53,6 +53,10 @@ rc('text', usetex=usetex_default)
plotargs = {} plotargs = {}
simargs = {} simargs = {}
runargs = {} runargs = {}
datfile = None
figfile = None
saveformat = None
do_show = True
# ************************************************************************** # # ************************************************************************** #
# internal functions # internal functions
...@@ -408,7 +412,9 @@ def parse_args(**kwargs): ...@@ -408,7 +412,9 @@ def parse_args(**kwargs):
if key[0:4] == 'sim_': if key[0:4] == 'sim_':
simargs[key[4:]] = tmp[key] simargs[key[4:]] = tmp[key]
print(f""" print(f"""
Warning: obsolete argument \"{key}\". Warning from bp.parse_args,
called from {sys.argv[0]}:
Obsolete argument \"{key}\".
All arguments starting with \"sim_\" are obsolete since BornAgain 21. All arguments starting with \"sim_\" are obsolete since BornAgain 21.
Support for bp.simargs will be removed in future releases. Support for bp.simargs will be removed in future releases.
Replace \"bp.simargs['{key[4:]}']\" by a hard-coded value Replace \"bp.simargs['{key[4:]}']\" by a hard-coded value
...@@ -419,33 +425,38 @@ or by variable under your own control. ...@@ -419,33 +425,38 @@ or by variable under your own control.
else: else:
plotargs[key] = tmp[key] plotargs[key] = tmp[key]
global datfile global datfile, figfile, do_show
datfile = plotargs.pop('datfile', None) a = plotargs.pop('datfile', None)
if datfile: if a:
datfile = a
if pathlib.Path(datfile).suffix != '': if pathlib.Path(datfile).suffix != '':
raise Exception( raise Exception(
"Parameter 'datfile' must contain no suffix (we will append .int.gz)" "Parameter 'datfile' must contain no suffix (we will append .int.gz)")
)
global figfile a = plotargs.pop('figfile', None)
figfile = plotargs.pop('figfile', None) if a:
if figfile: figfile = a
global save_format
save_format = pathlib.Path(figfile).suffix[1:] save_format = pathlib.Path(figfile).suffix[1:]
if save_format == '': if save_format == '':
raise Exception( raise Exception(
"Parameter 'figfile' must contain extension (like .pdf)") "Parameter 'figfile' must contain extension (like .pdf)")
global do_show a = plotargs.pop('show', None)
if figfile or datfile: if a:
do_show = plotargs.pop('show', 'n') in ['y'] if a == 'y':
else: print("DEBUG Y")
do_show = not plotargs.pop('show', 'y') in ['n'] do_show = True
elif a == 'n':
print("DEBUG N")
do_show = False
else:
raise Exception("Parameter 'show' must be 'y' or 'n'")
def show_or_export(): def show_or_export():
if figfile: if figfile:
plt.savefig(figfile, format=save_format, bbox_inches='tight') plt.savefig(figfile, format=save_format, bbox_inches='tight')
print(f"DEBUG S={do_show}")
if do_show: if do_show:
plt.show() plt.show()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment