VTK
vtkPPCAStatistics.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPPCAStatistics.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 =========================================================================*/
30 #ifndef __vtkPPCAStatistics_h
31 #define __vtkPPCAStatistics_h
32 
33 #include "vtkPCAStatistics.h"
34 
36 
38 {
39 public:
41  void PrintSelf(ostream& os, vtkIndent indent);
42  static vtkPPCAStatistics* New();
43 
45 
47  virtual void SetController(vtkMultiProcessController*);
48  vtkGetObjectMacro(Controller, vtkMultiProcessController);
50 
51 
52 protected:
55 
57 
58  // Execute the parallel calculations required by the Learn option.
59  virtual void Learn( vtkTable* inData,
60  vtkTable* inParameters,
61  vtkMultiBlockDataSet* outMeta );
62 private:
63  vtkPPCAStatistics(const vtkPPCAStatistics&); // Not implemented.
64  void operator=(const vtkPPCAStatistics&); // Not implemented.
65 };
66 
67 #endif
68