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 -------------------------------------------------------------------------*/
35#ifndef vtkPMultiCorrelativeStatistics_h
36#define vtkPMultiCorrelativeStatistics_h
37
38#include "vtkFiltersParallelStatisticsModule.h" // For export macro
40
42
43class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPMultiCorrelativeStatistics : public vtkMultiCorrelativeStatistics
44{
45public:
48 void PrintSelf(ostream& os, vtkIndent indent);
49
51
56 vtkGetObjectMacro(Controller, vtkMultiProcessController);
58
62 static void GatherStatistics( vtkMultiProcessController *curController,
63 vtkTable *sparseCov );
64
65protected:
68
70
71 // Execute the parallel calculations required by the Learn option.
72 virtual void Learn( vtkTable* inData,
73 vtkTable* inParameters,
74 vtkMultiBlockDataSet* outMeta );
75
77
78private:
80 void operator=(const vtkPMultiCorrelativeStatistics&) VTK_DELETE_FUNCTION;
81};
82
83#endif
a simple class to control print indentation
Definition: vtkIndent.h:40
Composite dataset that organizes datasets into blocks.
A class for multivariate linear correlation.
Multiprocessing communication superclass.
A class for univariate order statistics.
A class for parallel bivariate correlative statistics.
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
virtual vtkOrderStatistics * CreateOrderStatisticsInstance()
Return a new vtkOrderStatistics instance.
static void GatherStatistics(vtkMultiProcessController *curController, vtkTable *sparseCov)
Performs Reduction.
static vtkPMultiCorrelativeStatistics * New()
virtual void Learn(vtkTable *inData, vtkTable *inParameters, vtkMultiBlockDataSet *outMeta)
Execute the calculations required by the Learn option, given some input Data.
virtual void SetController(vtkMultiProcessController *)
Get/Set the multiprocess controller.
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:69