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 =========================================================================*/
29 #ifndef vtkPAutoCorrelativeStatistics_h
30 #define vtkPAutoCorrelativeStatistics_h
31 
32 #include "vtkFiltersParallelStatisticsModule.h" // For export macro
34 
37 
38 class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPAutoCorrelativeStatistics : public vtkAutoCorrelativeStatistics
39 {
40 public:
43  void PrintSelf(ostream& os, vtkIndent indent);
44 
46 
48  virtual void SetController(vtkMultiProcessController*);
49  vtkGetObjectMacro(Controller, vtkMultiProcessController);
51 
53 
54  virtual void Learn( vtkTable* inData,
55  vtkTable* inParameters,
56  vtkMultiBlockDataSet* outMeta );
58 
60 
62  virtual void Test( vtkTable*,
64  vtkTable* );
66 
67 protected:
70 
72 private:
74  void operator=(const vtkPAutoCorrelativeStatistics&); // Not implemented.
75 };
76 
77 #endif
static vtkAutoCorrelativeStatistics * New()
vtkMultiProcessController * Controller
A class for parallel auto-correlative statistics.
a simple class to control print indentation
Definition: vtkIndent.h:38
virtual void Learn(vtkTable *, vtkTable *, vtkMultiBlockDataSet *)
void PrintSelf(ostream &os, vtkIndent indent)
A class for univariate auto-correlative statistics.
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:67
Composite dataset that organizes datasets into blocks.
virtual void Test(vtkTable *, vtkMultiBlockDataSet *, vtkTable *)
Multiprocessing communication superclass.