Changeset 21252


Ignore:
Timestamp:
10/10/16 07:35:14 (8 years ago)
Author:
bdef
Message:

BUG: fixed indexing for results may have broke something elsewhere

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/io/loadvars.py

    r21247 r21252  
    8989                                if classtype[mod][0]=='list':
    9090                                        keylist=[key for key in curclass.groups]
     91                                        steplist=[int(key) for key in curclass.groups]
     92                                        indexlist=[index*(len(curclass.groups)-1)/max(steplist) for index in steplist]
    9193                                        listtype=curclass.groups[keylist[0]].classtype
    9294                                        if listtype=='dict':
     
    118120                                                if vardim==0:
    119121                                                        if type(Tree)==list:
    120                                                                 t=int(keylist[i][-1])-1
     122                                                                t=indexlist[i]
    121123                                                                if listtype=='dict':
    122124                                                                        Tree[t][str(var)]=varval.getValue()
     
    142144                                                        else:
    143145                                                                if type(Tree)==list:
    144                                                                         t=int(keylist[i][-1])-1
     146                                                                        t=indexlist[i]
    145147                                                                        if listtype=='dict':
    146148                                                                                Tree[t][str(var)]=varval[:]
     
    152154                                                                                mdtype=type(Tree.__dict__[str(var)])
    153155                                                                        except KeyError:
    154                                                                                 print 'not defined yet'
    155156                                                                                mdtype=float
    156157                                                                        if mdtype==list:
     
    164165                                                        else:
    165166                                                                if type(Tree)==list:
    166                                                                         t=int(keylist[i][-1])-1
     167                                                                        #t=int(keylist[i][-1])-1
     168                                                                        t=indexlist[i]
    167169                                                                        if listtype=='dict':
    168170                                                                                Tree[t][str(var)]=varval[:,:]
     
    173175                                                elif vardim==3:
    174176                                                        if type(Tree)==list:
    175                                                                 t=int(keylist[i][-1])-1
     177                                                                t=indexlist[i]
    176178                                                                if listtype=='dict':
    177179                                                                        Tree[t][str(var)]=varval[:,:,:]
     
    185187                                        if  attr!='classtype': #classtype is for treatment, don't get it back
    186188                                                if type(Tree)==list:
    187                                                         t=int(keylist[i][-1])-1
     189                                                        t=indexlist[i]
    188190                                                        if listtype=='dict':
    189191                                                                Tree[t][str(attr)]=str(listclass.getncattr(attr))
Note: See TracChangeset for help on using the changeset viewer.