VTK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 
35 class vtkMultiBlockDataSet;
36 class vtkMultiProcessController;
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*,
63  vtkMultiBlockDataSet*,
64  vtkTable* );
66 
67 protected:
70 
71  vtkMultiProcessController* Controller;
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.
virtual void Learn(vtkTable *, vtkTable *, vtkMultiBlockDataSet *)
void PrintSelf(ostream &os, vtkIndent indent)
A class for univariate auto-correlative statistics.
virtual void Test(vtkTable *, vtkMultiBlockDataSet *, vtkTable *)