VTK  9.6.20251227
vtkPDescriptiveStatistics.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-FileCopyrightText: Copyright 2011 Sandia Corporation
3// SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov
25
26#ifndef vtkPDescriptiveStatistics_h
27#define vtkPDescriptiveStatistics_h
28
30#include "vtkFiltersParallelStatisticsModule.h" // For export macro
31
32VTK_ABI_NAMESPACE_BEGIN
35
36class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPDescriptiveStatistics
38{
39public:
42 void PrintSelf(ostream& os, vtkIndent indent) override;
43
45
52
56 void Learn(vtkTable* inData, vtkTable* inParameters, vtkStatisticalModel* outMeta) override;
57
58protected:
61
63
64private:
66 void operator=(const vtkPDescriptiveStatistics&) = delete;
67};
68
69VTK_ABI_NAMESPACE_END
70#endif
a simple class to control print indentation
Definition vtkIndent.h:108
Multiprocessing communication superclass.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual void SetController(vtkMultiProcessController *)
Get/Set the multiprocess controller.
void Learn(vtkTable *inData, vtkTable *inParameters, vtkStatisticalModel *outMeta) override
Execute the parallel calculations required by the Learn option.
~vtkPDescriptiveStatistics() override
static vtkPDescriptiveStatistics * New()
vtkMultiProcessController * Controller
a base class for statistical modeling of other data
A table, which contains similar-typed columns of data.
Definition vtkTable.h:169