00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkBivariateStatisticsAlgorithm.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00015 /*------------------------------------------------------------------------- 00016 Copyright 2008 Sandia Corporation. 00017 Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, 00018 the U.S. Government retains certain rights in this software. 00019 -------------------------------------------------------------------------*/ 00043 #ifndef __vtkBivariateStatisticsAlgorithm_h 00044 #define __vtkBivariateStatisticsAlgorithm_h 00045 00046 #include "vtkStatisticsAlgorithm.h" 00047 00048 class vtkTable; 00049 00050 class VTK_INFOVIS_EXPORT vtkBivariateStatisticsAlgorithm : public vtkStatisticsAlgorithm 00051 { 00052 public: 00053 vtkTypeMacro(vtkBivariateStatisticsAlgorithm, vtkStatisticsAlgorithm); 00054 void PrintSelf(ostream& os, vtkIndent indent); 00055 00063 void AddColumnPair( const char* namColX, const char* namColY ); 00064 00070 virtual int RequestSelectedColumns(); 00071 00072 protected: 00073 vtkBivariateStatisticsAlgorithm(); 00074 ~vtkBivariateStatisticsAlgorithm(); 00075 00077 00078 virtual void Assess( vtkTable* inData, 00079 vtkDataObject* inMeta, 00080 vtkTable* outData ); 00082 00083 private: 00084 vtkBivariateStatisticsAlgorithm(const vtkBivariateStatisticsAlgorithm&); // Not implemented 00085 void operator=(const vtkBivariateStatisticsAlgorithm&); // Not implemented 00086 }; 00087 00088 #endif 00089