VTK  9.5.20251215
vtkStreamingStatistics.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-FileCopyrightText: Copyright 2010 Sandia Corporation
3// SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov
17
18#ifndef vtkStreamingStatistics_h
19#define vtkStreamingStatistics_h
20
21#include "vtkFiltersStatisticsModule.h" // For export macro
22#include "vtkTableAlgorithm.h"
23
24VTK_ABI_NAMESPACE_BEGIN
27class vtkTable;
28
29class VTKFILTERSSTATISTICS_EXPORT vtkStreamingStatistics : public vtkTableAlgorithm
30{
31public:
33 void PrintSelf(ostream& os, vtkIndent indent) override;
35
45
55
57
58protected:
61
62 int FillInputPortInformation(int port, vtkInformation* info) override;
63 int FillOutputPortInformation(int port, vtkInformation* info) override;
64
66
67private:
69 void operator=(const vtkStreamingStatistics&) = delete;
70
71 // Internal statistics algorithm to care for and feed
72 vtkStatisticsAlgorithm* StatisticsAlgorithm;
73
74 // Internal model that gets aggregated
75 vtkMultiBlockDataSet* InternalModel;
76};
77
78VTK_ABI_NAMESPACE_END
79#endif
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Composite dataset that organizes datasets into blocks.
Base class for statistics algorithms.
InputPorts
enumeration values to specify input port types
@ INPUT_DATA
Port 0 is for learn data.
@ LEARN_PARAMETERS
Port 1 is for learn parameters (initial guesses, etc.)
@ INPUT_MODEL
Port 2 is for a priori models.
~vtkStreamingStatistics() override
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
virtual void SetStatisticsAlgorithm(vtkStatisticsAlgorithm *)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
static vtkStreamingStatistics * New()
OutputIndices
enumeration values to specify output port types
@ OUTPUT_MODEL
Output 1 contains any generated model.
@ OUTPUT_TEST
Output 2 contains result of statistical test(s)
@ OUTPUT_DATA
Output 0 mirrors the input data, plus optional assessment columns.
A table, which contains similar-typed columns of data.
Definition vtkTable.h:169