MCPcopy Create free account
hub / github.com/Kitware/VTK / GetFieldSelection

Method GetFieldSelection

IO/IOSS/vtkIOSSReader.cxx:624–635  ·  view source on GitHub ↗

----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

622
623//----------------------------------------------------------------------------
624vtkDataArraySelection* 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//----------------------------------------------------------------------------
638const std::map<std::string, vtkTypeInt64>& vtkIOSSReader::GetEntityIdMap(int type) const

Callers 15

vtkEntityBlockMethod · 0.45
vtkEntitySetMethod · 0.45
GetNodeSetFieldSelectionFunction · 0.45
GetEdgeSetFieldSelectionFunction · 0.45
GetFaceSetFieldSelectionFunction · 0.45
GetSideSetFieldSelectionFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected