VTK  9.4.20250130
vtkPAutoCorrelativeStatistics.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
18#ifndef vtkPAutoCorrelativeStatistics_h
19#define vtkPAutoCorrelativeStatistics_h
20
22#include "vtkFiltersParallelStatisticsModule.h" // For export macro
23
24VTK_ABI_NAMESPACE_BEGIN
27
28class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPAutoCorrelativeStatistics
30{
31public:
34 void PrintSelf(ostream& os, vtkIndent indent) override;
35
37
42 vtkGetObjectMacro(Controller, vtkMultiProcessController);
44
48 void Learn(vtkTable* inData, vtkTable* inParameters, vtkMultiBlockDataSet* outMeta) override;
49
55
56protected:
59
61
62private:
64 void operator=(const vtkPAutoCorrelativeStatistics&) = delete;
65};
66
67VTK_ABI_NAMESPACE_END
68#endif
A class for univariate auto-correlative statistics.
a simple class to control print indentation
Definition vtkIndent.h:108
Composite dataset that organizes datasets into blocks.
Multiprocessing communication superclass.
A class for parallel auto-correlative statistics.
static vtkPAutoCorrelativeStatistics * New()
virtual void SetController(vtkMultiProcessController *)
Get/Set the multiprocess controller.
~vtkPAutoCorrelativeStatistics() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void Learn(vtkTable *inData, vtkTable *inParameters, vtkMultiBlockDataSet *outMeta) override
Execute the parallel calculations required by the Learn option.
void Test(vtkTable *, vtkMultiBlockDataSet *, vtkTable *) override
Execute the calculations required by the Test option.
A table, which contains similar-typed columns of data.
Definition vtkTable.h:169