----------------------------------------------------------------------------
| 622 | |
| 623 | //---------------------------------------------------------------------------- |
| 624 | vtkDataArraySelection* vtkIOSSReader::GetFieldSelection(int type) |
| 625 | { |
| 626 | if (type < 0 || type >= NUMBER_OF_ENTITY_TYPES) |
| 627 | { |
| 628 | vtkErrorMacro("Invalid type '" << type |
| 629 | << "'. Supported values are " |
| 630 | "vtkIOSSReader::NODEBLOCK (0), ... vtkIOSSReader::SIDESET (" |
| 631 | << vtkIOSSReader::SIDESET << ")."); |
| 632 | return nullptr; |
| 633 | } |
| 634 | return this->EntityFieldSelection[type]; |
| 635 | } |
| 636 | |
| 637 | //---------------------------------------------------------------------------- |
| 638 | const std::map<std::string, vtkTypeInt64>& vtkIOSSReader::GetEntityIdMap(int type) const |
no outgoing calls
no test coverage detected