Changeset 16213
- Timestamp:
- 09/20/13 12:11:12 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/IoModel.cpp
r16209 r16213 1100 1100 case 5: //boolean vector 1101 1101 this->FetchData(&doublearray,&M,&N,vector_enum); //we still have a doublearray, because it might include times in transient mode 1102 if(!doublearray) _error_(EnumToStringx(vector_enum)<<" not found in bin dary file");1102 if(!doublearray) _error_(EnumToStringx(vector_enum)<<" not found in binary file"); 1103 1103 for(i=0;i<elements->Size();i++){ 1104 1104 Element* element=dynamic_cast<Element*>(elements->GetObjectByOffset(i)); … … 1108 1108 case 6: //int vector 1109 1109 this->FetchData(&doublearray,&M,&N,vector_enum); //we still have a doublearray, because it might include times in transient mode 1110 if(!doublearray) _error_(EnumToStringx(vector_enum)<<" not found in bin dary file");1110 if(!doublearray) _error_(EnumToStringx(vector_enum)<<" not found in binary file"); 1111 1111 for(i=0;i<elements->Size();i++){ 1112 1112 Element* element=dynamic_cast<Element*>(elements->GetObjectByOffset(i)); … … 1116 1116 case 7: //IssmDouble vector 1117 1117 this->FetchData(&doublearray,&M,&N,vector_enum); 1118 if(!doublearray) _error_(EnumToStringx(vector_enum)<<" not found in bin dary file");1118 if(!doublearray) _error_(EnumToStringx(vector_enum)<<" not found in binary file"); 1119 1119 for(i=0;i<elements->Size();i++){ 1120 1120 Element* element=dynamic_cast<Element*>(elements->GetObjectByOffset(i));
Note:
See TracChangeset
for help on using the changeset viewer.