2022-07-21 14:31:53 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
2022-11-02 15:23:23 +01:00
|
|
|
if test -f "./h5m_files/msre.h5m"; then
|
|
|
|
|
python ./scripts/msre_geometry_plot.py
|
2022-07-21 14:31:53 +02:00
|
|
|
else
|
|
|
|
|
python ./scripts/step_to_h5m.py
|
2022-11-02 15:23:23 +01:00
|
|
|
python ./scripts/msre_geometry_plot.py
|
2022-07-21 14:31:53 +02:00
|
|
|
fi
|