MCPcopy Create free account
hub / github.com/Kitware/VTK / ProcessRequest

Method ProcessRequest

IO/IOSS/vtkIOSSWriter.cxx:208–226  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

206
207//------------------------------------------------------------------------------
208vtkTypeBool vtkIOSSWriter::ProcessRequest(
209 vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector)
210{
211 if (request->Has(vtkDemandDrivenPipeline::REQUEST_INFORMATION()))
212 {
213 return this->RequestInformation(request, inputVector, outputVector);
214 }
215 else if (request->Has(vtkStreamingDemandDrivenPipeline::REQUEST_UPDATE_EXTENT()))
216 {
217 return this->RequestUpdateExtent(request, inputVector, outputVector);
218 }
219 // generate the data
220 else if (request->Has(vtkDemandDrivenPipeline::REQUEST_DATA()))
221 {
222 return this->RequestData(request, inputVector, outputVector);
223 }
224
225 return this->Superclass::ProcessRequest(request, inputVector, outputVector);
226}
227
228//----------------------------------------------------------------------------
229int vtkIOSSWriter::RequestInformation(vtkInformation* vtkNotUsed(request),

Callers

nothing calls this directly

Calls 4

RequestInformationMethod · 0.95
RequestUpdateExtentMethod · 0.95
RequestDataMethod · 0.95
HasMethod · 0.45

Tested by

no test coverage detected