VTK  9.2.6
vtkPCorrelativeStatistics.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPCorrelativeStatistics.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
15 /*-------------------------------------------------------------------------
16  Copyright 2011 Sandia Corporation.
17  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18  the U.S. Government retains certain rights in this software.
19  -------------------------------------------------------------------------*/
35 #ifndef vtkPCorrelativeStatistics_h
36 #define vtkPCorrelativeStatistics_h
37 
39 #include "vtkFiltersParallelStatisticsModule.h" // For export macro
40 
43 
44 class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPCorrelativeStatistics
46 {
47 public:
50  void PrintSelf(ostream& os, vtkIndent indent) override;
51 
53 
57  virtual void SetController(vtkMultiProcessController*);
58  vtkGetObjectMacro(Controller, vtkMultiProcessController);
60 
64  void Learn(vtkTable* inData, vtkTable* inParameters, vtkMultiBlockDataSet* outMeta) override;
65 
70  void Test(vtkTable*, vtkMultiBlockDataSet*, vtkTable*) override;
71 
72 protected:
74  ~vtkPCorrelativeStatistics() override;
75 
77 
78 private:
80  void operator=(const vtkPCorrelativeStatistics&) = delete;
81 };
82 
83 #endif
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkMultiProcessController * Controller
void Learn(vtkTable *, vtkTable *, vtkMultiBlockDataSet *) override
Execute the calculations required by the Learn option.
void Test(vtkTable *, vtkMultiBlockDataSet *, vtkTable *) override
Execute the calculations required by the Test option.
a simple class to control print indentation
Definition: vtkIndent.h:39
A class for parallel bivariate correlative statistics.
static vtkCorrelativeStatistics * New()
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:73
Composite dataset that organizes datasets into blocks.
A class for bivariate linear correlation.
Multiprocessing communication superclass.