#!/bin/csh
#---------------------------------------------------------------------------
#
# Name: xp_acs_edt2fits
#
# Purpose: runs the ACS: SS,DV,WC,GC "super-stage" for science data under OWL
#
# Args: repository ($1) = base directory for processing tree
#       dataset ($2)    = name of dataset to process
#
# History:
# 07/10/12  71706  MSwam         first version
#
#---------------------------------------------------------------------------
set REPOSITORY = $1
set DATASET    = $2
#
ss -i ACS -d ${REPOSITORY}/sis/acs/ ${DATASET}
#
dv -i ACS -c -d ${REPOSITORY}/sis/acs/ ${DATASET}
#
wcs_OWL -d ${REPOSITORY}/sis/acs/ ${DATASET}
#
# PLAN to make GC use the new command-line args package too, for now it doesn't
# (uses env vars instead)
xp_gc_acs
