# 1975 for CORE2
# 1990 for JRA
./xmlchange RUN_STARTDATE=338-01-01

# check to see if cfc or sf6 is present before appending them
# check for an exact module name match, to avoid false matches
array_of_tracer_modules=(`./xmlquery OCN_TRACER_MODULES --value`)
cfc_found=0
sf6_found=0
for mod in ${array_of_tracer_modules[@]}; do
  if [[ $mod == "cfc" ]] ; then
    cfc_found=1
  fi
  if [[ $mod == "sf6" ]] ; then
    sf6_found=1
  fi
done
if [[ $cfc_found == 0 ]]; then
    ./xmlchange -a OCN_TRACER_MODULES=cfc
fi
if [[ $sf6_found == 0 ]]; then
    ./xmlchange -a OCN_TRACER_MODULES=sf6
fi
