1 | #!/bin/sh -xvf
|
---|
2 | #download SCA file, proceed to introspection, and upload results
|
---|
3 | DATE=/bin/date
|
---|
4 | GREP=/bin/grep
|
---|
5 | AWK=/bin/awk
|
---|
6 | ECHO=/bin/echo
|
---|
7 | WC=/usr/bin/wc
|
---|
8 | CAT=/bin/cat
|
---|
9 | PRINTF=/usr/bin/printf
|
---|
10 | FIND=/usr/bin/find
|
---|
11 | MKDIR=/bin/mkdir
|
---|
12 | XARGS=/usr/bin/xargs
|
---|
13 | SORT=/bin/sort
|
---|
14 | RM=/bin/rm
|
---|
15 | TR=/usr/bin/tr
|
---|
16 | CP=/bin/cp
|
---|
17 | LS=/bin/ls
|
---|
18 | CHMOD=/bin/chmod
|
---|
19 |
|
---|
20 | DefaultIFS=$' \t\n'
|
---|
21 | IFS=$DefaultIFS
|
---|
22 |
|
---|
23 | #set Irods environment
|
---|
24 | . /usr/local/shared/bin/irods_env.sh -noverbose
|
---|
25 |
|
---|
26 | scriptName="`basename $0`"
|
---|
27 | #$ECHO "Processing script ${scriptName} at `date`"
|
---|
28 |
|
---|
29 | #$ECHO "SHOULD BE RETUNED FOR THE inPath cmd line of analyse.cc (Sorry...): 21/7/11 by JEC"
|
---|
30 | #exit 1
|
---|
31 |
|
---|
32 | #Process cmd line args: the -src option is mandatory (source name as Abell85)
|
---|
33 | sourceRadio=
|
---|
34 | dateSelected=
|
---|
35 | #use -sim option to simulate processing (debug the script as if...)
|
---|
36 | simulationMode=Off
|
---|
37 | while [ $# -gt 0 ]
|
---|
38 | do
|
---|
39 | case "$1" in
|
---|
40 | -src) sourceRadio=$2; shift;;
|
---|
41 | -date) dateSelected=$2; shift;;
|
---|
42 | -sim) simulationMode=On;;
|
---|
43 | -h)
|
---|
44 | echo >&2 \
|
---|
45 | "usage: $0 -src souce -date YYYYMMDD [-sim]"
|
---|
46 | exit 1;;
|
---|
47 | *) break;; # terminate while loop
|
---|
48 | esac
|
---|
49 | shift
|
---|
50 | done
|
---|
51 |
|
---|
52 | if [ ${simulationMode} = "On" ]; then
|
---|
53 | $ECHO "INFO ${scriptName} running in SIMUL mode"
|
---|
54 | fi
|
---|
55 |
|
---|
56 |
|
---|
57 | if [ "<${sourceRadio}>" = "<>" ]; then
|
---|
58 | $ECHO "FATAL: You have forgotten to select the source option (-src)"
|
---|
59 | exit 1
|
---|
60 | fi
|
---|
61 |
|
---|
62 | case ${sourceRadio} in
|
---|
63 | Abell85) $ECHO "INFO (${scriptName}): process ${sourceRadio}";;
|
---|
64 | Abell2440) $ECHO "INFO (${scriptName}): process ${sourceRadio}";;
|
---|
65 | Abell1205) $ECHO "INFO (${scriptName}): process ${sourceRadio}";;
|
---|
66 | *) ECHO "FATAL (${scriptName}): process ${sourceRadio} not yet foreseen"
|
---|
67 | exit 1;;
|
---|
68 | esac
|
---|
69 |
|
---|
70 |
|
---|
71 | srclower=`${ECHO} ${sourceRadio} | ${TR} "[:upper:]" "[:lower:]" `
|
---|
72 |
|
---|
73 | #Path to public backupable path
|
---|
74 | publicpath="/afs/in2p3.fr/home/c/campagne/public"
|
---|
75 |
|
---|
76 |
|
---|
77 | #temporary files to synchronize scripts
|
---|
78 | tmppublicpath=${TMPPUBLICPATH}
|
---|
79 | $LS -l ${tmppublicpath} > /dev/null
|
---|
80 | #clean previous spurious files
|
---|
81 | $RM -f ${tmppublicpath}/*.finished
|
---|
82 |
|
---|
83 |
|
---|
84 | #Path where the job will do temporary IO
|
---|
85 | . ${SCRIPTPATH}/isInteractive.sh
|
---|
86 | isInteractive=$(isInteractive)
|
---|
87 | if [ ${isInteractive} == "1" ]; then
|
---|
88 | $ECHO "Usage in INTERACTIVE may be destructive... To be used with great care !!!!"
|
---|
89 | exit 0;
|
---|
90 | fi
|
---|
91 |
|
---|
92 | . ${SCRIPTPATH}/set_iojobpath.sh
|
---|
93 | iojobpath=$(set_iojobpath)
|
---|
94 | cd ${iojobpath}
|
---|
95 |
|
---|
96 | localpath="${sourceRadio}"
|
---|
97 | $MKDIR -p ./${localpath}
|
---|
98 | cd ./${localpath}
|
---|
99 |
|
---|
100 | #save the top directory
|
---|
101 | topDir=`pwd`
|
---|
102 |
|
---|
103 | #Path of the utility scripts
|
---|
104 | scriptpath=${SCRIPTPATH}
|
---|
105 |
|
---|
106 |
|
---|
107 | #JEC 1/10/11 Use generic baodaqstatus name
|
---|
108 | #get the daq current irod status
|
---|
109 | #tag=`${DATE} +%F`
|
---|
110 | #OUT1=${publicpath}/baodaqstatus-${tag}.txt
|
---|
111 | OUT1=${publicpath}/baodaqstatus-current.txt
|
---|
112 |
|
---|
113 | if [ ! -e ${OUT1} -o ! -r ${OUT1} ]; then
|
---|
114 | $ECHO "FATAL (${scriptName}): ${OUT1} has a problem"
|
---|
115 | exit 1
|
---|
116 | fi
|
---|
117 |
|
---|
118 | #
|
---|
119 | $ECHO "You have selected sourceRadio = $sourceRadio [date = ${dateSelected}]"
|
---|
120 | tableau=( `$GREP -i "${dateSelected}${srclower}" ${OUT1} | $AWK '( NF==4 ) { print $2 }' ` )
|
---|
121 | IFS='
|
---|
122 | '
|
---|
123 | tableau=( $( $PRINTF "%s\n" "${tableau[@]}" | $AWK 'x[$0]++ == 0' ) )
|
---|
124 | IFS=$DefaultIFS
|
---|
125 |
|
---|
126 |
|
---|
127 | for i in ${tableau[@]}
|
---|
128 | do
|
---|
129 | # start a "fresh" session
|
---|
130 | cd ${topDir}
|
---|
131 | $LS | $XARGS -i $RM -rf {}
|
---|
132 |
|
---|
133 | $ECHO "DEBUG (${scriptName}): irods root dir $i"
|
---|
134 | dateDAQ=`$ECHO ${i} | $AWK '{split($0,a,"/"); print a[6];}' | $AWK "{sub(/${srclower}/,\"\"); print}"`
|
---|
135 |
|
---|
136 | $LS -lrt
|
---|
137 |
|
---|
138 | ######
|
---|
139 | $ECHO ">>>>>>>>>>>>> ANALYSIS Part of ${sourceRadio} ${dateDAQ}"
|
---|
140 | #go to the .../source/date-sourcelowercase directory
|
---|
141 | $MKDIR -p ${topDir}/${dateDAQ}${srclower}
|
---|
142 | cd ${topDir}/${dateDAQ}${srclower}
|
---|
143 | aboveOnOffDir=`pwd`
|
---|
144 | $ECHO "DEBUG (${scriptName}): we are in directory: <`pwd`>"
|
---|
145 | # So the input files are there, so the fits file can be determined
|
---|
146 | mode="Off"
|
---|
147 |
|
---|
148 | input4gainOk1=`ils ${i}/Off 2>&1 | $GREP -i "^ERROR" | $WC -l`
|
---|
149 | input4gainOk2=`ils ${i}/Off 2>&1 | $GREP -i "gaincycle"`
|
---|
150 | if [ $input4gainOk1 -eq 0 -a "<${input4gainOk2}>" != "<>" ]; then
|
---|
151 | gaincycle=`$ECHO ${input4gainOk2} | $AWK '($1 == "C-"){print $2}'| $XARGS -i basename {}`
|
---|
152 | else
|
---|
153 | $ECHO "INFO ${scriptName}: no gaincycle for ${i}"
|
---|
154 | continue
|
---|
155 | fi
|
---|
156 |
|
---|
157 | spectraGenDirName=`$ECHO ${gaincycle} | $AWK '{match($0,"[a-zA-Z]+",arr); print arr[0]}'`
|
---|
158 | cycleNumber=`$ECHO ${gaincycle} | $AWK '{match($0,"[0-9]+",arr); print arr[0]}'`
|
---|
159 | #care: the gaincycle variable contains the cycle number
|
---|
160 | $ECHO "DEBUG (${scriptName}): START download the fits files"
|
---|
161 | inFileDirectory="./${mode}"
|
---|
162 | $MKDIR -p ${inFileDirectory}
|
---|
163 | irodsDownDir="${i}/${mode}/${gaincycle}"
|
---|
164 | OUT=./getInFits.$$
|
---|
165 | iget -r -f -K ${irodsDownDir} ${inFileDirectory} > ${OUT} 2>&1
|
---|
166 | $LS ${inFileDirectory}/${gaincycle}
|
---|
167 | igetStatus=`$GREP "^ERROR" ${OUT}`
|
---|
168 | if [ "<$igetStatus>" != "<>" ]; then
|
---|
169 | $ECHO "FATAL (${scriptName}): error while iget fits files:"
|
---|
170 | $ECHO $igetStatus
|
---|
171 | continue
|
---|
172 | fi
|
---|
173 | $RM -f ${OUT}
|
---|
174 | $ECHO "DEBUG (${scriptName}): END download the fits files"
|
---|
175 | #Get sca files
|
---|
176 | $ECHO "DEBUG (${scriptName}): START call getscafiles.sh ${sourceRadio} ${dateDAQ}"
|
---|
177 | OUT1=./getScaStatus.$$
|
---|
178 | $RM -f ${tmppublicpath}/getscafiles.finished
|
---|
179 | ${scriptpath}/getscafiles.sh ${sourceRadio} ${dateDAQ} > ${OUT1} 2>&1
|
---|
180 | # AST 21/10/2011: comment while as it blocks the job
|
---|
181 | # while [ ! -f "${tmppublicpath}/getscafiles.finished" ]; do
|
---|
182 | # $ECHO "INFO (${scriptName}): waiting for ${tmppublicpath}/getscafiles.finished"
|
---|
183 | # date +%T
|
---|
184 | # sleep 30
|
---|
185 | # done
|
---|
186 | $RM ${tmppublicpath}/getscafiles.finished
|
---|
187 | $ECHO "DEBUG (${scriptName}): END"
|
---|
188 | #
|
---|
189 | getScaStatus=`$GREP "^\(FATAL\|ERROR\)" ${OUT1}`
|
---|
190 | #
|
---|
191 | if [ "<${getScaStatus}>" != "<>" ]; then
|
---|
192 | $ECHO "FATAL (${scriptName}): error to get sca file for $sourceRadio $dateDAQ"
|
---|
193 | $ECHO "DEBUG (${scriptName}): START with cat ${OUT1}"
|
---|
194 | $CAT ${OUT1}
|
---|
195 | $ECHO "DEBUG (${scriptName}): END"
|
---|
196 | continue
|
---|
197 | fi
|
---|
198 | $RM -f ${OUT1}
|
---|
199 | $ECHO "DEBUG (${scriptName}): where am i `pwd`"
|
---|
200 | $LS -lrt
|
---|
201 |
|
---|
202 | scaFile=`$FIND . -name "sca*.sum.trans" | $XARGS -i basename {}`
|
---|
203 | #
|
---|
204 | #the default spectra name is medfiltmtx, otherwise use -specname <a_string>
|
---|
205 | logFile="analyse_GAIN_${sourceRadio}_${dateDAQ}.log"
|
---|
206 | $ECHO "DEBUG (${scriptName}): execute the analysis... should not take long. `date`"
|
---|
207 | if [ ${simulationMode} = "On" ]; then
|
---|
208 | $ECHO "SIMUL: ${scriptpath}/Objs/analyse -act gain -inPath ${iojobpath} -source ${sourceRadio} -date ${dateDAQ} -sca ${scaFile} -specdir ${spectraGenDirName} -mode ${mode} -numcycle ${cycleNumber},${cycleNumber} -debug 1 >& ${logFile}"
|
---|
209 | cat > ${logFile} <<EOF
|
---|
210 | Ok gain finished
|
---|
211 | EOF
|
---|
212 |
|
---|
213 | else
|
---|
214 | ${scriptpath}/Objs/analyse -act gain -inPath ${iojobpath} -source ${sourceRadio} -date ${dateDAQ} -sca ${scaFile} -specdir ${spectraGenDirName} -mode ${mode} -numcycle ${cycleNumber},${cycleNumber} -debuglev 1 >& ${logFile}
|
---|
215 | fi
|
---|
216 | #
|
---|
217 | $ECHO "DEBUG (${scriptName}): analysis finished `date`. Look for errors before saving to Irods"
|
---|
218 | rcstatus=`$GREP -i "OK gain finished" ${logFile} | $WC -l`
|
---|
219 | if [ ${rcstatus} -eq 0 ]; then
|
---|
220 | $ECHO "INFO (${scriptName}): analysis problem for ${sourceRadio} ${dateDAQ}"
|
---|
221 | $ECHO " START logfile"
|
---|
222 | $CAT ${logFile}
|
---|
223 | $ECHO " END logFile"
|
---|
224 | #clean and leave
|
---|
225 | cd ${aboveOnOffDir}
|
---|
226 | $RM -rf ./*
|
---|
227 | continue
|
---|
228 | fi
|
---|
229 | #Save into Irods
|
---|
230 | $ECHO "DEBUG (${scriptName}): START save output files"
|
---|
231 | $LS ${aboveOnOffDir}
|
---|
232 | #use -f option of iput ONLY to force override
|
---|
233 | if [ ${simulationMode} = "On" ]; then
|
---|
234 | $ECHO "SIMUL: here we look for gain file and put them in Irods"
|
---|
235 | else
|
---|
236 | $FIND . -name "gain_*" -print | $XARGS -i iput -f -v -K {} ${i}
|
---|
237 | fi
|
---|
238 | #save analysis logfile
|
---|
239 | $LS -l ${tmppublicpath} > /dev/null
|
---|
240 | $CP ${logFile} ${tmppublicpath}
|
---|
241 | $ECHO "DEBUG (${scriptName}): END save output files"
|
---|
242 | #clean
|
---|
243 | cd ${aboveOnOffDir}
|
---|
244 | $LS | $XARGS -i $RM -rf {}
|
---|
245 |
|
---|
246 | done
|
---|
247 |
|
---|
248 | exit 0 |
---|