11 lines
251 B
Bash
11 lines
251 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
if test -f "./h5m_files/ARE_gamma.h5m"; then
|
|
python ./scripts/msre_gamma_spectra.py
|
|
else
|
|
python ./step_to_h5m/step_to_h5m_photon.py
|
|
python ./scripts/msre_gamma_spectra.py
|
|
python ./scripts/msre_gamma_spectra_plotter.py
|
|
fi
|