------------------------------------------------------------------------------
| 152 | |
| 153 | //------------------------------------------------------------------------------ |
| 154 | vtkTypeBool vtkHyperTreeGridAlgorithm::ProcessRequest( |
| 155 | vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 156 | { |
| 157 | if (this->AppropriateOutput) |
| 158 | { |
| 159 | // create the output |
| 160 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_DATA_OBJECT())) |
| 161 | { |
| 162 | return this->RequestDataObject(request, inputVector, outputVector); |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | // generate the data |
| 167 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_DATA())) |
| 168 | { |
| 169 | return this->RequestData(request, inputVector, outputVector); |
| 170 | } |
| 171 | |
| 172 | if (request->Has(vtkStreamingDemandDrivenPipeline::REQUEST_UPDATE_EXTENT())) |
| 173 | { |
| 174 | return this->RequestUpdateExtent(request, inputVector, outputVector); |
| 175 | } |
| 176 | |
| 177 | if (request->Has(vtkStreamingDemandDrivenPipeline::REQUEST_UPDATE_TIME())) |
| 178 | { |
| 179 | return this->RequestUpdateTime(request, inputVector, outputVector); |
| 180 | } |
| 181 | |
| 182 | // execute information |
| 183 | if (request->Has(vtkDemandDrivenPipeline::REQUEST_INFORMATION())) |
| 184 | { |
| 185 | return this->RequestInformation(request, inputVector, outputVector); |
| 186 | } |
| 187 | |
| 188 | return this->Superclass::ProcessRequest(request, inputVector, outputVector); |
| 189 | } |
| 190 | |
| 191 | //------------------------------------------------------------------------------ |
| 192 | int vtkHyperTreeGridAlgorithm::FillInputPortInformation(int, vtkInformation* info) |
nothing calls this directly
no test coverage detected