VTK
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 
30 #include "vtkFiltersParallelStatisticsModule.h" // For export macro
32 
35 
36 class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPAutoCorrelativeStatistics : public vtkAutoCorrelativeStatistics
37 {
38 public:
41  void PrintSelf(ostream& os, vtkIndent indent) override;
42 
44 
48  virtual void SetController(vtkMultiProcessController*);
49  vtkGetObjectMacro(Controller, vtkMultiProcessController);
51 
55  void Learn( vtkTable* inData,
56  vtkTable* inParameters,
57  vtkMultiBlockDataSet* outMeta ) override;
58 
63  void Test( vtkTable*,
65  vtkTable* ) override;
66 
67 protected:
70 
72 private:
74  void operator=(const vtkPAutoCorrelativeStatistics&) = delete;
75 };
76 
77 #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:33
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:62
Composite dataset that organizes datasets into blocks.
Multiprocessing communication superclass.