#!/usr/bin/ksh
#
# make_gmag_cdf_files.ksh
#
# Parent script for numerous sub-scripts that generate
# file lists for gmag CDF data

## Set the environment variables
#
  if [[ -z $THMSOC ]]
  then
    THMSOC=/disks/socware/thmsoc_dp_current
    export THMSOC
  fi
 	. ${THMSOC}/src/config/soc_it_to_me.config
  . ${THMSOC}/src/config/ground_mag.config

#
## Run scripts
#
	list_gmag_cdfs.ksh
	gen_gmag_cdf_list.ksh
	list_gmag_ascii.ksh

#
## Cleanup
#
	exit 0