VTK  9.3.20240423
vtkPExtractHistogram2D.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-FileCopyrightText: Copyright 2009 Sandia Corporation
3// SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov
23#ifndef vtkPExtractHistogram2D_h
24#define vtkPExtractHistogram2D_h
25
27#include "vtkFiltersParallelImagingModule.h" // For export macro
28
29VTK_ABI_NAMESPACE_BEGIN
33
34class VTKFILTERSPARALLELIMAGING_EXPORT vtkPExtractHistogram2D : public vtkExtractHistogram2D
35{
36public:
39 void PrintSelf(ostream& os, vtkIndent indent) override;
40
42 vtkGetObjectMacro(Controller, vtkMultiProcessController);
43
44protected:
47
49
51 vtkDataSetAttributes* rowData, vtkDataArray* col1, vtkDataArray* col2) override;
52
53 // Execute the calculations required by the Learn option.
54 void Learn(vtkTable* inData, vtkTable* inParameters, vtkMultiBlockDataSet* outMeta) override;
55
56private:
58 void operator=(const vtkPExtractHistogram2D&) = delete;
59};
60
61VTK_ABI_NAMESPACE_END
62#endif
abstract superclass for arrays of numeric data
represent and manipulate attribute data in a dataset
compute a 2D histogram between two columns of an input vtkTable.
a simple class to control print indentation
Definition vtkIndent.h:108
Composite dataset that organizes datasets into blocks.
Multiprocessing communication superclass.
compute a 2D histogram between two columns of an input vtkTable in parallel.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkPExtractHistogram2D * New()
void Learn(vtkTable *inData, vtkTable *inParameters, vtkMultiBlockDataSet *outMeta) override
Execute the calculations required by the Learn option.
virtual void SetController(vtkMultiProcessController *)
vtkMultiProcessController * Controller
~vtkPExtractHistogram2D() override
int ComputeBinExtents(vtkDataSetAttributes *rowData, vtkDataArray *col1, vtkDataArray *col2) override
A table, which contains similar-typed columns of data.
Definition vtkTable.h:168