From 682e5dd48ac854fc8a1cc49fd572663284903cf4 Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Tue, 26 Apr 2016 16:59:05 +0800 Subject: Use git to manage the tools of excess_sample --- update_r4_header.sh | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100755 update_r4_header.sh (limited to 'update_r4_header.sh') diff --git a/update_r4_header.sh b/update_r4_header.sh new file mode 100755 index 0000000..8840a15 --- /dev/null +++ b/update_r4_header.sh @@ -0,0 +1,56 @@ +#!/bin/sh +# +# Add/Update the header keywords of our sample products corresponding to +# the "repro-4", by running the `r4_header_update' tool. +# These new keywords are required by new version (>= v4.6) tools such as +# `dmcoords', `mkacisrmf', `mkwarf', etc. +# +# Reference: +# [1] ahelp - r4_header_update +# http://cxc.harvard.edu/ciao/ahelp/r4_header_update.html +# +# Aaron LI +# Created: 2016-03-03 +# Updated: 2016-03-03 +# + + +if [ $# -lt 1 ]; then + echo "Usage:" + echo " `basename $0` " + echo " `basename $0` ..." + exit 1 +fi + +# repro dir's +if [ -f "$1" ]; then + REPRO_LIST="$1" +elif [ -d "$1" ]; then + REPRO_LIST="_tmp_repro_$$.list" + [ -f "${REPRO_LIST}" ] && mv -f "${REPRO_LIST}" "${REPRO_LIST}_bak" + while [ ! -z "$1" ]; do + echo "$1" >> "${REPRO_LIST}" + shift + done +else + echo "ERROR: invalid arguments: $1" + exit 2 +fi + +INIT_DIR=`pwd -P` +cat "${REPRO_LIST}" | while read repro_dir; do + cd "${repro_dir}" + echo "********* `pwd` *********" + PBKFILE=`ls acisf*_pbk0.fits` + ASOLLIS=`ls acisf*_asol1.lis` + # fix asol.lis if necessary + if grep -q '/' "${ASOLLIS}"; then + sed -i'_bak' -e 's#^/.*/##' "${ASOLLIS}" + fi + for f in `find . -type f \( -iname 'acisf*_repro_evt2.fits' -o -iname 'evt2*.fits' -o -iname 'img*.fits' \)`; do + echo "* ${f}" + r4_header_update infile="${f}" pbkfile="${PBKFILE}" asolfile="@${ASOLLIS}" + done + cd "${INIT_DIR}" +done + -- cgit v1.2.2