VTK  9.0.1
vtkExtractFunctionalBagPlot.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkExtractFunctionalBagPlot.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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 =========================================================================*/
30 #ifndef vtkExtractFunctionalBagPlot_h
31 #define vtkExtractFunctionalBagPlot_h
32 
33 #include "vtkFiltersStatisticsModule.h" // For export macro
34 #include "vtkTableAlgorithm.h"
35 
36 class VTKFILTERSSTATISTICS_EXPORT vtkExtractFunctionalBagPlot : public vtkTableAlgorithm
37 {
38 public:
41  void PrintSelf(ostream& os, vtkIndent indent) override;
42 
43  // Density value for the median quartile.
44  vtkSetMacro(DensityForP50, double);
45 
47 
50  vtkSetMacro(DensityForPUser, double);
51  vtkSetMacro(PUser, int);
53 
54 protected:
56  ~vtkExtractFunctionalBagPlot() override;
57 
59 
60  char* P50String;
61  char* PUserString;
62  double DensityForP50;
64  int PUser;
65 
66 private:
68  void operator=(const vtkExtractFunctionalBagPlot&) = delete;
69 };
70 
71 #endif // vtkExtractFunctionalBagPlot_h
vtkTableAlgorithm::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:35
vtkExtractFunctionalBagPlot::DensityForPUser
double DensityForPUser
Definition: vtkExtractFunctionalBagPlot.h:63
vtkTableAlgorithm
Superclass for algorithms that produce only vtkTables as output.
Definition: vtkTableAlgorithm.h:48
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkExtractFunctionalBagPlot::P50String
char * P50String
Definition: vtkExtractFunctionalBagPlot.h:60
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:73
vtkExtractFunctionalBagPlot
Definition: vtkExtractFunctionalBagPlot.h:36
vtkExtractFunctionalBagPlot::PUser
int PUser
Definition: vtkExtractFunctionalBagPlot.h:64
vtkExtractFunctionalBagPlot::PUserString
char * PUserString
Definition: vtkExtractFunctionalBagPlot.h:61
vtkTableAlgorithm.h
vtkTableAlgorithm::RequestData
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
vtkExtractFunctionalBagPlot::DensityForP50
double DensityForP50
Definition: vtkExtractFunctionalBagPlot.h:62
vtkTableAlgorithm::New
static vtkTableAlgorithm * New()