VTK
vtkBivariateStatisticsAlgorithm.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3 Program: Visualization Toolkit
4 Module: vtkBivariateStatisticsAlgorithm.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  -------------------------------------------------------------------------*/
43 #ifndef __vtkBivariateStatisticsAlgorithm_h
44 #define __vtkBivariateStatisticsAlgorithm_h
45 
46 #include "vtkStatisticsAlgorithm.h"
47 
49 class vtkTable;
50 
52 {
53 public:
55  void PrintSelf(ostream& os, vtkIndent indent);
56 
64  void AddColumnPair( const char* namColX, const char* namColY );
65 
71  virtual int RequestSelectedColumns();
72 
73 protected:
76 
78 
79  virtual void Assess( vtkTable* inData,
80  vtkMultiBlockDataSet* inMeta,
81  vtkTable* outData );
83 
84 private:
86  void operator=(const vtkBivariateStatisticsAlgorithm&); // Not implemented
87 };
88 
89 #endif
90