VTK  9.0.1
vtkPAutoCorrelativeStatistics.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPAutoCorrelativeStatistics.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 =========================================================================*/
27 #ifndef vtkPAutoCorrelativeStatistics_h
28 #define vtkPAutoCorrelativeStatistics_h
29 
31 #include "vtkFiltersParallelStatisticsModule.h" // For export macro
32 
35 
36 class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPAutoCorrelativeStatistics
38 {
39 public:
42  void PrintSelf(ostream& os, vtkIndent indent) override;
43 
45 
49  virtual void SetController(vtkMultiProcessController*);
50  vtkGetObjectMacro(Controller, vtkMultiProcessController);
52 
56  void Learn(vtkTable* inData, vtkTable* inParameters, vtkMultiBlockDataSet* outMeta) override;
57 
62  void Test(vtkTable*, vtkMultiBlockDataSet*, vtkTable*) override;
63 
64 protected:
67 
69 
70 private:
72  void operator=(const vtkPAutoCorrelativeStatistics&) = delete;
73 };
74 
75 #endif
vtkAutoCorrelativeStatistics.h
vtkTable
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:62
vtkMultiBlockDataSet
Composite dataset that organizes datasets into blocks.
Definition: vtkMultiBlockDataSet.h:45
vtkMultiProcessController
Multiprocessing communication superclass.
Definition: vtkMultiProcessController.h:75
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkAutoCorrelativeStatistics::New
static vtkAutoCorrelativeStatistics * New()
vtkPAutoCorrelativeStatistics
A class for parallel auto-correlative statistics.
Definition: vtkPAutoCorrelativeStatistics.h:36
vtkAutoCorrelativeStatistics::Learn
void Learn(vtkTable *, vtkTable *, vtkMultiBlockDataSet *) override
Execute the calculations required by the Learn option, given some input Data NB: input parameters are...
vtkAutoCorrelativeStatistics::Test
void Test(vtkTable *, vtkMultiBlockDataSet *, vtkTable *) override
Execute the calculations required by the Test option.
Definition: vtkAutoCorrelativeStatistics.h:95
vtkAutoCorrelativeStatistics
A class for univariate auto-correlative statistics.
Definition: vtkAutoCorrelativeStatistics.h:52
vtkAutoCorrelativeStatistics::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkPAutoCorrelativeStatistics::Controller
vtkMultiProcessController * Controller
Definition: vtkPAutoCorrelativeStatistics.h:68