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

Method GetInputInformation

Common/ExecutionModel/vtkAlgorithm.cxx:1568–1578  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1566
1567//------------------------------------------------------------------------------
1568vtkInformation* vtkAlgorithm::GetInputInformation(int port, int index)
1569{
1570 if (index < 0 || index >= this->GetNumberOfInputConnections(port))
1571 {
1572 vtkErrorMacro("Attempt to get connection index "
1573 << index << " for input port " << port << ", which has "
1574 << this->GetNumberOfInputConnections(port) << " connections.");
1575 return nullptr;
1576 }
1577 return this->GetExecutive()->GetInputInformation(port, index);
1578}
1579
1580//------------------------------------------------------------------------------
1581vtkAlgorithm* vtkAlgorithm::GetInputAlgorithm(int port, int index)

Callers 15

SetInputConnectionMethod · 0.45
AddInputConnectionMethod · 0.45
RemoveInputConnectionMethod · 0.45
SetNthInputConnectionMethod · 0.45
GetInputExecutiveMethod · 0.45
GetInputConnectionMethod · 0.45
GetInputInformationFunction · 0.45
ComputePipelineMTimeMethod · 0.45
UpdatePipelineMTimeMethod · 0.45
UpdateDataObjectMethod · 0.45

Calls 2

GetExecutiveMethod · 0.95

Tested by

no test coverage detected