------------------------------------------------------------------------------
| 243 | |
| 244 | //------------------------------------------------------------------------------ |
| 245 | void vtkAMRFlashReader::SetUpDataArraySelections() |
| 246 | { |
| 247 | assert("pre: Internal Flash Reader is nullptr" && (this->Internal != nullptr)); |
| 248 | this->Internal->ReadMetaData(); |
| 249 | |
| 250 | int numAttrs = static_cast<int>(this->Internal->AttributeNames.size()); |
| 251 | for (int i = 0; i < numAttrs; ++i) |
| 252 | { |
| 253 | this->CellDataArraySelection->AddArray(this->Internal->AttributeNames[i].c_str()); |
| 254 | } |
| 255 | } |
| 256 | VTK_ABI_NAMESPACE_END |
no test coverage detected