-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextract-spec-band-m1.sh
executable file
·50 lines (43 loc) · 1.6 KB
/
extract-spec-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
######################################################################
# runs spectral extraction in the requested bands
#
# Snowden & Kuntz, 2011:
#
# mos-spectra and pn-spectra processes the filtered event files to
# produce background spectra for the entire energy range and selected
# region and background images for the selected region and selected
# band for the individual ccds. The region selection expression is in
# an input file and should be in detector coordinates. If the input
# file does not exist, reg.txt in this case, the default is to process
# the entire FOV. The input energies are in eV. Change the caldb
# directory string to whatever is appropriate. In this step the
# processing is to create images in two bands for the instruments.
dir=$1
elow=$2 # detection bands minima [eV]
ehigh=$3 # detection bands maxima [eV]
here=`pwd`
cd $dir
######################################################################
# extract m1 spectra - standard band
prefix=$M1_EV_PREFIX_LIST # mos eventlists
regfile=$M1_SRC_REGFILE
ccd1=$M1_CCD1
ccd2=$M1_CCD2
ccd3=$M1_CCD3
ccd4=$M1_CCD4
ccd5=$M1_CCD5
ccd6=$M1_CCD6
ccd7=$M1_CCD7
mos-spectra prefix=$prefix caldb=$esas_caldb region=$regfile mask=1 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 spectral extraction in standard band failed!"
echo -e "*** error in script: $0\n"
cd $startdir
exit 1
fi
######################################################################
# exit
cd $here
echo -e "\n$0 in $obsid done!"
exit 0