------------------------------------------------------------------------------
| 1778 | |
| 1779 | //------------------------------------------------------------------------------ |
| 1780 | vtkUnsignedCharArray* vtkHyperTreeGrid::GetTreeGhostArray() |
| 1781 | { |
| 1782 | if (!this->TreeGhostArrayCached) |
| 1783 | { |
| 1784 | this->TreeGhostArray = vtkArrayDownCast<vtkUnsignedCharArray>( |
| 1785 | this->GetCellData()->GetArray(vtkDataSetAttributes::GhostArrayName())); |
| 1786 | this->TreeGhostArrayCached = true; |
| 1787 | } |
| 1788 | assert(this->TreeGhostArray == |
| 1789 | vtkArrayDownCast<vtkUnsignedCharArray>( |
| 1790 | this->GetCellData()->GetArray(vtkDataSetAttributes::GhostArrayName()))); |
| 1791 | return this->TreeGhostArray; |
| 1792 | } |
| 1793 | |
| 1794 | //------------------------------------------------------------------------------ |
| 1795 | vtkUnsignedCharArray* vtkHyperTreeGrid::AllocateTreeGhostArray() |
no test coverage detected