VTK  9.3.20240328
vtkExtractFunctionalBagPlot.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-FileCopyrightText: Copyright (c) Kitware, Inc.
3 // SPDX-License-Identifier: BSD-3-Clause
22 #ifndef vtkExtractFunctionalBagPlot_h
23 #define vtkExtractFunctionalBagPlot_h
24 
25 #include "vtkFiltersStatisticsModule.h" // For export macro
26 #include "vtkTableAlgorithm.h"
27 
28 VTK_ABI_NAMESPACE_BEGIN
29 class VTKFILTERSSTATISTICS_EXPORT vtkExtractFunctionalBagPlot : public vtkTableAlgorithm
30 {
31 public:
34  void PrintSelf(ostream& os, vtkIndent indent) override;
35 
36  // Density value for the median quartile.
37  vtkSetMacro(DensityForP50, double);
38 
40 
43  vtkSetMacro(DensityForPUser, double);
44  vtkSetMacro(PUser, int);
46 
47 protected:
50 
52 
53  char* P50String;
54  char* PUserString;
55  double DensityForP50;
57  int PUser;
58 
59 private:
61  void operator=(const vtkExtractFunctionalBagPlot&) = delete;
62 };
63 
64 VTK_ABI_NAMESPACE_END
65 #endif // vtkExtractFunctionalBagPlot_h
From an input table containing series on port 0 and another table describing densities on port 1 (for...
~vtkExtractFunctionalBagPlot() override
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkExtractFunctionalBagPlot * New()
a simple class to control print indentation
Definition: vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only vtkTables as output.