VTK  9.1.0
vtkPOrderStatistics.h
Go to the documentation of this file.
1/*=========================================================================
2
3Program: Visualization Toolkit
4Module: vtkPOrderStatistics.h
5
6Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7All rights reserved.
8See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10This software is distributed WITHOUT ANY WARRANTY; without even
11the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12PURPOSE. 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 -------------------------------------------------------------------------*/
40#ifndef vtkPOrderStatistics_h
41#define vtkPOrderStatistics_h
42
43#include "vtkFiltersParallelStatisticsModule.h" // For export macro
44#include "vtkOrderStatistics.h"
45
46#include <map> // STL Header
47
48class vtkIdTypeArray;
51
52class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPOrderStatistics : public vtkOrderStatistics
53{
54public:
57 void PrintSelf(ostream& os, vtkIndent indent) override;
58
60
65 vtkGetObjectMacro(Controller, vtkMultiProcessController);
67
72
73protected:
76
81
85 bool Reduce(vtkIdTypeArray*, vtkIdType&, char*, std::map<vtkStdString, vtkIdType>&);
86
90 bool Broadcast(std::map<vtkStdString, vtkIdType>&, vtkIdTypeArray*, vtkStringArray*, vtkIdType);
91
93
94private:
96 void operator=(const vtkPOrderStatistics&) = delete;
97};
98
99#endif
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:159
dynamic, self-adjusting array of vtkIdType
a simple class to control print indentation
Definition: vtkIndent.h:113
Composite dataset that organizes datasets into blocks.
Multiprocessing communication superclass.
A class for univariate order statistics.
A class for parallel univariate order statistics.
bool Reduce(vtkIdTypeArray *, vtkDataArray *)
Reduce the collection of local histograms to the global one for data inputs.
static vtkPOrderStatistics * New()
~vtkPOrderStatistics() override
void Learn(vtkTable *, vtkTable *, vtkMultiBlockDataSet *) override
Execute the parallel calculations required by the Learn option.
virtual void SetController(vtkMultiProcessController *)
Get/Set the multiprocess controller.
bool Reduce(vtkIdTypeArray *, vtkIdType &, char *, std::map< vtkStdString, vtkIdType > &)
Reduce the collection of local histograms to the global one for string inputs.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
bool Broadcast(std::map< vtkStdString, vtkIdType > &, vtkIdTypeArray *, vtkStringArray *, vtkIdType)
Broadcast reduced histogram to all processes in the case of string inputs.
vtkMultiProcessController * Controller
a vtkAbstractArray subclass for strings
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:172
int vtkIdType
Definition: vtkType.h:332