psdlag-agn/scripts/analyze_lightcurves.sh

18 lines
877 B
Bash
Raw Normal View History

#!/usr/local/bin/bash
for curvefile in data/STORM_III/lightcurves/Δt≔0.01/*
do
echo Running psdlag for $curvefile.
2016-07-11 21:14:36 +00:00
newfilename="analyses/$(basename $curvefile|sed 's@\(.*\)\.lc@\1@')≻HST1367_$(basename $(dirname $curvefile))"
echo "2" > inputfile.tmp
echo "data/STORM_III/lightcurves/Δt≔0.01/HST1367.lc 0" >> inputfile.tmp
echo "$curvefile 0" >> inputfile.tmp
echo "8 0.005 0.019 0.0425 0.07 0.11 0.17 0.24 0.4 0.603" >> inputfile.tmp
echo "0" >> inputfile.tmp
echo ".9999 .9999 .9999 0.49 0.42 0.30 0.36 1.2 -0.60 -0.89 -0.72 2.39 -0.74 -1.5 -1 -3.1 -1.3 -2.3 -2 -1.9 -1.6 -2.6 -2 -1.3 -1.8 -2.6 -1.2 0 -2 -2.7 -1.3 0.63" >> inputfile.tmp
echo "0:0 0" >> inputfile.tmp
echo "0" >> inputfile.tmp
echo "0" >> inputfile.tmp
echo "100 50 50 mcmc.dat" >> inputfile.tmp
time bin/psdlag inputfile.tmp >> $newfilename
done