source: BAORadio/AmasNancay/trunk/submit2ge-anagainmaker.sh@ 583

Last change on this file since 583 was 583, checked in by torrento, 14 years ago

Comment while in anagainmaker.sh; add date arg in submit2ge-anagainmaker.sh; minor cosmetic changes

  • Property svn:executable set to *
File size: 971 bytes
Line 
1#!/bin/sh -xv
2
3#Process cmd line args: the -src option is mandatory (source name as Abell85)
4sourceRadio=
5dateSelected=
6#use -sim option to simulate processing (debug the script as if...)
7simulationMode=""
8while [ $# -gt 0 ]
9do
10 case "$1" in
11 -src) sourceRadio=$2; shift;;
12 -date) dateSelected="-date $2"; dateJob="$2"; shift;;
13 -sim) simulationMode="-sim";;
14 -h)
15 echo >&2 \
16 "usage: $0 -src source -date YYYYMMDD [-sim]"
17 exit 1;;
18 *) break;; # terminate while loop
19 esac
20 shift
21done
22
23
24if [ "<${sourceRadio}>" = "<>" ]; then
25 $ECHO "FATAL: You have forgotten to select the source option (-src)"
26 exit 1
27fi
28
29jobBatchName="gains-${sourceRadio}${dateJob}"
30jobLogName="${jobBatchName}.log.$$"
31
32qsub -P P_baoradio -l sps=1,irods=1,ct=2400,vmem=1000M,fsize=500M -o $jobLogName -j yes -N $jobBatchName -m be -M ${LOGNAME}@lal.in2p3.fr -V <<EOF
33
34${SCRIPTPATH}/anagainmaker.sh -src ${sourceRadio} ${dateSelected} ${simulationMode}
35EOF
Note: See TracBrowser for help on using the repository browser.