VTK
dox/Infovis/vtkUnivariateStatisticsAlgorithm.h
Go to the documentation of this file.
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 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 vtkTable;
00048 
00049 class VTK_INFOVIS_EXPORT vtkUnivariateStatisticsAlgorithm : public vtkStatisticsAlgorithm
00050 {
00051 public:
00052   vtkTypeMacro(vtkUnivariateStatisticsAlgorithm, vtkStatisticsAlgorithm);
00053   void PrintSelf(ostream& os, vtkIndent indent);
00054 
00060   void AddColumn( const char* namCol );
00061 
00067   virtual int RequestSelectedColumns();
00068 
00069 protected:
00070   vtkUnivariateStatisticsAlgorithm();
00071   ~vtkUnivariateStatisticsAlgorithm();
00072 
00074 
00075   virtual void Assess( vtkTable* inData,
00076                        vtkDataObject* inMeta,
00077                        vtkTable* outData ); 
00079 
00080 private:
00081   vtkUnivariateStatisticsAlgorithm(const vtkUnivariateStatisticsAlgorithm&); // Not implemented
00082   void operator=(const vtkUnivariateStatisticsAlgorithm&);   // Not implemented
00083 };
00084 
00085 #endif
00086