Ignore:
Timestamp:
09/30/10 17:09:28 (14 years ago)
Author:
sdipsl
Message:
  • bug fix in TimeSeries_Checker with uninitialized variable
  • remove workaround due to this bug
  • on CCRT post-processing machine: put_Out will skip "cp" if file already exist AND are identical, will OVERWRITE otherwise! Ease the rebuild life a lot :-)
  • umask set to 0022 by default for all machine. umask is 0027 at CCRT by default
  • add a comment in AA_job
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libIGCM/AA_TimeSeries_Checker

    r357 r358  
    259259                    TimeSeries2D=false 
    260260                    TimeSeries3D=false 
     261                    chunck=false 
    261262                    iLoop=${#ListDimension[*]} 
    262263                    j=0 
     
    309310                        # 
    310311                        if [ $( eval echo \${${compname}_Post_${FILE}_TimeSeriesVars${Dimension}} ) = ${NULL_STR} ] ; then 
    311                             IGCM_debug_Print 2 "Empty TS : ${compname}_Post_${FILE}_TimeSeriesVars${Dimension}" 
     312                            #IGCM_debug_Print 2 "Empty TS : ${compname}_Post_${FILE}_TimeSeriesVars${Dimension}" 
    312313                            #(( i=i+3 )) 
    313314                            continue 
     
    321322                        # Si on n'a pas de chunck, dans ce cas chunck_size=la durée de la simulation en années 
    322323                        YearsChunckLength=$( echo ${chunck_size} | sed -e "s/[yY]//" ) 
    323                         if ( [ ${chunck} = false ] || [ X${YearsChunckLength} = XOFF ] ) ; then 
    324                             YearsChunckLength=$(( YearEnd - YearBegin + 1 )) 
    325                         fi 
     324                        [ ${chunck} = false ] && YearsChunckLength=$(( YearEnd - YearBegin + 1 )) 
    326325 
    327326                        NbYearsChunckLoop=$(( ( YearEnd - YearBegin + 1 ) / YearsChunckLength )) 
     
    368367 
    369368                            echo 
    370                             if ( [ ${chunck} = true ] && [ ${SuccessRate} -ne 100 ] && [ $( eval echo \${${compname}_${flag_post}_ChunckJob${Dimension}} ) != OFF ]) ; then 
     369                            if ( [ ${chunck} = true ] && [ ${SuccessRate} -ne 100 ] ) ; then 
    371370                                ChunckCompletedFlag="" 
    372371                                CompletedFlag=${SavedCompletedFlag} 
Note: See TracChangeset for help on using the changeset viewer.