Ignore:
Timestamp:
03/19/12 10:36:39 (12 years ago)
Author:
sdipsl
Message:
  • tune ncrcat command (exclude variables that are not in all files, instead of including those that are in every file because of command line lenght issues on titane)
  • get the mesh_mask from the buffer if necessary
  • correct some typo
  • small modification due to the new .atlas_env_titane_ksh
  • pack_output works in stand-alone ==> need to revisit dependancies with asynchronous rebuild and create_ts/create_se to have it online.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libIGCM/libIGCM_post/IGCM_Patch_20091118_mask.ksh

    r373 r584  
    2020    IGCM_debug_PushStack "IGCM_Patch_mask" $@ 
    2121 
    22     [ -f ${config_UserChoices_JobName}_mesh_mask.nc ] || IGCM_sys_Get ${R_SAVE}/OCE/Output/${config_UserChoices_JobName}_mesh_mask.nc . 
     22    if [ -f ${config_UserChoices_JobName}_mesh_mask.nc ] ; then 
     23      if [ -f ${R_SAVE}/OCE/Output/${config_UserChoices_JobName}_mesh_mask.nc ] ; then 
     24        IGCM_sys_Get ${R_SAVE}/OCE/Output/${config_UserChoices_JobName}_mesh_mask.nc . 
     25      elif [ -f ${R_BUFR}/OCE/Output/${config_UserChoices_JobName}_mesh_mask.nc ] ; then 
     26        IGCM_sys_Get ${R_BUFR}/OCE/Output/${config_UserChoices_JobName}_mesh_mask.nc . 
     27      fi 
     28    else 
     29      IGCM_debug_Exit "mesh_mask can not be found. Stop." 
     30      IGCM_debug_Exit "neither here ${R_SAVE}/OCE/Output/${config_UserChoices_JobName}_mesh_mask.nc" 
     31      IGCM_debug_Exit "nor here ${R_BUFR}/OCE/Output/${config_UserChoices_JobName}_mesh_mask.nc" 
     32      IGCM_debug_Verif_Exit_Post 
     33    fi 
    2334 
    2435    filename=${1} 
Note: See TracChangeset for help on using the changeset viewer.