Ignore:
Timestamp:
07/05/17 20:18:51 (7 years ago)
Author:
sdipsl
Message:

CMIP6 workflow. Merging trunk into branch 'branch' r:1375:1398

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tags/libIGCM_v3.0_beta1/libIGCM_sys/libIGCM_sys_ada.ksh

    r1362 r1399  
    807807 
    808808  IGCM_debug_PopStack "IGCM_sys_GetDate_Monitoring" 
     809} 
     810 
     811#D-#================================================== 
     812#D-function IGCM_sys_Dods_Rm 
     813#D-* Purpose: DO NOTHING ! Put ${ARCHIVE} files on DODS internet protocole. 
     814#D-* Examples: 
     815#D- 
     816function IGCM_sys_Dods_Rm { 
     817  if ( $DEBUG_sys ) ; then 
     818    echo "IGCM_sys_Dods_Rm :" $@ 
     819  fi 
     820 
     821  typeset status 
     822  if [ $DRYRUN = 0 ]; then 
     823    if [ "$#" -eq 1 ]; then 
     824      rsh ${STOREHOST} exec /bin/ksh <<EOF 
     825          cd ${R_SAVE} 
     826          /arch/local/bin/dods_rm DODS/pub/${LOGIN}/${R_DODS}/${1} > /dev/null 2>&1 
     827EOF 
     828      status=$? 
     829    else 
     830      rsh ${STOREHOST} exec /bin/ksh <<EOF 
     831          cd ${R_SAVE} 
     832          /arch/local/bin/dods_rm DODS/pub/${LOGIN}/${R_DODS} > /dev/null 2>&1 
     833EOF 
     834      status=$? 
     835    fi 
     836  fi 
     837 
     838  return ${status} 
     839} 
     840 
     841#D-#================================================== 
     842#D-function IGCM_sys_Dods_Cp 
     843#D-* Purpose: Copy $(ARCHIVE) files on DODS internet protocole. 
     844#D-* Examples: 
     845#D- 
     846function IGCM_sys_Dods_Cp { 
     847  if ( $DEBUG_sys ) ; then 
     848    echo "IGCM_sys_Dods_Cp :" $@ 
     849  fi 
     850  return 0 
    809851} 
    810852 
     
    15461588} 
    15471589 
     1590#D-#================================================== 
     1591#D-function IGCM_sys_rebuild_nemo 
     1592#D-* Purpose: rebuild nemo parallel files with general rebuild 
     1593#D-* Examples: 
     1594#D- 
     1595 
     1596function IGCM_sys_rebuild_nemo { 
     1597  IGCM_debug_PushStack "IGCM_sys_rebuild_nemo" $@ 
     1598  if ( $DEBUG_sys ) ; then 
     1599    echo "IGCM_sys_rebuild_nemo :" $@ 
     1600  fi 
     1601 
     1602  nemo_generic_restart_file_name_out=${1} 
     1603  nemo_extension_out=${3} 
     1604  shift ; shift ; shift 
     1605 
     1606  IGCM_sys_rebuild -o ${nemo_generic_restart_file_name_out}.${nemo_extension_out} $@ 
     1607 
     1608  IGCM_debug_PopStack "IGCM_sys_rebuild_nemo" 
     1609} 
     1610 
     1611 
Note: See TracChangeset for help on using the changeset viewer.