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

Method ProcessRequest

Filters/HyperTree/vtkHyperTreeGridCellCenters.cxx:39–61  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

37
38//------------------------------------------------------------------------------
39vtkTypeBool vtkHyperTreeGridCellCenters::ProcessRequest(
40 vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector)
41{
42 // generate the data
43 if (request->Has(vtkDemandDrivenPipeline::REQUEST_DATA()))
44 {
45
46 return this->RequestData(request, inputVector, outputVector);
47 }
48
49 if (request->Has(vtkStreamingDemandDrivenPipeline::REQUEST_UPDATE_EXTENT()))
50 {
51 return this->RequestUpdateExtent(request, inputVector, outputVector);
52 }
53
54 // execute information
55 if (request->Has(vtkDemandDrivenPipeline::REQUEST_INFORMATION()))
56 {
57 return this->RequestInformation(request, inputVector, outputVector);
58 }
59
60 return this->Superclass::ProcessRequest(request, inputVector, outputVector);
61}
62
63//------------------------------------------------------------------------------
64int vtkHyperTreeGridCellCenters::FillInputPortInformation(

Callers

nothing calls this directly

Calls 4

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

Tested by

no test coverage detected