VTK  9.2.6
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 -------------------------------------------------------------------------*/
39#ifndef vtkPDescriptiveStatistics_h
40#define vtkPDescriptiveStatistics_h
41
43#include "vtkFiltersParallelStatisticsModule.h" // For export macro
44
47
48class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPDescriptiveStatistics
50{
51public:
54 void PrintSelf(ostream& os, vtkIndent indent) override;
55
57
62 vtkGetObjectMacro(Controller, vtkMultiProcessController);
64
68 void Learn(vtkTable* inData, vtkTable* inParameters, vtkMultiBlockDataSet* outMeta) override;
69
70protected:
73
75
76private:
78 void operator=(const vtkPDescriptiveStatistics&) = delete;
79};
80
81#endif
A class for univariate descriptive statistics.
a simple class to control print indentation
Definition vtkIndent.h:34
Composite dataset that organizes datasets into blocks.
Multiprocessing communication superclass.
A class for parallel univariate descriptive statistics.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual void SetController(vtkMultiProcessController *)
Get/Set the multiprocess controller.
void Learn(vtkTable *inData, vtkTable *inParameters, vtkMultiBlockDataSet *outMeta) override
Execute the parallel calculations required by the Learn option.
~vtkPDescriptiveStatistics() override
static vtkPDescriptiveStatistics * New()
vtkMultiProcessController * Controller
A table, which contains similar-typed columns of data.
Definition vtkTable.h:68