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