VTK
vtkCorrelativeStatistics.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3 Program: Visualization Toolkit
4 Module: vtkCorrelativeStatistics.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 =========================================================================*/
15 /*-------------------------------------------------------------------------
16  Copyright 2010 Sandia Corporation.
17  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18  the U.S. Government retains certain rights in this software.
19  -------------------------------------------------------------------------*/
48 #ifndef __vtkCorrelativeStatistics_h
49 #define __vtkCorrelativeStatistics_h
50 
52 
54 class vtkStringArray;
55 class vtkTable;
56 class vtkVariant;
57 
59 {
60 public:
62  void PrintSelf(ostream& os, vtkIndent indent);
63  static vtkCorrelativeStatistics* New();
64 
66 
67  virtual void Aggregate( vtkDataObjectCollection*,
70 
71 protected:
74 
76 
77  virtual void Learn( vtkTable* inData,
78  vtkTable* inParameters,
79  vtkMultiBlockDataSet* outMeta );
81 
83  virtual void Derive( vtkMultiBlockDataSet* );
84 
86 
87  virtual void Test( vtkTable*,
89  vtkTable* );
91 
92 //BTX
94 
95  virtual void SelectAssessFunctor( vtkTable* outData,
96  vtkDataObject* inMeta,
97  vtkStringArray* rowNames,
98  AssessFunctor*& dfunc );
99 //ETX
101 
102 private:
103  vtkCorrelativeStatistics(const vtkCorrelativeStatistics&); // Not implemented
104  void operator=(const vtkCorrelativeStatistics&); // Not implemented
105 };
106 
107 #endif
108