-
Notifications
You must be signed in to change notification settings - Fork 0
/
plt-diagnostics.sh
executable file
·65 lines (43 loc) · 997 Bytes
/
plt-diagnostics.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
60
61
62
63
64
65
######################################################################
# make diagnostic plots
dir=$1
here=`pwd`
cd $dir
format="/gif"
format_suffix="gif"
######################################################################
# prep dir
if [[ ! -e diagnostics ]]
then
mkdir -p diagnostics/spec
mkdir -p diagnostics/aug
fi
######################################################################
# diagnostic spectra
for i in *-spec*.qdp
do
echo "plotting :: $i"
qdp<<EOF
$i
$format
EOF
outim=`basename $i .qdp`
mv pgplot.$format_suffix diagnostics/spec/${outim}.$format_suffix
done
######################################################################
# diagnostic hardness ratia
for i in *-aug*.qdp
do
echo "plotting :: $i"
qdp<<EOF
$i
$format
EOF
outim=`basename $i .qdp`
mv pgplot.$format_suffix diagnostics/aug/${outim}.$format_suffix
done
######################################################################
# exit
cd $here
echo -e "\n$0 in $obsid done!"
exit 0