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

Method RequestDataNonComposite

Filters/ParallelStatistics/vtkGenerateStatistics.cxx:724–736  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

722}
723
724int vtkGenerateStatistics::RequestDataNonComposite(
725 vtkDataObject* dataObject, vtkStatisticalModel* model)
726{
727 // We handle several cases: vtkDataSet, vtkCellGrid, vtkGraph, and vtkTable.
728 // However, these are all handled with two code paths: one for vtkCellGrid and
729 // one for the remaining (as each can just fetch vtkDataSetAttributes via
730 // vtkDataObject::GetAttributes()).
731 if (auto* cg = vtkCellGrid::SafeDownCast(dataObject))
732 {
733 return this->RequestDataCellGrid(cg, model);
734 }
735 return this->RequestDataPlain(dataObject, model);
736}
737
738int vtkGenerateStatistics::RequestDataAMR(
739 vtkUniformGridAMR* amr, vtkPartitionedDataSetCollection* modelTree)

Callers 3

RequestDataPDMethod · 0.95
VisitMethod · 0.80

Calls 2

RequestDataCellGridMethod · 0.95
RequestDataPlainMethod · 0.95

Tested by

no test coverage detected