1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
|
#!/bin/sh
#
# Make the corresponding stowed bacground image for the observation.
#
# Based on `ciao_blanksky.sh' (v5.0; 2015-06-02)
#
# Aaron LI
# 2016-04-20
#
## error code {{{
ERR_USG=1
ERR_DIR=11
ERR_EVT=12
ERR_BKG=13
ERR_REG=14
ERR_ASOL=21
ERR_BPIX=22
ERR_PBK=23
ERR_MSK=24
ERR_BKGTY=31
ERR_SPEC=32
## error code }}}
## usage, help {{{
case "$1" in
-[hH]*|--[hH]*)
printf "usage:\n"
printf " `basename $0` evt=<evt_fits> basedir=<base_dir> imgdir=<img_dir> erange=<elow:ehigh>\n"
exit ${ERR_USG}
;;
esac
## usage, help }}}
## default parameters {{{
# default `event file' which used to match `blanksky' files
#DFT_EVT="_NOT_EXIST_"
DFT_EVT="`\ls evt2*_clean.fits`"
# default dir which contains `asols, asol.lis, ...' files
# DFT_BASEDIR="_NOT_EXIST_"
DFT_BASEDIR=".."
# default img directory
DFT_IMGDIR="../img"
# default energy range for image creation
DFT_ERANGE="700:7000"
## howto find files in `basedir'
# default `asol.lis pattern'
DFT_ASOLIS_PAT="acis*asol?.lis"
## default parameters }}}
## functions {{{
# process commandline arguments
# cmdline arg format: `KEY=VALUE'
getopt_keyval() {
until [ -z "$1" ]
do
key=${1%%=*} # extract key
val=${1#*=} # extract value
keyval="${key}=\"${val}\""
echo "## getopt: eval '${keyval}'"
eval ${keyval}
shift # shift, process next one
done
}
# lookup the corresponding stowed background according to the blanksky
lookup_bgstow() {
_dir=`dirname $1`
_blanksky=`basename $1`
_det=`echo "${_blanksky}" | sed 's/\(acis[0-7]\).*$/\1/'`
_year=`echo "${_blanksky}" | sed 's/.*\(D[0-9]\{4\}\).*$/\1/'`
_cti=`echo "${_blanksky}" | sed 's/.*\(cti\).*$/\1/'`
if [ "${_year}" = "D1999" ]; then
_year="D2000"
fi
if [ "${_cti}" = "cti" ]; then
_bgstow=`\ls ${_dir}/${_det}${_year}-??-??bgstow*.fits | grep 'bgstow_cti'`
else
_bgstow=`\ls ${_dir}/${_det}${_year}-??-??bgstow*.fits | grep -v 'bgstow_cti'`
fi
if [ -z "${_bgstow}" ]; then
echo "ERROR: cannot found bgstow for blanksky: ${_dir}/${_blanksky}" >/dev/stderr
exit 100
fi
echo "${_bgstow}"
unset _dir _blanksky _det _year _bgstow
}
# reprocess background evt with matched gainfile
background_regain() {
_outfile="$1"
_infile="${1%.fits}_ungain.fits"
mv ${_outfile} ${_infile}
punlearn acis_process_events
acis_process_events infile="${_infile}" \
outfile="${_outfile}" \
acaofffile=NONE stop="none" doevtgrade=no \
apply_cti=yes apply_tgain=no \
calculate_pi=yes pix_adj=NONE \
gainfile="$2" \
eventdef="{s:ccd_id,s:node_id,i:expno,s:chip,s:tdet,f:det,f:sky,s:phas,l:pha,l:pha_ro,f:energy,l:pi,s:fltgrade,s:grade,x:status}" \
clobber=yes
rm -fv ${_infile}
unset _infile _outfile
}
## functions end }}}
## parameters {{{
# process cmdline args using `getopt_keyval'
getopt_keyval "$@"
# check given parameters
# check evt file
if [ -r "${evt}" ]; then
EVT=${evt}
elif [ -r "${DFT_EVT}" ]; then
EVT=${DFT_EVT}
else
read -p "evt2 file: " EVT
if ! [ -r "${EVT}" ]; then
printf "ERROR: cannot access given \`${EVT}' evt file\n"
exit ${ERR_EVT}
fi
fi
printf "## use evt file: \`${EVT}'\n"
# check given dir
if [ -d "${basedir}" ]; then
BASEDIR=${basedir}
elif [ -d "${DFT_BASEDIR}" ]; then
BASEDIR=${DFT_BASEDIR}
else
read -p "basedir (contains asol files): " BASEDIR
if [ ! -d ${BASEDIR} ]; then
printf "ERROR: given \`${BASEDIR}' NOT a directory\n"
exit ${ERR_DIR}
fi
fi
# remove the trailing '/'
BASEDIR=`echo ${BASEDIR} | sed 's/\/*$//'`
printf "## use basedir: \`${BASEDIR}'\n"
# check img dir
if [ -n "${imgdir}" ]; then
IMGDIR="${imgdir}"
else
IMGDIR="${DFT_IMGDIR}"
fi
printf "## use imgdir: \`${IMGDIR}'\n"
# check energy range
if [ -n "${erange}" ]; then
ERANGE="${erange}"
else
ERANGE="${DFT_ERANGE}"
fi
printf "## use energy range: \`${ERANGE}'\n"
## parameters }}}
## check files in `basedir' {{{
# check asol files
ASOLIS=`\ls -1 ${BASEDIR}/${DFT_ASOLIS_PAT} | head -n 1`
if [ -z ${ASOLIS} ]; then
printf "ERROR: cannot find \"${DFT_ASOLIS_PAT}\" in dir \`${BASEDIR}'\n"
exit ${ERR_ASOL}
fi
printf "## use asolis: \`${ASOLIS}'\n"
## check files }}}
## prepare parameter files (pfiles) {{{
CIAO_TOOLS="acis_bkgrnd_lookup dmmerge dmcopy dmmakepar dmreadpar reproject_events acis_process_events"
# Copy necessary pfiles for localized usage
for tool in ${CIAO_TOOLS}; do
pfile=`paccess ${tool}`
[ -n "${pfile}" ] && punlearn ${tool} && cp -Lvf ${pfile} .
done
# Modify environment variable 'PFILES' to use local pfiles first
export PFILES="./:${PFILES}"
## pfiles }}}
#### main start {{{
# decompress the asol file if necessary
ASOL_XZ=`\ls ${BASEDIR}/pcadf*asol?.fits.xz 2>/dev/null`
if [ -n "${ASOL_XZ}" ]; then
printf "decompressing the asol file ...\n"
unxz ${ASOL_XZ}
fi
printf "look up coresponding background file ...\n"
punlearn acis_bkgrnd_lookup
BKG_LKP="`acis_bkgrnd_lookup ${EVT}`"
AS_NUM=`echo ${BKG_LKP} | tr ' ' '\n' | \grep 'acis7sD' | wc -l`
AI_NUM=`echo ${BKG_LKP} | tr ' ' '\n' | \grep 'acis[0123]iD' | wc -l`
## determine detector type: ACIS-S / ACIS-I {{{
if [ ${AS_NUM} -eq 1 ]; then
printf "## ACIS-S, chip: 7\n"
CCD="7"
BKG_ROOT="stowbkg_c7"
STOWBKG=`lookup_bgstow ${BKG_LKP}`
cp -v ${STOWBKG} ${BKG_ROOT}_orig.fits
elif [ ${AI_NUM} -eq 4 ]; then
printf "## ACIS-I, chip: 0-3\n"
CCD="0:3"
BKG_ROOT="stowbkg_c0-3"
AI_FILES=""
for bkg in ${BKG_LKP}; do
STOWBKG=`lookup_bgstow ${bkg}`
cp -v ${STOWBKG} .
AI_FILES="${AI_FILES},`basename ${STOWBKG}`"
done
AI_FILES=${AI_FILES#,} # remove the first ','
printf "## ACIS-I background files to merge:\n"
printf "## \`${AI_FILES}'\n"
printf "\`dmmerge' to merge the above blanksky files ...\n"
# merge 4 chips blanksky evt files
punlearn dmmerge
dmmerge "${AI_FILES}" ${BKG_ROOT}_orig.fits clobber=yes
rm -fv `echo ${AI_FILES} | tr ',' ' '` # remove original files
else
printf "## ERROR: UNKNOW blanksky files:\n"
printf "## ${BKG_ORIG}\n"
exit ${ERR_BKG}
fi
## determine ACIS type }}}
## check 'DATMODE' {{{
## filter blanksky files (status=0) for `VFAINT' observations
DATA_MODE="`dmkeypar ${EVT} DATAMODE echo=yes`"
printf "## DATAMODE: ${DATA_MODE}\n"
if [ "${DATA_MODE}" = "VFAINT" ]; then
mv -fv ${BKG_ROOT}_orig.fits ${BKG_ROOT}_tmp.fits
printf "apply \`status=0' to filter blanksky file ...\n"
punlearn dmcopy
dmcopy "${BKG_ROOT}_tmp.fits[status=0]" ${BKG_ROOT}_orig.fits clobber=yes
rm -fv ${BKG_ROOT}_tmp.fits
fi
## DATAMODE, status=0 }}}
## check `GAINFILE' of blanksky and evt2 file {{{
## if NOT match, then reprocess blanksky
GAINFILE_EVT="`dmkeypar ${EVT} GAINFILE echo=yes`"
GAINFILE_BG="`dmkeypar "${BKG_ROOT}_orig.fits" GAINFILE echo=yes`"
if ! [ "${GAINFILE_EVT}" = "${GAINFILE_BG}" ]; then
printf "WARNING: GAINFILE NOT match.\n"
printf "event: ${GAINFILE_EVT}\n"
printf "blank: ${GAINFILE_BG}\n"
printf "reprocess blanksky with evt gainfile ...\n"
# reprocess blanksky using matched evt GAINFILE
GAINFILE="$CALDB/data/chandra/acis/det_gain/`basename ${GAINFILE_EVT}`"
printf "GAINFILE: ${GAINFILE}\n"
background_regain "${BKG_ROOT}_orig.fits" ${GAINFILE}
fi
## check & match GAINFILE }}}
printf "add the PNT header keywords ... "
EVT_HEADER="_evt_header.par"
EVT_PNT="_evt_pnt.par"
punlearn dmmakepar
dmmakepar ${EVT} ${EVT_HEADER} clobber=yes
\grep -i '_pnt' ${EVT_HEADER} > ${EVT_PNT}
punlearn dmreadpar
dmreadpar ${EVT_PNT} "${BKG_ROOT}_orig.fits[EVENTS]" clobber=yes
printf "DONE\n"
printf "reproject the background ...\n"
punlearn reproject_events
reproject_events infile=${BKG_ROOT}_orig.fits \
outfile=${BKG_ROOT}.fits match=${EVT} \
aspect="@${ASOLIS}" random=0 clobber=yes
# Make image of the stowed background
if [ -f "${IMGDIR}/skyfov.fits" ]; then
ln -svf ${IMGDIR}/skyfov.fits .
BKG_IMG="img_${BKG_ROOT}_e`echo ${ERANGE} | tr ':' '-'`.fits"
printf "creating the background image ...\n"
punlearn dmcopy
dmcopy infile="${BKG_ROOT}.fits[energy=${ERANGE}][sky=region(skyfov.fits[ccd_id=${CCD}])][bin sky=1]" outfile=${BKG_IMG} clobber=yes
else
printf "ERROR: '${IMGDIR}/skyfov.fits' not exists\n"
fi
## main end }}}
# clean
printf "\nclean ...\n"
rm -fv ${BKG_ROOT}_orig.fits ${EVT_PNT}
printf "\nFINISHED\n"
# vim: set ts=8 sw=4 tw=0 fenc=utf-8 ft=sh #
|