------------------------------------------------------------------------------
| 367 | |
| 368 | //------------------------------------------------------------------------------ |
| 369 | int vtkAlgorithm::GetNumberOfInputArraySpecifications() |
| 370 | { |
| 371 | vtkInformationVector* inArrayVec = this->Information->Get(INPUT_ARRAYS_TO_PROCESS()); |
| 372 | if (!inArrayVec) |
| 373 | { |
| 374 | return 0; |
| 375 | } |
| 376 | return inArrayVec->GetNumberOfInformationObjects(); |
| 377 | } |
| 378 | |
| 379 | //------------------------------------------------------------------------------ |
| 380 | bool vtkAlgorithm::ResetInputArraySpecifications() |