VTK
vtkUnivariateStatisticsAlgorithm.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3 Program: Visualization Toolkit
4 Module: vtkUnivariateStatisticsAlgorithm.h
5 
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
15 /*-------------------------------------------------------------------------
16  Copyright 2010 Sandia Corporation.
17  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18  the U.S. Government retains certain rights in this software.
19  -------------------------------------------------------------------------*/
42 #ifndef __vtkUnivariateStatisticsAlgorithm_h
43 #define __vtkUnivariateStatisticsAlgorithm_h
44 
45 #include "vtkStatisticsAlgorithm.h"
46 
48 class vtkTable;
49 
51 {
52 public:
54  void PrintSelf(ostream& os, vtkIndent indent);
55 
61  void AddColumn( const char* namCol );
62 
68  virtual int RequestSelectedColumns();
69 
70 protected:
73 
75 
76  virtual void Assess( vtkTable* inData,
77  vtkMultiBlockDataSet* inMeta,
78  vtkTable* outData );
80 
81 private:
83  void operator=(const vtkUnivariateStatisticsAlgorithm&); // Not implemented
84 };
85 
86 #endif
87