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

Function Execute

Common/ExecutionModel/vtkMultiTimeStepAlgorithm.h:85–90  ·  view source on GitHub ↗

* Subclasses should override this method to do the actual execution. * For backwards compatibility, the default implementation returns -1. If -1 * is returned, its assumed that this method is not overridden and the * `RequestData` must be called, if possible. However, `RequestData` is only * supported if input type is not vtkPartitionedDataSetCollection or * vtkPartitionedDataSet.

Source from the content-addressed store, hash-verified

83 * vtkPartitionedDataSet.
84 */
85 virtual int Execute(vtkInformation* vtkNotUsed(request),
86 const std::vector<vtkSmartPointer<vtkDataObject>>& vtkNotUsed(inputs),
87 vtkInformationVector* vtkNotUsed(outputVector))
88 {
89 return -1;
90 }
91
92 /**
93 * This is called by the superclass.

Callers 2

BuildTreeSpheresMethod · 0.70
BuildTreeMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected