VTK  9.3.20240328
vtkPPCAStatistics.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 vtkPPCAStatistics_h
21 #define vtkPPCAStatistics_h
22 
23 #include "vtkFiltersParallelStatisticsModule.h" // For export macro
24 #include "vtkPCAStatistics.h"
25 
26 VTK_ABI_NAMESPACE_BEGIN
28 
29 class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPPCAStatistics : public vtkPCAStatistics
30 {
31 public:
33  void PrintSelf(ostream& os, vtkIndent indent) override;
35 
37 
42  vtkGetObjectMacro(Controller, vtkMultiProcessController);
44 
45 protected:
47  ~vtkPPCAStatistics() override;
48 
50 
51  // Execute the parallel calculations required by the Learn option.
52  void Learn(vtkTable* inData, vtkTable* inParameters, vtkMultiBlockDataSet* outMeta) override;
53 
59 
61 
62 private:
63  vtkPPCAStatistics(const vtkPPCAStatistics&) = delete;
64  void operator=(const vtkPPCAStatistics&) = delete;
65 };
66 
67 VTK_ABI_NAMESPACE_END
68 #endif
a simple class to control print indentation
Definition: vtkIndent.h:108
Composite dataset that organizes datasets into blocks.
Multiprocessing communication superclass.
A class for univariate order statistics.
A class for multivariate principal component analysis.
A class for parallel principal component analysis.
vtkMultiProcessController * Controller
~vtkPPCAStatistics() override
static vtkPPCAStatistics * New()
void Test(vtkTable *, vtkMultiBlockDataSet *, vtkTable *) override
Execute the calculations required by the Test option.
vtkOrderStatistics * CreateOrderStatisticsInstance() override
Return a new vtkOrderStatistics instance.
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 calculations required by the Learn option, given some input Data.
virtual void SetController(vtkMultiProcessController *)
Get/Set the multiprocess controller.
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:168