| 607 | //------------------------------------------------------------------------------ |
| 608 | template <class Worker> |
| 609 | void vtkHyperTreeGridGradient::ProcessFields(Worker& worker) |
| 610 | { |
| 611 | // Retrieve global index of input cursor |
| 612 | vtkIdType nbCells = this->OutGradArray->GetNumberOfTuples(); |
| 613 | for (vtkIdType id = 0; id < nbCells; id++) |
| 614 | { |
| 615 | if (this->InGhostArray && this->InGhostArray->GetTuple1(id)) |
| 616 | { |
| 617 | continue; |
| 618 | } |
| 619 | if (this->InMask && this->InMask->GetTuple1(id)) |
| 620 | { |
| 621 | continue; |
| 622 | } |
| 623 | worker.ComputeRequestedArraysAt(id); |
| 624 | } |
| 625 | } |
| 626 | VTK_ABI_NAMESPACE_END |
no test coverage detected