VTK  9.3.0
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 
26 #include "vtkExtractHistogram2D.h"
27 #include "vtkFiltersParallelImagingModule.h" // For export macro
28 
29 VTK_ABI_NAMESPACE_BEGIN
33 
34 class VTKFILTERSPARALLELIMAGING_EXPORT vtkPExtractHistogram2D : public vtkExtractHistogram2D
35 {
36 public:
39  void PrintSelf(ostream& os, vtkIndent indent) override;
40 
42  vtkGetObjectMacro(Controller, vtkMultiProcessController);
43 
44 protected:
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 
56 private:
58  void operator=(const vtkPExtractHistogram2D&) = delete;
59 };
60 
61 VTK_ABI_NAMESPACE_END
62 #endif
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:45
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:29
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.
void Learn(vtkTable *inData, vtkTable *inParameters, vtkMultiBlockDataSet *outMeta) override
Execute the calculations required by the Learn option.
virtual void SetController(vtkMultiProcessController *)
static vtkPExtractHistogram2D * New()
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:59