------------------------------------------------------------------------------
| 37 | |
| 38 | //------------------------------------------------------------------------------ |
| 39 | vtkTypeBool vtkHyperTreeGridCellCenters::ProcessRequest( |
| 40 | vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 41 | { |
| 42 | // generate the data |
| 43 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_DATA())) |
| 44 | { |
| 45 | |
| 46 | return this->RequestData(request, inputVector, outputVector); |
| 47 | } |
| 48 | |
| 49 | if (request->Has(vtkStreamingDemandDrivenPipeline::REQUEST_UPDATE_EXTENT())) |
| 50 | { |
| 51 | return this->RequestUpdateExtent(request, inputVector, outputVector); |
| 52 | } |
| 53 | |
| 54 | // execute information |
| 55 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_INFORMATION())) |
| 56 | { |
| 57 | return this->RequestInformation(request, inputVector, outputVector); |
| 58 | } |
| 59 | |
| 60 | return this->Superclass::ProcessRequest(request, inputVector, outputVector); |
| 61 | } |
| 62 | |
| 63 | //------------------------------------------------------------------------------ |
| 64 | int vtkHyperTreeGridCellCenters::FillInputPortInformation( |
nothing calls this directly
no test coverage detected