VTK  9.2.6
vtkPOrderStatistics.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3 Program: Visualization Toolkit
4 Module: vtkPOrderStatistics.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  -------------------------------------------------------------------------*/
43 #ifndef vtkPOrderStatistics_h
44 #define vtkPOrderStatistics_h
45 
46 #include "vtkFiltersParallelStatisticsModule.h" // For export macro
47 #include "vtkOrderStatistics.h"
48 
49 #include <map> // STL Header
50 
51 class vtkIdTypeArray;
54 
55 class VTKFILTERSPARALLELSTATISTICS_EXPORT vtkPOrderStatistics : public vtkOrderStatistics
56 {
57 public:
58  static vtkPOrderStatistics* New();
60  void PrintSelf(ostream& os, vtkIndent indent) override;
61 
63 
67  virtual void SetController(vtkMultiProcessController*);
68  vtkGetObjectMacro(Controller, vtkMultiProcessController);
70 
74  void Learn(vtkTable*, vtkTable*, vtkMultiBlockDataSet*) override;
75 
76 protected:
78  ~vtkPOrderStatistics() override;
79 
83  bool Reduce(vtkIdTypeArray*, vtkDataArray*);
84 
88  bool Reduce(vtkIdTypeArray*, vtkIdType&, char*, std::map<vtkStdString, vtkIdType>&);
89 
93  bool Broadcast(std::map<vtkStdString, vtkIdType>&, vtkIdTypeArray*, vtkStringArray*, vtkIdType);
94 
96 
97 private:
99  void operator=(const vtkPOrderStatistics&) = delete;
100 };
101 
102 #endif
A class for univariate order statistics.
a vtkAbstractArray subclass for strings
vtkMultiProcessController * Controller
dynamic, self-adjusting array of vtkIdType
int vtkIdType
Definition: vtkType.h:332
static vtkOrderStatistics * New()
a simple class to control print indentation
Definition: vtkIndent.h:39
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
A class for parallel univariate order statistics.
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:55
void Learn(vtkTable *, vtkTable *, vtkMultiBlockDataSet *) override
Execute the calculations required by the Learn option.
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:73
Composite dataset that organizes datasets into blocks.
Multiprocessing communication superclass.