00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkUnivariateStatisticsAlgorithm.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 -------------------------------------------------------------------------*/ 00042 #ifndef __vtkUnivariateStatisticsAlgorithm_h 00043 #define __vtkUnivariateStatisticsAlgorithm_h 00044 00045 #include "vtkStatisticsAlgorithm.h" 00046 00047 class vtkMultiBlockDataSet; 00048 class vtkTable; 00049 00050 class VTK_INFOVIS_EXPORT vtkUnivariateStatisticsAlgorithm : public vtkStatisticsAlgorithm 00051 { 00052 public: 00053 vtkTypeMacro(vtkUnivariateStatisticsAlgorithm, vtkStatisticsAlgorithm); 00054 void PrintSelf(ostream& os, vtkIndent indent); 00055 00061 void AddColumn( const char* namCol ); 00062 00068 virtual int RequestSelectedColumns(); 00069 00070 protected: 00071 vtkUnivariateStatisticsAlgorithm(); 00072 ~vtkUnivariateStatisticsAlgorithm(); 00073 00075 00076 virtual void Assess( vtkTable* inData, 00077 vtkMultiBlockDataSet* inMeta, 00078 vtkTable* outData ); 00080 00081 private: 00082 vtkUnivariateStatisticsAlgorithm(const vtkUnivariateStatisticsAlgorithm&); // Not implemented 00083 void operator=(const vtkUnivariateStatisticsAlgorithm&); // Not implemented 00084 }; 00085 00086 #endif 00087