VTK
vtkMultiCorrelativeStatistics.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3 Program: Visualization Toolkit
4 Module: vtkMultiCorrelativeStatistics.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  -------------------------------------------------------------------------*/
78 #ifndef vtkMultiCorrelativeStatistics_h
79 #define vtkMultiCorrelativeStatistics_h
80 
81 #include "vtkFiltersStatisticsModule.h" // For export macro
82 #include "vtkStatisticsAlgorithm.h"
83 
84 class vtkDoubleArray;
86 class vtkOrderStatistics;
87 class vtkVariant;
88 
89 class VTKFILTERSSTATISTICS_EXPORT vtkMultiCorrelativeStatistics : public vtkStatisticsAlgorithm
90 {
91 public:
93  void PrintSelf( ostream& os, vtkIndent indent ) VTK_OVERRIDE;
95 
100  vtkMultiBlockDataSet* ) VTK_OVERRIDE;
101 
103 
108  vtkSetMacro( MedianAbsoluteDeviation, bool );
109  vtkGetMacro( MedianAbsoluteDeviation, bool );
110  vtkBooleanMacro( MedianAbsoluteDeviation, bool );
112 
113 protected:
115  ~vtkMultiCorrelativeStatistics() VTK_OVERRIDE;
116 
120  void Learn( vtkTable*,
121  vtkTable*,
122  vtkMultiBlockDataSet* ) VTK_OVERRIDE;
123 
127  void Derive( vtkMultiBlockDataSet* ) VTK_OVERRIDE;
128 
132  void Assess( vtkTable*,
134  vtkTable* ) VTK_OVERRIDE;
135 
139  void Test( vtkTable*,
141  vtkTable* ) VTK_OVERRIDE { return; }
142 
146  void SelectAssessFunctor( vtkTable* inData,
147  vtkDataObject* inMeta,
148  vtkStringArray* rowNames,
149  AssessFunctor*& dfunc ) VTK_OVERRIDE;
150 
154  virtual void ComputeMedian( vtkTable* inData, vtkTable* outData );
155 
160  virtual vtkOrderStatistics* CreateOrderStatisticsInstance();
161 
163 
164 private:
165  vtkMultiCorrelativeStatistics( const vtkMultiCorrelativeStatistics& ) VTK_DELETE_FUNCTION;
166  void operator = ( const vtkMultiCorrelativeStatistics& ) VTK_DELETE_FUNCTION;
167 };
168 
169 #endif
170 
171 
static vtkTableAlgorithm * New()
A class for univariate order statistics.
maintain an unordered list of data objects
Tests instantiations of the vtkNew class template.
a vtkAbstractArray subclass for strings
A atomic type representing the union of many types.
Definition: vtkVariant.h:69
dynamic, self-adjusting array of double
Base class for statistics algorithms.
A class for multivariate linear correlation.
a simple class to control print indentation
Definition: vtkIndent.h:33
virtual void Aggregate(vtkDataObjectCollection *, vtkMultiBlockDataSet *)=0
Given a collection of models, calculate aggregate model.
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:62
Composite dataset that organizes datasets into blocks.
virtual void SelectAssessFunctor(vtkTable *outData, vtkDataObject *inMeta, vtkStringArray *rowNames, AssessFunctor *&dfunc)=0
A pure virtual method to select the appropriate assessment functor.
vtkBooleanMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
general representation of visualization data
Definition: vtkDataObject.h:58
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.