2022-07-21 14:31:53 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
|
|
if test -f "./h5m_files/ARE_gamma.h5m"; then
|
2022-11-03 08:04:57 +01:00
|
|
|
python ./scripts/msre_gamma_spectra.py
|
2022-07-21 14:31:53 +02:00
|
|
|
else
|
|
|
|
|
python ./step_to_h5m/step_to_h5m_photon.py
|
2022-11-03 08:04:57 +01:00
|
|
|
python ./scripts/msre_gamma_spectra.py
|
|
|
|
|
python ./scripts/msre_gamma_spectra_plotter.py
|
2022-07-21 14:31:53 +02:00
|
|
|
fi
|