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

Method PostExecute

Filters/Parallel/vtkPExtractDataArraysOverTime.cxx:93–105  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

91
92//------------------------------------------------------------------------------
93void vtkPExtractDataArraysOverTime::PostExecute(
94 vtkInformation* request, vtkInformationVector** inputVector, vtkInformationVector* outputVector)
95{
96 this->Superclass::PostExecute(request, inputVector, outputVector);
97 if (!this->Controller || this->Controller->GetNumberOfProcesses() < 2)
98 {
99 return;
100 }
101
102 vtkMultiBlockDataSet* output = vtkMultiBlockDataSet::GetData(outputVector, 0);
103 assert(output);
104 this->ReorganizeData(output);
105}
106
107//------------------------------------------------------------------------------
108void vtkPExtractDataArraysOverTime::ReorganizeData(vtkMultiBlockDataSet* dataset)

Callers

nothing calls this directly

Calls 4

ReorganizeDataMethod · 0.95
GetNumberOfProcessesMethod · 0.80
GetDataFunction · 0.50
assertFunction · 0.50

Tested by

no test coverage detected