| 6169 | } |
| 6170 | |
| 6171 | int vtkExodusIIReader::GetPartArrayID(const char* name) |
| 6172 | { |
| 6173 | int numArrays = this->GetNumberOfPartArrays(); |
| 6174 | for (int i = 0; i < numArrays; i++) |
| 6175 | { |
| 6176 | if (strcmp(name, this->GetPartArrayName(i)) == 0) |
| 6177 | { |
| 6178 | return i; |
| 6179 | } |
| 6180 | } |
| 6181 | return -1; |
| 6182 | } |
| 6183 | |
| 6184 | const char* vtkExodusIIReader::GetPartBlockInfo(int arrayIdx) |
| 6185 | { |
no test coverage detected