File indexing completed on 2026-04-09 07:48:48
0001
0002
0003 usage(){ cat << EOU
0004 input_photons_plt.sh
0005 =====================
0006
0007 ::
0008
0009 ~/o/ana/input_photons.sh
0010 ~/o/ana/input_photons_plt.sh
0011
0012 EOU
0013 }
0014
0015 cd $(dirname $(realpath $BASH_SOURCE))
0016
0017 script=input_photons_plt.py
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032 stem=SemiCircleXZ_R-500_100k
0033
0034
0035 sufx=_f8
0036
0037 STEM=${STEM:-$stem}
0038
0039
0040 path=${STEM}${sufx}.npy
0041
0042 mode=3
0043 export MODE=${MODE:-$mode}
0044 export OPTICKS_INPUT_PHOTON=${OPTICKS_INPUT_PHOTON:-$path}
0045
0046
0047 ${IPYTHON:-ipython} --pdb -i $script -- $*
0048
0049
0050
0051