VTK  9.2.6
vtkPExtractHistogram2D.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkPExtractHistogram2D.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 2009 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 vtkPExtractHistogram2D_h
40#define vtkPExtractHistogram2D_h
41
43#include "vtkFiltersParallelImagingModule.h" // For export macro
44
48
49class VTKFILTERSPARALLELIMAGING_EXPORT vtkPExtractHistogram2D : public vtkExtractHistogram2D
50{
51public:
54 void PrintSelf(ostream& os, vtkIndent indent) override;
55
57 vtkGetObjectMacro(Controller, vtkMultiProcessController);
58
59protected:
62
64
66 vtkDataSetAttributes* rowData, vtkDataArray* col1, vtkDataArray* col2) override;
67
68 // Execute the calculations required by the Learn option.
69 void Learn(vtkTable* inData, vtkTable* inParameters, vtkMultiBlockDataSet* outMeta) override;
70
71private:
73 void operator=(const vtkPExtractHistogram2D&) = delete;
74};
75
76#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:34
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:68