-
Notifications
You must be signed in to change notification settings - Fork 0
/
extract-back-band-m1.sh
executable file
·59 lines (50 loc) · 1.99 KB
/
extract-back-band-m1.sh
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
######################################################################
# runs background spectral extraction in the custom bands
#
# Snowden & Kuntz, 2011:
#
# mos-back and pn-back take the individual ccd or quadrant spectra and
# images and combines them into complete spectra and images for the
# selected region. The resultant image is in detector coordinates.
# mos-back creates a QDP plot file which shows the source and model
# background spectra for the observation. Any discrepancies at higher
# energies probably indicate residual soft proton contamination,
# unless there are really hard and bright sources in the field. In
# the case of this observation the discrepancy at high energies is
# consistent with soft protons as a residual contamination was already
# expected from the light curve histogram. The QDP files have names
# like: mos1S003-spec.qdp
# rot-im-det-sky uses information in a previously created count image
# in sky coordinates to rotate the detector coordinate background
# images into images in sky coordinates.
dir=$1
elow=$2 # detection bands minima [eV]
ehigh=$3 # detection bands maxima [eV]
here=`pwd`
cd $dir
######################################################################
# extract m1 spectra - soft band
prefix=$M1_EV_PREFIX_LIST
ccd1=$M1_CCD1
ccd2=$M1_CCD2
ccd3=$M1_CCD3
ccd4=$M1_CCD4
ccd5=$M1_CCD5
ccd6=$M1_CCD6
ccd7=$M1_CCD7
mos_back prefix="$prefix" caldb=$esas_caldb diag=0 elow="$elow" ehigh="$ehigh" ccd1=$ccd1 ccd2=$ccd2 ccd3=$ccd3 ccd4=$ccd4 ccd5=$ccd5 ccd6=$ccd6 ccd7=$ccd7
if [[ $? -ne 0 ]]
then
echo -e "\n** error: mos1 background extraction in soft band failed!"
echo -e "*** error in script: $0\n"
cd $startdir
exit 1
fi
######################################################################
# rotate background to sky position
rot-im-det-sky prefix="$prefix" mask=0 elow=$elow ehigh=$ehigh mode=1
######################################################################
# exit
cd $here
echo -e "\n$0 in $obsid done!"
exit 0