Changeset 8514


Ignore:
Timestamp:
05/14/07 17:51:07 (17 years ago)
Author:
Daniela Dorner
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8513 r8514  
    2222   * datacenter/scripts/checkfilesforsequenceavail:
    2323     - added missing 'set -C'
     24
     25   * scripts/processsequence:
     26     - added option (now callisto rc can be giving in a command line
     27       option)
    2428
    2529
  • trunk/MagicSoft/Mars/scripts/processsequence

    r8496 r8514  
    6060   echo -n "  -cal                   "
    6161   echo " running only calibration"
     62   echo -n "  --cal-rc                   "
     63   echo " giving the rc-file used for the calibration "
    6264   echo -n "  -b                     "
    6365   echo " running in non-interactive mode (i.e. you are not asked if the paths are ok)"
     
    108110           --sequ)  shift
    109111                    sequence=$1
     112                    ;;
     113         --cal-rc)  shift
     114                    calrc="--config="$1
    110115                    ;;
    111116            --out)  shift
     
    184189   fi
    185190fi
     191if ! [ "$calrc" = "" ]
     192then
     193   echo "using $calrc for calibration"
     194fi
    186195
    187196
     
    213222   echo "run $program..."
    214223   logfile=$calpath/$program$sequence.log
    215    command="./$program -b -q -f --log=$logfile --out=$calpath $sequfile "
     224   command="./$program -b -q -f --log=$logfile --out=$calpath $calrc $sequfile "
    216225   echo $command
    217226   $command
Note: See TracChangeset for help on using the changeset viewer.