------------------------------------------------------------------------------
| 786 | |
| 787 | //------------------------------------------------------------------------------ |
| 788 | void vtkExtractDataArraysOverTime::PostExecute( |
| 789 | vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector) |
| 790 | { |
| 791 | // Tell the pipeline to stop looping. |
| 792 | request->Remove(vtkStreamingDemandDrivenPipeline::CONTINUE_EXECUTING()); |
| 793 | this->CurrentTimeIndex = 0; |
| 794 | this->Internal->CollectTimesteps( |
| 795 | vtkDataObject::GetData(inputVector[0], 0), vtkMultiBlockDataSet::GetData(outputVector, 0)); |
| 796 | } |
| 797 | |
| 798 | //------------------------------------------------------------------------------ |
| 799 | vtkSmartPointer<vtkDescriptiveStatistics> vtkExtractDataArraysOverTime::NewDescriptiveStatistics() |
no test coverage detected