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

Method RequestDataAMR

Filters/ParallelStatistics/vtkGenerateStatistics.cxx:738–749  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

736}
737
738int vtkGenerateStatistics::RequestDataAMR(
739 vtkUniformGridAMR* amr, vtkPartitionedDataSetCollection* modelTree)
740{
741 // TODO: Eventually, we should handle the case for \a SingleModel set to false.
742 // But since there is not an obvious use case at the moment and since it
743 // greatly simplifies things, we just force a single model for AMR data.
744 bool prevSingleModel = this->SingleModel;
745 this->SingleModel = true;
746 this->RequestDataPDC(amr, modelTree);
747 this->SingleModel = prevSingleModel;
748 return 1;
749}
750
751int vtkGenerateStatistics::RequestDataPDC(
752 vtkPartitionedDataSetCollection* pdc, vtkPartitionedDataSetCollection* modelTree)

Callers 1

Calls 1

RequestDataPDCMethod · 0.95

Tested by

no test coverage detected