4 # ------------------------------------------------------------------------------------------
 
    6 #                   Auxiliary script for configuration of acoustics scripts.
 
    8 # ------------------------------------------------------------------------------------------
 
   10 if [ -z $JPP_DIR ]; then
 
   11     echo "Variable JPP_DIR undefined."
 
   15 source $JPP_DIR/setenv.sh $JPP_DIR >& /dev/null
 
   17 set_variable:  DEBUG    ACOUSTICS_DEBUG     2
 
   18 set_variable:  WORKDIR  ACOUSTICS_WORKDIR   ./
 
   19 set_variable:  VERSION  ACOUSTICS_VERSION   \*
 
   22     usage "$script <detector identifier>"\
 
   23           "\nAuxiliary script to locally install input files for acoustics data processing."
 
   26 if (( $# != 1 )); then
 
   27     fatal "Wrong number of arguments."
 
   30 let "ID  = $1"                                # Detector identifier
 
   31 let "RUN =  1"                                # arbitrary run number
 
   33 # Locally install input files.
 
   35 source JAcousticsToolkit.sh
 
   37 for KEY in $ACOUSTICS_KEYS[*]; do
 
   39     if [[ ! -f $WORKDIR/${KEY}.txt ]]; then
 
   41         getFile.sh  $JPP_ARCHIVE  $ID  $RUN  $KEY  $VERSION  $WORKDIR/${KEY}
 
   43         if (( $? != 0 )); then
 
   49 for KEY in $ACOUSTICS_AUXS[*]; do
 
   51     if [[ ! -f $WORKDIR/${KEY}.txt ]]; then
 
   52         fatal "Missing file $WORKDIR/${KEY}.txt"\
 
   53               "\nYou may want to execute archive-get-calibration.sh beforehand."