VTK  9.3.1
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 
41  virtual void SetController(vtkMultiProcessController*);
42  vtkGetObjectMacro(Controller, vtkMultiProcessController);
44 
48  void Learn(vtkTable* inData, vtkTable* inParameters, vtkMultiBlockDataSet* outMeta) override;
49 
54  void Test(vtkTable*, vtkMultiBlockDataSet*, vtkTable*) override;
55 
56 protected:
59 
61 
62 private:
64  void operator=(const vtkPAutoCorrelativeStatistics&) = delete;
65 };
66 
67 VTK_ABI_NAMESPACE_END
68 #endif
static vtkAutoCorrelativeStatistics * New()
vtkMultiProcessController * Controller
void Learn(vtkTable *, vtkTable *, vtkMultiBlockDataSet *) override
Execute the calculations required by the Learn option, given some input Data NB: input parameters are...
void Test(vtkTable *, vtkMultiBlockDataSet *, vtkTable *) override
Execute the calculations required by the Test option.
A class for parallel auto-correlative statistics.
a simple class to control print indentation
Definition: vtkIndent.h:28
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
A class for univariate auto-correlative statistics.
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:58
Composite dataset that organizes datasets into blocks.
Multiprocessing communication superclass.