VTK
vtkPDescriptiveStatistics.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPDescriptiveStatistics.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 vtkPDescriptiveStatistics_h
36 #define vtkPDescriptiveStatistics_h
37 
38 #include "vtkFiltersParallelStatisticsModule.h" // For export macro
40 
43 
44 class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPDescriptiveStatistics : public vtkDescriptiveStatistics
45 {
46 public:
49  void PrintSelf(ostream& os, vtkIndent indent) override;
50 
52 
56  virtual void SetController(vtkMultiProcessController*);
57  vtkGetObjectMacro(Controller, vtkMultiProcessController);
59 
63  void Learn( vtkTable* inData,
64  vtkTable* inParameters,
65  vtkMultiBlockDataSet* outMeta ) override;
66 
67 protected:
69  ~vtkPDescriptiveStatistics() override;
70 
72 private:
74  void operator=(const vtkPDescriptiveStatistics&) = delete;
75 };
76 
77 #endif
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition: vtkIndent.h:39
A class for univariate descriptive statistics.
static vtkDescriptiveStatistics * New()
A class for parallel univariate descriptive statistics.
vtkMultiProcessController * Controller
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:68
Composite dataset that organizes datasets into blocks.
void Learn(vtkTable *, vtkTable *, vtkMultiBlockDataSet *) override
Execute the calculations required by the Learn option, given some input Data NB: input parameters are...
Multiprocessing communication superclass.