00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkUnivariateStatisticsAlgorithm.h,v $ 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 -------------------------------------------------------------------------*/ 00042 #ifndef __vtkUnivariateStatisticsAlgorithm_h 00043 #define __vtkUnivariateStatisticsAlgorithm_h 00044 00045 #include "vtkStatisticsAlgorithm.h" 00046 00047 class vtkUnivariateStatisticsAlgorithmPrivate; 00048 class vtkTable; 00049 00050 class VTK_INFOVIS_EXPORT vtkUnivariateStatisticsAlgorithm : public vtkStatisticsAlgorithm 00051 { 00052 public: 00053 vtkTypeRevisionMacro(vtkUnivariateStatisticsAlgorithm, vtkStatisticsAlgorithm); 00054 void PrintSelf(ostream& os, vtkIndent indent); 00055 00057 void ResetColumns(); 00058 00062 void AddColumn( const char* namCol ); 00063 00066 void RemoveColumn( const char* namCol ); 00067 00069 void SetColumnStatus( const char* namCol, int status ); 00070 00072 00073 virtual void ExecuteAssess( vtkTable* inData, 00074 vtkDataObject* inMeta, 00075 vtkTable* outData, 00076 vtkDataObject* outMeta ); 00078 00079 protected: 00080 vtkUnivariateStatisticsAlgorithm(); 00081 ~vtkUnivariateStatisticsAlgorithm(); 00082 00083 vtkUnivariateStatisticsAlgorithmPrivate* Internals; 00084 00085 private: 00086 vtkUnivariateStatisticsAlgorithm(const vtkUnivariateStatisticsAlgorithm&); // Not implemented 00087 void operator=(const vtkUnivariateStatisticsAlgorithm&); // Not implemented 00088 }; 00089 00090 #endif 00091