VTK  9.3.1
vtkPMultiCorrelativeStatistics.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
20 #ifndef vtkPMultiCorrelativeStatistics_h
21 #define vtkPMultiCorrelativeStatistics_h
22 
23 #include "vtkFiltersParallelStatisticsModule.h" // For export macro
25 
26 VTK_ABI_NAMESPACE_BEGIN
28 
29 class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPMultiCorrelativeStatistics
31 {
32 public:
35  void PrintSelf(ostream& os, vtkIndent indent) override;
36 
38 
42  virtual void SetController(vtkMultiProcessController*);
43  vtkGetObjectMacro(Controller, vtkMultiProcessController);
45 
49  static void GatherStatistics(vtkMultiProcessController* curController, vtkTable* sparseCov);
50 
51 protected:
54 
56 
57  // Execute the parallel calculations required by the Learn option.
58  void Learn(vtkTable* inData, vtkTable* inParameters, vtkMultiBlockDataSet* outMeta) override;
59 
61 
62 private:
64  void operator=(const vtkPMultiCorrelativeStatistics&) = delete;
65 };
66 
67 VTK_ABI_NAMESPACE_END
68 #endif
A class for parallel bivariate correlative statistics.
virtual vtkOrderStatistics * CreateOrderStatisticsInstance()
Return a new vtkOrderStatistics instance.
A class for univariate order statistics.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
A class for multivariate linear correlation.
a simple class to control print indentation
Definition: vtkIndent.h:28
static vtkMultiCorrelativeStatistics * New()
void Learn(vtkTable *, vtkTable *, vtkMultiBlockDataSet *) override
Execute the calculations required by the Learn option.
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:58
Composite dataset that organizes datasets into blocks.
Multiprocessing communication superclass.