VTK  9.3.20240419
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 
24 VTK_ABI_NAMESPACE_BEGIN
27 
28 class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPAutoCorrelativeStatistics
30 {
31 public:
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 
56 protected:
59 
61 
62 private:
64  void operator=(const vtkPAutoCorrelativeStatistics&) = delete;
65 };
66 
67 VTK_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.
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.
vtkMultiProcessController * Controller
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.
static vtkPAutoCorrelativeStatistics * New()
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:168