VTK
vtkPCorrelativeStatistics.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPCorrelativeStatistics.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 2011 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  -------------------------------------------------------------------------*/
35 #ifndef vtkPCorrelativeStatistics_h
36 #define vtkPCorrelativeStatistics_h
37 
38 #include "vtkFiltersParallelStatisticsModule.h" // For export macro
40 
43 
44 class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPCorrelativeStatistics : public vtkCorrelativeStatistics
45 {
46 public:
49  void PrintSelf(ostream& os, vtkIndent indent);
50 
52 
57  vtkGetObjectMacro(Controller, vtkMultiProcessController);
59 
63  virtual void Learn( vtkTable* inData,
64  vtkTable* inParameters,
65  vtkMultiBlockDataSet* outMeta );
66 
71  virtual void Test( vtkTable*,
73  vtkTable* );
74 
75 protected:
78 
80 private:
81  vtkPCorrelativeStatistics(const vtkPCorrelativeStatistics&) VTK_DELETE_FUNCTION;
82  void operator=(const vtkPCorrelativeStatistics&) VTK_DELETE_FUNCTION;
83 };
84 
85 #endif
vtkPCorrelativeStatistics::~vtkPCorrelativeStatistics
~vtkPCorrelativeStatistics()
vtkTable
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:69
vtkPCorrelativeStatistics
A class for parallel bivariate correlative statistics.
Definition: vtkPCorrelativeStatistics.h:45
vtkPCorrelativeStatistics::Controller
vtkMultiProcessController * Controller
Definition: vtkPCorrelativeStatistics.h:79
vtkPCorrelativeStatistics::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
vtkMultiBlockDataSet
Composite dataset that organizes datasets into blocks.
Definition: vtkMultiBlockDataSet.h:52
vtkCorrelativeStatistics.h
vtkMultiProcessController
Multiprocessing communication superclass.
Definition: vtkMultiProcessController.h:83
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:40
vtkPCorrelativeStatistics::Test
virtual void Test(vtkTable *, vtkMultiBlockDataSet *, vtkTable *)
Execute the calculations required by the Test option.
vtkPCorrelativeStatistics::SetController
virtual void SetController(vtkMultiProcessController *)
Get/Set the multiprocess controller.
vtkPCorrelativeStatistics::New
static vtkPCorrelativeStatistics * New()
vtkPCorrelativeStatistics::Learn
virtual void Learn(vtkTable *inData, vtkTable *inParameters, vtkMultiBlockDataSet *outMeta)
Execute the parallel calculations required by the Learn option.
vtkPCorrelativeStatistics::vtkPCorrelativeStatistics
vtkPCorrelativeStatistics()
vtkCorrelativeStatistics
A class for bivariate linear correlation.
Definition: vtkCorrelativeStatistics.h:63