------------------------------------------------------------------------------
| 60 | |
| 61 | //------------------------------------------------------------------------------ |
| 62 | vtkTypeBool vtkCompositeDataSetAlgorithm::ProcessRequest( |
| 63 | vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 64 | { |
| 65 | // create the output |
| 66 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_DATA_OBJECT())) |
| 67 | { |
| 68 | return this->RequestDataObject(request, inputVector, outputVector); |
| 69 | } |
| 70 | |
| 71 | // generate the data |
| 72 | if (request->Has(vtkCompositeDataPipeline::REQUEST_DATA())) |
| 73 | { |
| 74 | int retVal = this->RequestData(request, inputVector, outputVector); |
| 75 | return retVal; |
| 76 | } |
| 77 | |
| 78 | // execute information |
| 79 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_INFORMATION())) |
| 80 | { |
| 81 | return this->RequestInformation(request, inputVector, outputVector); |
| 82 | } |
| 83 | |
| 84 | // set update extent |
| 85 | if (request->Has(vtkCompositeDataPipeline::REQUEST_UPDATE_EXTENT())) |
| 86 | { |
| 87 | return this->RequestUpdateExtent(request, inputVector, outputVector); |
| 88 | } |
| 89 | |
| 90 | if (request->Has(vtkCompositeDataPipeline::REQUEST_UPDATE_TIME())) |
| 91 | { |
| 92 | return this->RequestUpdateTime(request, inputVector, outputVector); |
| 93 | } |
| 94 | |
| 95 | return this->Superclass::ProcessRequest(request, inputVector, outputVector); |
| 96 | } |
| 97 | |
| 98 | //------------------------------------------------------------------------------ |
| 99 | int vtkCompositeDataSetAlgorithm::FillOutputPortInformation( |
nothing calls this directly
no test coverage detected