------------------------------------------------------------------------------
| 67 | |
| 68 | //------------------------------------------------------------------------------ |
| 69 | vtkTypeBool vtkDataObjectAlgorithm::ProcessRequest( |
| 70 | vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 71 | { |
| 72 | // generate the data |
| 73 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_DATA())) |
| 74 | { |
| 75 | return this->RequestData(request, inputVector, outputVector); |
| 76 | } |
| 77 | |
| 78 | if (request->Has(vtkStreamingDemandDrivenPipeline::REQUEST_UPDATE_EXTENT())) |
| 79 | { |
| 80 | return this->RequestUpdateExtent(request, inputVector, outputVector); |
| 81 | } |
| 82 | |
| 83 | if (request->Has(vtkStreamingDemandDrivenPipeline::REQUEST_UPDATE_TIME())) |
| 84 | { |
| 85 | return this->RequestUpdateTime(request, inputVector, outputVector); |
| 86 | } |
| 87 | |
| 88 | // Create data object output |
| 89 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_DATA_OBJECT())) |
| 90 | { |
| 91 | return this->RequestDataObject(request, inputVector, outputVector); |
| 92 | } |
| 93 | |
| 94 | // execute information |
| 95 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_INFORMATION())) |
| 96 | { |
| 97 | return this->RequestInformation(request, inputVector, outputVector); |
| 98 | } |
| 99 | |
| 100 | return this->Superclass::ProcessRequest(request, inputVector, outputVector); |
| 101 | } |
| 102 | |
| 103 | //------------------------------------------------------------------------------ |
| 104 | int vtkDataObjectAlgorithm::FillOutputPortInformation(int vtkNotUsed(port), vtkInformation* info) |
nothing calls this directly
no test coverage detected