VTK
dox/Infovis/vtkBivariateStatisticsAlgorithm.h
Go to the documentation of this file.
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 2010 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 vtkMultiBlockDataSet;
00049 class vtkTable;
00050 
00051 class VTK_INFOVIS_EXPORT vtkBivariateStatisticsAlgorithm : public vtkStatisticsAlgorithm
00052 {
00053 public:
00054   vtkTypeMacro(vtkBivariateStatisticsAlgorithm, vtkStatisticsAlgorithm);
00055   void PrintSelf(ostream& os, vtkIndent indent);
00056 
00064   void AddColumnPair( const char* namColX, const char* namColY );
00065 
00071   virtual int RequestSelectedColumns();
00072 
00073 protected:
00074   vtkBivariateStatisticsAlgorithm();
00075   ~vtkBivariateStatisticsAlgorithm();
00076 
00078 
00079   virtual void Assess( vtkTable* inData,
00080                        vtkMultiBlockDataSet* inMeta,
00081                        vtkTable* outData ); 
00083 
00084 private:
00085   vtkBivariateStatisticsAlgorithm(const vtkBivariateStatisticsAlgorithm&); // Not implemented
00086   void operator=(const vtkBivariateStatisticsAlgorithm&);   // Not implemented
00087 };
00088 
00089 #endif
00090