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