#! /usr/bin/sh # Take a MARX output file, HETG/ACIS-S config, and do L1.5-L2 processing. # The file to be processed is the first command-line argument. # The file should be the output of marx2fits. ############################################################ # # This is a test script. It does no error checking, # and hard-codes some filenames. # ############################################################ #BINDIR=./bin if [ $# = 0 ] then echo Usage: `basename $0` marx2fits_FITS_file echo "You must specify a marx2fits file!" exit 1 fi #$BINDIR/acis_L1 $1 #$BINDIR/hetgs_L15 $1 #$BINDIR/hetgs_L2 $1 acis_L1 $1 hetgs_L15 $1 hetgs_L2 $1