VTK
vtkPMultiCorrelativeStatistics.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPMultiCorrelativeStatistics.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  -------------------------------------------------------------------------*/
32 #ifndef vtkPMultiCorrelativeStatistics_h
33 #define vtkPMultiCorrelativeStatistics_h
34 
35 #include "vtkFiltersParallelStatisticsModule.h" // For export macro
37 
39 
40 class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPMultiCorrelativeStatistics : public vtkMultiCorrelativeStatistics
41 {
42 public:
45  void PrintSelf(ostream& os, vtkIndent indent) override;
46 
48 
52  virtual void SetController(vtkMultiProcessController*);
53  vtkGetObjectMacro(Controller, vtkMultiProcessController);
55 
59  static void GatherStatistics( vtkMultiProcessController *curController,
60  vtkTable *sparseCov );
61 
62 protected:
65 
67 
68  // Execute the parallel calculations required by the Learn option.
69  void Learn( vtkTable* inData,
70  vtkTable* inParameters,
71  vtkMultiBlockDataSet* outMeta ) override;
72 
74 
75 private:
77  void operator=(const vtkPMultiCorrelativeStatistics&) = delete;
78 };
79 
80 #endif
vtkMultiCorrelativeStatistics::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkTable
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:62
vtkMultiCorrelativeStatistics::CreateOrderStatisticsInstance
virtual vtkOrderStatistics * CreateOrderStatisticsInstance()
Return a new vtkOrderStatistics instance.
vtkOrderStatistics
A class for univariate order statistics.
Definition: vtkOrderStatistics.h:54
vtkMultiBlockDataSet
Composite dataset that organizes datasets into blocks.
Definition: vtkMultiBlockDataSet.h:45
vtkMultiCorrelativeStatistics
A class for multivariate linear correlation.
Definition: vtkMultiCorrelativeStatistics.h:89
vtkMultiProcessController
Multiprocessing communication superclass.
Definition: vtkMultiProcessController.h:76
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkMultiCorrelativeStatistics.h
vtkMultiCorrelativeStatistics::Learn
void Learn(vtkTable *, vtkTable *, vtkMultiBlockDataSet *) override
Execute the calculations required by the Learn option.
vtkMultiCorrelativeStatistics::New
static vtkMultiCorrelativeStatistics * New()
vtkPMultiCorrelativeStatistics
A class for parallel bivariate correlative statistics.
Definition: vtkPMultiCorrelativeStatistics.h:40
vtkPMultiCorrelativeStatistics::Controller
vtkMultiProcessController * Controller
Definition: vtkPMultiCorrelativeStatistics.h:66