Ignore:
Timestamp:
03/21/12 17:48:52 (12 years ago)
Author:
sdipsl
Message:
  • adapt TSC and create_ts to work with packed files
  • adapt dods related functions to work with work/store
  • bugfixes
  • replace tabulation by 2 space in TSC (svn diff -x -w)
    • sorry for the inconvenience but it will really help on the long run.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libIGCM/libIGCM_config/libIGCM_config.ksh

    r587 r591  
    6161 
    6262  #================================== 
     63  # Read UserChoices section:  
    6364  IGCM_card_DefineArrayFromSection ${SUBMIT_DIR}/config.card UserChoices 
    6465 
     
    8889 
    8990  #================================== 
    90  
     91  # Read Post section:  
     92  IGCM_card_DefineArrayFromSection ${SUBMIT_DIR}/config.card Post 
     93  echo 
     94  IGCM_debug_Print 1 "DefineArrayFromOption : config_Post" 
     95 
     96  for option in ${config_Post[*]} ; do 
     97    IGCM_card_DefineVariableFromOption ${SUBMIT_DIR}/config.card Post ${option} 
     98    eval auxprint=\${config_Post_${option}} 
     99    IGCM_debug_Print 3 "${option} : ${auxprint}" 
     100  done 
     101 
     102  #================================== 
     103  # Define default value to keep compatibility with previous card: means before changes due to TGCC  
     104  [ X${config_Post_PackFrequency} = X ] && config_Post_PackFrequency=${config_Post_RebuildFrequency} 
     105 
     106  #================================== 
     107  # Read ListOfComponents section:  
    91108  IGCM_card_DefineArrayFromSection ${SUBMIT_DIR}/config.card ListOfComponents 
    92109  for comp in ${config_ListOfComponents[*]} ; do 
     
    113130  IGCM_debug_Print 3 "Exe_Output           = ${Exe_Output}" 
    114131 
    115   #================================== 
    116  
    117132  #===================================================================# 
    118133  # Prepare variables available for ${COMP}.card and ${COMP}.driver   # 
     
    211226    fi 
    212227  fi 
    213  
    214   #================================== 
    215   # Read Post section:  
    216   IGCM_card_DefineArrayFromSection ${SUBMIT_DIR}/config.card Post 
    217  
    218   echo 
    219   IGCM_debug_Print 1 "DefineArrayFromOption : config_Post" 
    220  
    221   for option in ${config_Post[*]} ; do 
    222     IGCM_card_DefineVariableFromOption ${SUBMIT_DIR}/config.card Post ${option} 
    223     eval auxprint=\${config_Post_${option}} 
    224     IGCM_debug_Print 3 "${option} : ${auxprint}" 
    225   done 
    226  
    227   #================================== 
    228   # Define default value to keep compatibility with previous card: means before changes due to TGCC  
    229   [ X${config_Post_PackFrequency} = X ] && config_Post_PackFrequency=${config_Post_RebuildFrequency} 
    230228 
    231229  #==================================================== 
Note: See TracChangeset for help on using the changeset viewer.