Changeset 21252
- Timestamp:
- 10/10/16 07:35:14 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/io/loadvars.py
r21247 r21252 89 89 if classtype[mod][0]=='list': 90 90 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] 91 93 listtype=curclass.groups[keylist[0]].classtype 92 94 if listtype=='dict': … … 118 120 if vardim==0: 119 121 if type(Tree)==list: 120 t=in t(keylist[i][-1])-1122 t=indexlist[i] 121 123 if listtype=='dict': 122 124 Tree[t][str(var)]=varval.getValue() … … 142 144 else: 143 145 if type(Tree)==list: 144 t=in t(keylist[i][-1])-1146 t=indexlist[i] 145 147 if listtype=='dict': 146 148 Tree[t][str(var)]=varval[:] … … 152 154 mdtype=type(Tree.__dict__[str(var)]) 153 155 except KeyError: 154 print 'not defined yet'155 156 mdtype=float 156 157 if mdtype==list: … … 164 165 else: 165 166 if type(Tree)==list: 166 t=int(keylist[i][-1])-1 167 #t=int(keylist[i][-1])-1 168 t=indexlist[i] 167 169 if listtype=='dict': 168 170 Tree[t][str(var)]=varval[:,:] … … 173 175 elif vardim==3: 174 176 if type(Tree)==list: 175 t=in t(keylist[i][-1])-1177 t=indexlist[i] 176 178 if listtype=='dict': 177 179 Tree[t][str(var)]=varval[:,:,:] … … 185 187 if attr!='classtype': #classtype is for treatment, don't get it back 186 188 if type(Tree)==list: 187 t=in t(keylist[i][-1])-1189 t=indexlist[i] 188 190 if listtype=='dict': 189 191 Tree[t][str(attr)]=str(listclass.getncattr(attr))
Note:
See TracChangeset
for help on using the changeset viewer.